/* Ensure the dropdown menu and all its navigation links are visible */
.ufs-collections-dropdown .navigation {
    display: block; /* Keeps dropdown menu visible */
    visibility: visible;
    opacity: 1;
    position: relative; /* Prevents conflicts with positioning */
}

/* Make "Etienne Leroux" visible within the dropdown */
.ufs-collections-dropdown .navigation a[href="https://pokello.ufs.ac.za/s/leroux/page/welkom"] {
    display: inline-block !important; /* Forces visibility for the custom site link */
}

/* Handle expanded dropdown styling when toggled */
.navigation.expanded {
    visibility: visible !important;
    opacity: 1;
    height: auto; /* Prevent height collapse issues */
    overflow: visible;
    z-index: 100; /* Ensures dropdown is layered above other elements */
    position: absolute; /* Prevents it from shifting other elements on the page */
}
