/* Dropdown Menu Styling */
.dropdown-menu {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    min-width: 220px;
    margin-top: 0.5rem;
}

.dropdown-item {
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background-color: var(--bg-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: rgba(0, 0, 0, 0.05);
}

.dropdown-item.text-danger:hover {
    background-color: #FEE2E2;
    color: #DC2626 !important;
}

/* Mobile dropdown adjustments */
@media (max-width: 991.98px) {
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 1rem;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown .btn {
        width: 100%;
    }
}