/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Livvic:wght@700&display=swap');

body {
  font-family: 'Livvic', sans-serif;
  background-color: #21427c; /* Donkerblauwe achtergrond */
  margin: 0;
  padding: 0;
  color: #ffffff; /* Default wit voor teksten */
}

.container {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  background-color: #ffffff; /* Witte content box */
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  text-align: center;
  color: #21427c; /* Donkerblauwe tekst */
}

h1 {
  color: #21427c;
  margin-bottom: 30px;
  font-weight: 700;
}

.login-box input {
  padding: 12px;
  width: 200px;
  border: 2px solid #1a3460; /* donkerdere tint blauw */
  border-radius: 8px;
  margin-right: 10px;
  font-weight: 700;
  color: #21427c;
}

.login-box button {
  padding: 12px 20px;
  background-color: #1a3460; /* Iets donkerder blauw */
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.2s;
}

.login-box button:hover {
  background-color: #0f2548;
}

#dienstTabel {
  width: 100%;
  border-collapse: collapse;
  margin-top: 25px;
}

#dienstTabel th, #dienstTabel td {
  border: 1px solid #21427c;
  padding: 12px;
}

#dienstTabel th {
  background-color: #1a3460; /* Donkerdere blauw tint */
  color: #ffffff;
}

#dienstTabel tbody tr:nth-child(even) {
  background-color: #e0e4f0; /* lichte blauwe achtergrond */
  color: #21427c;
}

#dienstTabel tbody tr:nth-child(odd) {
  background-color: #f8faff; /* nog lichtere blauwe tint */
  color: #21427c;
}