body {
    background-color: white;
    color: #333333;
    font-family: 'Lora', 'Open Sans', sans-serif;
}

.text-danger {
    color: yellow !important;
}

.clickbutton, .clickbutton_small {
    background: #68c6bf;
    color: white;
    border-radius: 25px;
    margin: 25px;
    padding: 10px 50px; /* Standaard padding voor .clickbutton */
    text-decoration: none;
    font-family: 'Bebas Neue', 'Open Sans', sans-serif;
    font-size: 150%; /* Standaard font grootte voor .clickbutton */
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    justify-content: center;
    align-items: center;
    flex-shrink: 1;
    display: inline-flex;
    border: 2px solid white; /* Standaard rand voor .clickbutton */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Standaard schaduw voor .clickbutton */
}

.clickbutton_small {
    margin: 5px;
    padding: 2px 25px; /* Aangepaste padding voor .clickbutton_small */
    font-size: 120%; /* Aangepaste font grootte voor .clickbutton_small */
    border: 1px solid white; /* Aangepaste rand voor .clickbutton_small */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Aangepaste schaduw voor .clickbutton_small */
}

.clickbutton:hover, .clickbutton_small:hover {
    background-color: #48a69f;
    color: #FFFFE0;
}

@media (max-width: 600px) {
    .clickbutton, .clickbutton_small {
        white-space: normal; /* Staat tekstomloop toe op kleinere schermen */
        padding: 10px; /* Aangepaste padding om ruimte te bieden voor tekst op meerdere regels */
    }
}

h1, h2 {
    font-family: 'Bebas Neue', 'Open Sans', sans-serif;
    font-size: 300%;
    color: #68c6bf;
}

.dark {
    background: #333333;
    color: #EFEFEF;
    border-radius: 25px;
    padding: 20px;
}

.dark h1 {
    color: #EFEFEF;
}

.content {
    text-align: left;
    padding: 20px;
    padding-top: 60px;
    border-radius: 10px;
    background-color: white;
    font-size: 18px;
    margin-top: 20px;
    line-height: 200%;
}

.content h1 {
    text-align: center;
    margin-bottom: 25px;
}

table {
    width: 100%; /* Zorgt ervoor dat de tabel de volledige breedte van zijn container gebruikt */
}

td {
    vertical-align: middle;
}

.td_title {
    font-weight: bold;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    table {
        font-size: 80%;
    }

    td {
        text-overflow: ellipsis;
        flex-shrink: 1;
        overflow: hidden;
    }

    .td_title {
        font-size: 70%;
    }
}


.footer {
    margin-top: 20px;
    background-color: #eaeaea;
    font-size: 16px;
    width: 100%;
    text-align: center;
}

.yb {
    font-size: 16px;
    font-weight: bold;
}

.vraagteken {
    font-size: 26px;
    font-weight: bold;
}

.logo {
    width: 35px;
    padding: 0;
    margin: 0;
    margin-right: 5px;
}

.img-fluid {
    border-radius: 25px;
}

.navbar {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* Schaduw toevoegen */
    border-radius: 0 0 15px 15px; /* Onderste hoeken afronden */
}

.navbar-nav .nav-item {
    border-right: 1px solid #ddd; /* Scheidingsstreep tussen items */
}

.navbar-nav .nav-item:last-child {
    border-right: none; /* Geen scheiding voor laatste item */
}

.nav-link.active {
    color: #1D2147; /* Kleur voor actief menu-item */
    text-decoration: underline;
}

.container-voor-ajaxcontent {
    min-height: 410px;
}

@media only screen and (max-width: 768px) {
    #ajaxcontentbutton {
        font-size: 14px; /* Kleinere tekstgrootte */
        padding: 10px 15px; /* Minder padding */
        margin-bottom: 10px;
        margin-left: 10px;
    }

    #ajaxcontent {
        font-size: 0.9em; /* Kleinere tekstgrootte */
        zoom: 70%;
    }

    .container-voor-ajaxcontent {
        min-height: auto; /* Verwijder vaste hoogte */
        padding: 15px; /* Voeg wat padding toe voor kleinere schermen */
    }
}

@media (max-width: 768px) {
    .navbar .dropdown-menu.show {
        display: block;  /* Zorg dat het dropdown-menu zichtbaar blijft */
    }
}
