/* 1. Dropdown Menu Styling */
.navbar-dark .dropdown-menu {
    background-color: #212529; 
    border: 1px solid #444; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.navbar-dark .dropdown-item {
    color: #ffffff;
    padding: 10px 15px;
    transition: 0.2s;
}

/* 2. HOVER State: Only Color & Glow (No Underline) */
.navbar-nav .nav-link:hover,
.navbar-dark .dropdown-item:hover {
    color: #ffc107 !important;
    background-color: #343a40; 
    text-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
    border-bottom: 2px solid transparent; /* Ensure no line on hover */
}

/* 3. ACTIVE State: Gold + Bold + Underline */
.navbar-nav .nav-link.active {
    color: #ffc107 !important;
    font-weight: 700 !important;
    border-bottom: 2px solid #ffc107 !important; /* Permanent gold line */
}

/* Base link style to support transition */
.navbar-nav .nav-link {
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

/* Dropdown Active Item (Full Background Gold) */
.dropdown-item.active {
    background-color: #ffc107 !important;
    color: #212529 !important;
    font-weight: bold;
}