.header-account {
    margin-left: 20px;
    gap: 8px;
}

.header-account .account-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-account .account-chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.12));
}

.header-account .account-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: #fff;
    font-size: 0.9rem;
}

.header-account .account-name {
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu .account-link {
    transition: all 0.18s ease;
    border-radius: 8px;
}

.dropdown-menu .account-link:hover {
    background: #eef2ff;
    color: #0f172a;
    transform: translateX(4px);
}

.dropdown-menu .account-link i {
    width: 22px;
    text-align: center;
    margin-right: 10px;
    font-size: 1rem;
}

.dropdown-menu .account-link small {
    opacity: 0.6;
}
