/* Zakelijke stijl met beige accenten – Werkrooster App */

/* Algemene layout */
body {
  background-color: #f8f6f2;
  color: #2b2b2b;
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.6;
}

/* Navigatie */
header {
  background-color: #ffffff;
  border-bottom: 2px solid #d8cfc4;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

nav ul li strong {
  color: #b99d75; /* beige accent */
  font-weight: 700;
  font-size: 1.2rem;
}

nav a {
  color: #333;
  transition: color 0.2s ease-in-out;
}

nav a:hover {
  color: #b99d75;
}

/* Buttons */
button, a[role="button"] {
  background-color: #b99d75;
  border: none;
  color: white;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

button:hover, a[role="button"]:hover {
  background-color: #a18660;
}

/* Secundaire knoppen */
button.secondary, a.secondary {
  background-color: #e9e3da;
  color: #333;
}

button.secondary:hover, a.secondary:hover {
  background-color: #d8cfc4;
}

/* Tabellen */
table[role="grid"] {
  background-color: #fff;
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #e0d8ce;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

table[role="grid"] th {
  background-color: #f3efe8;
  color: #333;
  text-align: left;
  padding: 0.7rem;
}

table[role="grid"] td {
  padding: 0.7rem;
  border-top: 1px solid #e8e2d9;
}

/* Markering (meldingen) */
mark {
  background-color: #fff4d8;
  color: #2b2b2b;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}

/* Formulieren */
input, select, textarea {
  border: 1px solid #d8cfc4;
  border-radius: 6px;
  padding: 0.5rem;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #b99d75;
  box-shadow: 0 0 0 2px rgba(185,157,117,0.2);
}

/* Titels */
h3 {
  color: #3b3b3b;
  border-bottom: 2px solid #d8cfc4;
  padding-bottom: 0.3rem;
}

/* Footer (optioneel toevoegen in layout_bottom.php) */
footer {
  text-align: center;
  padding: 1rem;
  color: #7a746a;
  font-size: 0.9rem;
}
