/* Dropdown Visibility Fix */

/* Force all dropdown menus to be hidden by default */
.dropdown-menu {
    display: none !important;
}

/* Show dropdown menu only when Bootstrap adds the .show class */
.dropdown-menu.show {
    display: block !important;
}

/* Ensure proper positioning */
.navbar .dropdown {
    position: relative;
}

.navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    z-index: 1050;
} 