.table-container {
    width: calc(100% - 36px);
    height: 100vh;
    margin-left: 36px;
    background-color: var(--color-container);
    padding: 16px;
    overflow-x: auto;
    overflow-y: auto;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch; 
}

table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: var(--color-white);
    table-layout: auto;
    display: table;
}

table th {
    font-weight: 600;
    font-size: var(--font-size-medium);
    color: var(--textcolor-table-header);
    text-align: center;
    padding: 56px 16px 12px 16px;
    border-bottom: var(--table-border);
    white-space: nowrap;
    position: sticky;
    top: 0;
    background-color: var(--color-white);
    z-index: 10;
}

table td {
    font-size: var(--font-size-medium);
    color: var(--color-text);
    text-align: left;
    padding: 8px;
    border-bottom: var(--table-border);
    border-right: var(--table-border);
    vertical-align: middle;
    white-space: nowrap;
}

.table td:last-child {
    border-right: none;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table th:nth-child(2),
.table td:nth-child(2),
.table th:nth-child(3),
.table td:nth-child(3),
.table th:nth-child(4),
.table td:nth-child(4),
.table th:nth-child(5),
.table td:nth-child(5) {
    vertical-align: middle;
}

@media screen and (max-width: 1100px) {
    .table-container {
            border-radius: 0px;
            border: none;
            flex: 1;
            margin: 0px;
            padding: 0px;
            padding-right: 8px;
            overflow-x: auto;
            overflow-y: auto;
            width: 100%;
            -webkit-overflow-scrolling: touch;
            box-sizing: border-box;
            height: calc(100dvh - 69px);
    }
    
    .table th,
    .table td {
            padding: 10px 12px;
            font-size: 0.7em;
            white-space: nowrap;
        }
    
        .table th {
            padding-top: 56px;
        }
    }

#table-voldaan,
#table-toekomstig {
    display: none;
}

#table-tevoldoen {
    display: table;
}