/* Algemene reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* Pagina */
body {
    background-color: #f2f4f7;
    color: #333;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Titels */
h1 {
    margin-bottom: 15px;
    color: #1f2937;
}

h2 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #374151;
}

/*linkjes*/
a {
  color: #000000;
  padding: 2px;
  padding-left: 4px;
  padding-right: 4px;
  background-color: #a7a8a8;
  border: solid, #000000, 2px;
  text-decoration: none;
  font-weight: bolder;
}

a:hover {
  text-decoration: underline;
}

/* Navigatie */
nav {
    margin-bottom: 20px;
}

nav a {
    color: #2563eb;
    text-decoration: none;
    font-weight: bold;
    border: none;
    background: none;
}

nav a:hover {
    text-decoration: underline;
}

/* Tabellen */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

table th {
    background-color: #e5e7eb;
    text-align: left;
    padding: 10px;
    border-bottom: 2px solid #d1d5db;
}

table td {
    padding: 10px;
    border-bottom: 1px solid #e5e7eb;
}

table tr:hover {
    background-color: #f9fafb;
}

/* Formulieren */
form {
    margin-top: 20px;
}

label {
    font-weight: bold;
}

input[type="text"],
input[type="date"],
select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
}

input:focus,
select:focus {
    outline: none;
    border-color: #2563eb;
}

/* Knoppen */
button {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #1d4ed8;
}

/* Meldingen */
.notice {
    background-color: #ecfeff;
    border-left: 4px solid #06b6d4;
    padding: 10px;
    margin-bottom: 15px;
}

.error {
    background-color: #fef2f2;
    border-left: 4px solid #dc2626;
    padding: 10px;
    margin-bottom: 15px;
}

/* Lijsten (route) */
ol {
    margin-top: 10px;
    margin-left: 20px;
}

ol li {
    margin-bottom: 6px;
}

/* Footer link */
.container a {
    display: inline-block;
    margin-top: 20px;
}

/* Mobiel vriendelijk */
@media (max-width: 600px) {
    .container {
        margin: 20px;
        padding: 20px;
    }
}