/* Algemene stijl */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 20px;
    background-color: #ffffff;
    color: #000000;
}

/* Tabel-overzicht */
table.overzicht {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Header van tabel */
table.overzicht th {
    background-color: #000000;
    color: #ffffff;
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid #000000;
}

/* Rijen */
table.overzicht td {
    padding: 10px;
    border-bottom: 1px solid #000000;
}

/* Afwisselende rij-kleur */
table.overzicht tr:nth-child(even) {
    background-color: #f5f5f5;
}

table.overzicht tr:hover {
    background-color: #eaeaea;
    cursor: pointer;
}

/* Footer-tabel */
table.footer {
    width: 100%;
    margin-top: 30px;
    border-top: 2px solid #000000;
}

table.footer td {
    padding: 10px 0;
    font-size: 14px;
    color: #333333;
}

/* Specifieke kleine tekst */
.small {
    font-size: 13px;
    color: #666666;
    text-align: right;
}

/* Responsiveness */
@media (max-width: 600px) {
    table.overzicht th, 
    table.overzicht td {
        font-size: 14px;
        padding: 8px;
    }

    .small {
        text-align: center;
    }
}
