/* Sticky Header & Dropdown Navigation Styling */

/* Sticky Header */
header {
    position: fixed !important;
    width: 100%;
    top: 0;
    z-index: 1000 !important;
    background-color: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

/* Account for fixed header - add padding to body */
body {
    padding-top: 80px !important;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown-item {
    color: var(--text-secondary);
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.dropdown-item.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-weight: 600;
}

.nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link.dropdown-toggle::after {
    margin-left: 4px;
}