/* Alleen voor mobiel/tablet (schermen kleiner dan 992px) */
@media (max-width: 991.98px) {
    .navbar-toggler {
        background-color: #e67e23 !important;
        border: none !important;
        padding: 10px 14px !important;
        
        /* Vergroting en positionering */
        transform: scale(1.5);
        transform-origin: left center; /* Groeit nu vanaf links */
        margin-left: 0.5em !important;   /* 1em afstand van de linker rand */
        margin-right: auto;            /* Duwt de rest (indien aanwezig) naar rechts */
        
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .navbar-toggler-icon {
        width: 1.2em !important;
        height: 1.2em !important;
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='3' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
    }

    .navbar-toggler:hover {
        background-color: #d35400 !important;
    }
}

/* Verberg de knop op desktop */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }
}

/* 
body > div.site-grid > div.grid-child.container-top-a > div > div > ul > li:nth-child(1) > article > div > p > a {
        display: none !important;
    }

body > div.site-grid > div > main > div > div > div:nth-child(2) {
        margin-left: 50px !important;
  
}
*/