html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body.swal2-height-auto {
    height: 100% !important
}

/* Zorg dat de inhoud flexibel is en de beschikbare ruimte vult */
.content {
    position: relative;
    flex: 1;
    padding: 16px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

/*.menu {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.menu > .w3-button{
    color: #fff;
    font-weight: 700;
}

.menu > .w3-button:hover {
    background-color: #f599a6 !important;
    color: #fff !important;
}*/
.footer {
    padding: 20px;
    text-align: center;
}

/*header {
    position: relative;
    top: 0px;
    min-height: 75px;
}*/

/*header.logo{
    display: flex;
    align-items: center;
}

header.menu{
    align-items: center;
}*/

/* Basis styling voor de header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    color: white;
}

.header-logo {
    font-size: 1.5em;
}

/* Desktop menu */
.nav-menu {
    display: flex;
    gap: 16px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    border: 0px;
}

.nav-menu a:hover {
    background-color: #0055c5;
}

/* Verberg het menu en toon de hamburgerknop op kleine schermen */
.nav-menu, .hamburger {
    display: none;
}

/* Voor desktop schermen */
@media (min-width: 768px) {
    .nav-menu {
        display: flex; /* Toon het menu */
    }

    .mobile-menu, .hamburger{
        display: none;
    }
}

/* Voor mobiele schermen */
@media (max-width: 767px) {
    .hamburger {
        display: block; /* Toon de hamburgerknop */
        cursor: pointer;
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #1a3a69; /* Specifieke kleur voor het mobiele menu */
        z-index: 1000;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .mobile-menu h3{
        font-weight: 700;
    }

    .mobileMenuX{
        position: absolute;
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(267deg) brightness(104%) contrast(101%);
    }

    .mobile-menu a {
        display: flex;
        color: white;
        padding: 16px;
        text-decoration: none;
        font-size: 1.5em;
        width: 100% !important;
        transition: background 0.3s;
    }

    .mobile-menu a:hover {
        background-color: #333;
    }
}

footer {
    background-color: #f1f1f1;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
    z-index:-1;
}


.button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #4CAF50; /* Groene kleur */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #45a049; /* Donkerder groen bij hover */
}

.box {
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
    /**transition: transform 0.2s ease;**/
}

.box-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.box-content {
    font-size: 16px;
    color: #666;
}

.responsive-table {
    width: 100%;
    border-collapse: collapse;
}

.responsive-table th, .responsive-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.responsive-table th {
    background-color: #f1f1f1;
    color: #333;
}

.table-container {
    overflow-x: auto;
}

/* Paginering knoppen styling */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination .button {
    margin: 0 5px;
    padding: 8px 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: white;
    font-size: 14px;
    text-decoration: none;
}

.pagination .button.disabled {
    background-color: #ddd;
    pointer-events: none;
    cursor: default;
}

.color-primary{
    background: #5a8be4;
    color: #f1f1f1;
}

.color-secondary{
    background: #41ae00
}

.color-third{
    background: #0055c5;
    color: #f1f1f1;
}

/* Basisstijl voor de toggle-container */
.toggle-container {
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    margin: 20px;
}

/* Verberg de standaard checkbox */
.toggle-checkbox {
    display: none;
}

/* Stijl voor de toggle-label (schuifknop) */
.toggle-label {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    background-color: #ccc;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Cirkel binnenin de schuifknop */
.toggle-label::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Wanneer de checkbox is aangevinkt */
.toggle-checkbox:checked + .toggle-label {
    background-color: #4CAF50; /* Groene achtergrond */
}

.toggle-checkbox:checked + .toggle-label::before {
    transform: translateX(24px); /* Verplaats het bolletje */
}

.ts-control{
    min-height: 35px !important;
}

/* Tekst naast de toggle */
.toggle-text {
    margin-left: 10px;
    font-size: 16px;
    color: #333;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px); /* Optionele verschuiving naar beneden */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Terug naar originele positie */
    }
}

/* Aanpassingen voor de tijdlijn */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

/* Links geplaatste containers */
.timeline-left {
    left: 0;
}

/* Rechts geplaatste containers */
.timeline-right {
    left: 50%;
}

/* Algemene tijdlijnstip */
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #2196F3; /* Blauw zoals in W3.CSS */
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

/* Balk design */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12.5px;
    background-color: white;
    border: 4px solid #2196F3;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-right::after {
    left: -12.5px;
}

/* Tijdlijnkaartjes */
.timeline-content {
    padding: 20px;
    background-color: #f9f9f9; /* Lichtgrijs */
    position: relative;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Kleine aanpassing voor positionering */
.timeline-left .timeline-content {
    margin-left: 10px;
}

.timeline-right .timeline-content {
    margin-right: 10px;
}

/* Responsief gedrag */
@media screen and (max-width: 600px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-container::after {
        left: 15px;
    }

    .timeline-right {
        left: 0;
    }
}

.box.w3-card-4:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
    transition: none !important;
}



