/* Maak tabellen scrollbaar op mobiel */
@media (max-width: 768px) {
    .table-responsive {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* Voor soepel scrollen op iOS */
    }
    .table-responsive table {
        min-width: 600px; /* Zorg dat de tabel breed genoeg is om te scrollen */
        width: auto;
    }
}
@media (max-width: 768px) {
    table {
        width: 100%;
        overflow-x: auto;
        display: block;
    }
}