/* Dropdown menu styles */
.dropdown-menu {
    background-color: #242424;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    min-width: 12rem;
    z-index: 50;
    margin-top: 0.5rem;
    overflow: hidden;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #e5e7eb;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: rgba(16, 185, 129, 0.1);
    color: #ffffff;
}

.dropdown-item i {
    margin-right: 0.5rem;
    width: 1.25rem;
    text-align: center;
    color: #9ca3af;
}

.dropdown-item:hover i {
    color: #10b981;
}

/* Add a subtle animation for the dropdown */
@keyframes dropdown-appear {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu {
    animation: dropdown-appear 0.2s ease-out;
}
