/* Dropdown Z-Index Fix - Load this after liquid-glass.css */

/* Reset any conflicting z-index values */
.container-fluid,
.row,
.col-md-4,
.col-md-8,
.col-md-12 {
    position: static !important;
    z-index: auto !important;
}

/* Fix Bootstrap dropdown z-index issues */
.dropdown-menu {
    z-index: 100000 !important;
    position: fixed !important; /* Use fixed positioning to escape any stacking context */
}

/* Ensure navbar dropdowns appear above everything */
.navbar .dropdown-menu {
    z-index: 100001 !important;
}

/* Color theme menu specific fix */
#color-theme-menu {
    z-index: 100002 !important;
    position: fixed !important;
}

/* When dropdown is shown, ensure it's on top */
.dropdown-menu.show {
    z-index: 100003 !important;
}

/* Fix for cards that might be interfering */
.card {
    position: relative;
    z-index: 1;
    overflow: visible !important;
}

/* Ensure modals stay on top of dropdowns */
.modal {
    z-index: 105000 !important;
}

.modal-backdrop {
    z-index: 104999 !important;
}