/* Dropdown Menu Styles */
.dropdown-container {
    position: relative;
    list-style: none;
}

/* Remove default list styles */
nav ul, nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease-in-out;
    margin-top: 0.5rem;
}

.dropdown-container:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-container button {
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
}

.dropdown-container:hover button {
    color: #60a5fa;
}

.dropdown-container:hover button svg {
    transform: rotate(180deg);
}

.dropdown-menu a {
    display: block;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.dropdown-menu a:hover {
    background-color: #eff6ff;
    color: #2563eb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        display: block;
        opacity: 1;
        transform: none;
        margin-top: 0.5rem;
        box-shadow: none;
        border: none;
        background-color: transparent;
    }
    
    .dropdown-menu a {
        color: white;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #60a5fa;
    }
}
