/* Global Navigation Styling */
#frontNav {
    background: #0d1b2a !important;
}
#attentionItem {
    color: #ffe01b !important;
}

/* Courses Dropdown Navigation */
.navDropdown {
    position: relative;
    display: flex;
    align-items: center;
}
.navDropdownTrigger {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: inherit;
    cursor: pointer;
    padding: 10px;
    -webkit-user-select: none;
    user-select: none;
}
.navDropdownMenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
    padding: 10px 0;
    z-index: 9999;
    border: 1px solid rgba(0,0,0,0.06);
}
.navDropdown:hover .navDropdownMenu {
    display: block;
}
.navDropdownItem {
    display: block;
    padding: 11px 22px;
    font-size: 15px;
    font-weight: 600;
    color: #1a2332;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}
.navDropdownItem:hover {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #047857;
}
@media (max-width: 1200px) {
    .navDropdown { display: none; }
}

/* Responsive safety layer (additive, small screens only, desktop unchanged) */
@media (max-width: 640px){ .navDropdownItem { white-space: normal; overflow-wrap: anywhere; } }
