.dropdown-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.dropdown-header-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.dropdown-header-info p {
    font-size: 0.85rem;
    color: var(--gray);
}
.dropdown-menu {
    list-style: none;
    padding: 0.5rem 0;
}
.dropdown-item {
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}
.dropdown-item:hover {
    background: rgba(100, 108, 255, 0.1);
    color: var(--primary);
}
.dropdown-item i {
    width: 16px;
    text-align: center;
}
.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0.5rem 0;
}