/* ==========================================================================
   Dropdown Menu Component
   Site-wide standard based on the nav bar dropdown design.
   ========================================================================== */

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    min-width: 180px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
    z-index: 1060;
    padding: 0.5rem 0;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu .dropdown-header {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #ffc107;
    font-weight: 600;
    white-space: nowrap;
}

.dropdown-menu .dropdown-item {
    display: block;
    padding: 0.375rem 1rem;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.875rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: #2a2a2a;
    color: #ffc107;
}

.dropdown-menu .dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    border-top: 1px solid #333;
}
