    td:first-child {
        font-weight: bold;
        text-align: right;
        padding-right: 10px;
    }
    td:last-child {
        text-align: left;
    }

    table {
        border-collapse: collapse;
        margin-top: 20px;
        width: 100%;
        max-width: 600px;

        /* Centreren */
        margin-left: auto;
        margin-right: auto;

        /* Rand om de hele tabel */
        border: 1px solid #ccc;
    }

    /* Labels (linker kolom) */
    td:first-child {
        font-weight: bold;
        text-align: right;
        padding: 8px 12px;
        background-color: #fff9d6; /* lichtgeel */
        width: 30%;
        border-bottom: 1px solid #ddd;
        border-right: 1px solid #ccc;
    }

    /* Waarden (rechter kolom) */
    td:last-child {
        text-align: left;
        padding: 8px 12px;
        border-bottom: 1px solid #ddd;
        background-color: #fff;
    }

    /* Optioneel: hover-effect voor rijen */
    tr:hover td {
        background-color: #f0f8ff;
    }
button {
    font-family: inherit;
}
.terug-knop {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 15px;

    background: #e8d9c5;        /* heel licht beige/bruin */
    color: #000;                /* zwarte tekst voor leesbaarheid */
    text-decoration: none;
    border-radius: 4px;
    font-family: inherit;
    cursor: pointer;

    border: 1px solid #c2b29d;  /* subtiel licht randje */
}

.terug-knop:hover {
    background: #dccab3;        /* iets donkerder bij hover */
}



input, textarea, select, button {
    font-family: inherit;
}


button,
input[type="submit"] {
    font-family: inherit;
    font-size: 1.1rem;   /* of 16px */1
    padding: 6px 14px;
}


