/* Tabellen */
.styled-table,
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: center;
}

.styled-table th,
.styled-table td,
table th,
table td {
    border: 1px solid #ddd;
    padding: 10px;
}

.styled-table thead th,
table thead th {
    background-color: #700F10;
    color: white;
    font-weight: bold;
}

.styled-table tfoot th,
table tfoot th {
    background-color: #700F10;
    color: white;
    font-weight: bold;
}

.styled-table tbody tr:nth-child(even),
table tbody tr:nth-child(even) {
    background-color: #f4f4f4;
}

/* Hover-kleur voor alle tabellen */
.styled-table tbody tr:hover,
table tbody tr:hover {
    background-color: #f0c0c0; /* Lichtrood */
}

/* Responsieve tabel */
@media (max-width: 768px) {
    table {
        font-size: 12px;
    }

    th,
    td {
        padding: 8px;
    }
}

/* Navigatie en header-styling */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 10px;
}

.line-divider {
    width: 100%;
    height: 5px;
    background-color: #700F10;
    margin-top: 10px;
}

/* Welkomsttekst */
h1 {
    text-align: center;
    color: #700F10;
    font-size: 28px;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Header-styling */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #700F10;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
}

.header .logo-container {
    flex: 1;
    text-align: center;
}

.header .controls {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.header .btn {
    background-color: #fff;
    color: #700F10;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}

.header .btn:hover {
    background-color: #f4f4f4;
}

/* Footer-styling */
.footer-links {
    text-align: center;
    margin-top: 20px;
}

.footer-link {
    color: #700F10;
    text-decoration: none;
    margin: 0 10px;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Jaar-selectie */
.year-form {
    margin: 0;
}

.year-select {
    background-color: #700F10;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.year-select:hover {
    background-color: #900000;
}
.year-week-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.year-select, .week-select {
    background-color: #700F10;
    color: white;
    padding: 10px 15px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.year-select:hover, .week-select:hover {
    background-color: #900F10;
}
