/* Basis CSS voor het menu */
body {
    /*    font-family: Arial, sans-serif;*/
    margin-left: 10px;
    margin-top: 30px;
    padding-top: 40px; /* Zorg ervoor dat de inhoud niet achter het menu wordt verborgen */
    background-color: #ffffff;
}

.navbalk {
    position: fixed;
    top: 0;
    left: 0;
    height: 65px;
    right: 10px; /* De navigatiebalk blijft altijd 10px van de rechterkant */
    display: flex;
    background-color: white;
    direction: rtl;
    z-index: 1000; /* Zorg ervoor dat het menu bovenop andere inhoud blijft */
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optionele schaduw voor diepte-effect */
}

.navbar0 {
    position: fixed;
    top: 0;
    left: 150px;
    height: 65px;
    right: 10px; /* De navigatiebalk blijft altijd 10px van de rechterkant */
    display: flex;
    background-color: transparent;
    direction: rtl;
    max-width: 850px; /* Beperkt de breedte tot 300px van links */
    z-index: 1000; /* Zorg ervoor dat het menu bovenop andere inhoud blijft */
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optionele schaduw voor diepte-effect */
}

.navbar1 {
    position: fixed;
    top: 0;
    left: 0;
    height: 65px;
    right: 10px; /* De navigatiebalk blijft altijd 10px van de rechterkant */
    display: flex;
    max-width: 1000px; /* Beperkt de breedte tot 300px van links */
    z-index: 1000; /* Zorg ervoor dat het menu bovenop andere inhoud blijft */
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optionele schaduw voor diepte-effect */
}

.navbar {
}

span.menu,
a.menu {
    display: flex; /* Flexbox gebruiken voor uitlijning */
    align-items: center; /* Verticale centrering */
    /*   justify-content: center; /* Optioneel: horizontaal centreren */
    height: 65px; /* Hoogte van het menu-item */
    background-color: white; /* Standaard achtergrondkleur */
    color: black; /* Standaard tekstkleur */
    text-decoration: none; /* Verwijdert onderstreping */
    padding-left: 15px; /* Optioneel: beetje padding links/rechts */
    padding-right: 15px; /* Optioneel: beetje padding links/rechts */
    transition: background-color 0.3s, color 0.3s; /* Smooth hover effect */
    flex-direction: row-reverse;
}

.menuitem {
}

    .menuitem:hover {
        background-color: black;
        color: white;
    }

img.custom-logo {
    max-height: 90%;
    vertical-align: middle;
    padding-right: 20px;
    padding-top: 5px;
    position: absolute;
    left: 20px;
}

.menul {
    padding-left: 120px;
}

.navbar0 .dropdown {
    position: relative;
}

    .navbar0 .dropdown .dropdown-toggle {
        position: relative;
        padding-right: 28px;
        padding-top: 0;
        height: 65px;
        display: flex;
        align-items: center;
    }

        .navbar0 .dropdown .dropdown-toggle::after {
            content: "";
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            font-size: .8rem;
        }

.navbar0 .submenu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
    z-index: 2000;
}

    .navbar0 .submenu a.submenu-item {
        display: block;
        padding: 10px 14px;
        white-space: nowrap;
        text-decoration: none;
        color: inherit;
    }

        .navbar0 .submenu a.submenu-item:hover {
            background: #000;
            color: #fff;
        }

.navbar0 .dropdown:hover > .submenu {
    display: block;
}

@media (hover: none) {
    .navbar0 .dropdown:hover > .submenu {
        display: none;
    }
}

.treediv {
    height: 76px;
    border: 0;
    margin: 0;
    padding: 0;
    background-repeat: no-repeat;
    background-size: 100% auto; /* Zet de breedte op 800px en pas de hoogte proportioneel aan */
    background-position: left;
    background-attachment: scroll; /* Zorgt ervoor dat het plaatje meebeweegt */
}
