/* Navigation active state styling */
.nav-link.active {
    color: #BF9B30 !important;
    font-weight: 600 !important;
    background-color: transparent !important;
}

.nav-link.active::after {
    width: 100% !important;
    height: 2px !important;
    background-color: #BF9B30 !important;
}

/* Remove any gray background from active links */
.nav-link.active,
.dropdown-content a.active,
.mobile-menu a.active,
a.active {
    background-color: transparent !important;
}

/* Highlight the text, not the background */
.dropdown-content a.active {
    color: #BF9B30 !important;
    font-weight: 600 !important;
    background-color: rgba(191, 155, 48, 0.05) !important;
}

/* Mobile menu active state */
.mobile-menu a.active {
    color: #BF9B30 !important;
    font-weight: 600 !important;
    background-color: transparent !important;
}

/* Remove bg-gray-100 if it appears anywhere */
.bg-gray-100 {
    background-color: transparent !important;
} 