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

/* 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;
    background-color: #1a3a69;
    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;
}

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

/* 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) {

    .box-button {
        position: relative !important;
        top:10px !important;
        margin-bottom: 20px !important;
        left: 5px;
    }

    .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;
    position: relative;
}

.box-button {
    top: 15px;
    right: 15px;
    position: absolute;
}

.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: #153f6e;
    color: #f1f1f1;
}

.color-secondary{
    background: #f599a6
}

.color-third{
    background: #7298a6;
    color: #153f6e;
}

/* 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 */
    }
}

.aegis-member-card {
    position: relative;
    /**background: url("/img/ledenpas-voorkant.png") no-repeat left;*//
    /**background-size: auto 100%;*/

    padding: 10px;
    width: auto;
    height: 300px;
    font-size: 9pt;
    font-weight: 500;

}

.aegis-member-card-bg{
    position: absolute;
    top:0px;
    left:0px;
    height: 300px;
    z-index: 1;
    border-radius: 7px;
}

.aegis-member-card-photo {
    position: absolute;
    width: 140px;
    height: 187px;
    top: 28px;
    left: 25px;
    z-index: 2;
}

.aegis-member-card-name {
    position: absolute;
    color: #ffffff !important;

    top: 115px;
    left: 218px;
    z-index: 2;
}

.aegis-member-card-function {
    position: absolute;
    color: #ffffff !important;

    top: 169px;
    left: 218px;
    z-index: 2;
    max-width: 230px;
}

.aegis-member-card-company {
    position: absolute;
    color: #ffffff !important;

    top: 255px;
    left: 30px;
    z-index: 2;
    max-width: 250px
}

