/* Custom styles */
/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 50;
    margin-top: 0.5rem;
}

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

.dropdown-menu a {
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #ffc107 !important;
    color: white !important;
}

/* Submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -0.5rem;
    margin-left: 0.125rem;
    display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    background-color: #1a237e;
    padding: 1rem;
}

.mobile-menu a {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.mobile-menu a:hover {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.mobile-dropdown > button {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.mobile-dropdown > button:hover {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.mobile-dropdown > div {
    padding-left: 1rem;
    margin-top: 0.5rem;
}

/* Mobile menu */
@media (max-width: 1024px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: rgba(255,255,255,0.1);
    }
    
    .dropdown-submenu .dropdown-menu {
        margin-left: 1rem;
    }
}
