.overzicht-table {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
    max-width: 810px;
    margin: 2em auto;
}
.messageNote{
    max-width: 810px;
    background-color: #2454a4;
    color: #ddd;
    margin: 1em auto;
    padding: 5px;
}

.overzicht-table td, .overzicht-table th {
    border: 1px solid #ddd;
    padding: 8px;
}

.overzicht-table tr:nth-child(even){background-color: #f2f2f2;}

.overzicht-table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #2454a4;
    color: #fff4f4;
}
/* Styles for the modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
}

.modal-content {
    background-color: #ddd;
    width: 300px;
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    border-radius: 5px;
}