/* DEBUG CSS - FORCE DROPDOWNS TO ALWAYS SHOW */
/* Add this temporarily to see what's happening with the dropdowns */

/* Force dropdown menu to always be visible */
.dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
    
    /* Make it very obvious */
    background: #ff0000 !important; /* Bright red background */
    border: 5px solid #00ff00 !important; /* Green border */
    z-index: 999999 !important; /* Very high z-index */
    
    /* Ensure positioning */
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    
    /* Make sure it's not clipped */
    max-height: none !important;
    overflow: visible !important;
}

/* Make dropdown links very obvious */
.dropdown-menu a {
    color: #ffffff !important; /* White text on red background */
    background: #ff0000 !important;
    display: block !important;
    padding: 15px 20px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    border-bottom: 2px solid #ffff00 !important; /* Yellow borders between items */
}

.dropdown-menu a:hover {
    background: #cc0000 !important;
}

/* Force all parent containers to allow overflow */
nav {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
}

.header {
    overflow: visible !important;
}

.header-main {
    overflow: visible !important;
}

.nav-menu {
    overflow: visible !important;
}

.nav-menu > li {
    overflow: visible !important;
}

.nav-menu > li.has-dropdown {
    overflow: visible !important;
    z-index: 999998 !important;
}

/* Make the parent li items have visible background */
.nav-menu > li.has-dropdown {
    background: rgba(255, 255, 0, 0.3) !important; /* Yellow tint to see the parent */
}

/* Show dropdown icon in different color */
.dropdown-toggle-icon {
    background: #0000ff !important; /* Blue background */
    color: #ffffff !important;
}

/* Add outline to nav element */
nav {
    outline: 3px dashed purple !important;
}

.nav-item-wrapper {
    outline: 2px dashed orange !important;
}
