.account-dropdown {
    background: transparent !important;
}

.account-dropdown:hover {
    background: transparent !important;
}

.account-dropdown .btn-gradient {
    background: linear-gradient(90deg, #0fc511 0%, #00bfff 100%);
    color: #fff;
    font-weight: 700;
    border-radius: 2rem;
    transition: background 0.2s, color 0.2s;
}

.account-dropdown .btn-gradient:hover, 
.account-dropdown .btn-gradient:focus {
    background: linear-gradient(90deg, #ffd700 0%, #cc6633 100%);
    color: #23272b;
}

.account-dropdown .dropdown-toggle:focus {
    box-shadow: none;
}

.account-dropdown .dropdown-menu {
    min-width: 260px;
    border-radius: 1rem;
    box-shadow: 0 4px 24px #23272b22;
    padding: 0.5rem 0 0.5rem 0;
    background: #f8f9fa;
}

.account-dropdown-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 1rem 1rem 1rem;
    border-bottom: 1px solid #eee;
    background: linear-gradient(90deg, #f8f9fa 60%, #ffd70022 100%);
}

.account-dropdown-avatar {
    width: 128px; /* doubled from 64px */
    height: 128px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #7fc511;
    background: #f8f9fa;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px #23272b22;
}

.account-dropdown-username {
    font-weight: 700;
    font-size: 1.1rem;
    color: #23272b;
    margin-bottom: 0.1rem;
}

.account-dropdown-badge {
    font-size: 0.95rem;
    color: #7fc511;
    font-weight: 600;
    margin-left: 0.25rem;
}

.account-dropdown .dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-align: center;
}

.account-dropdown .btn-logout-gradient {
    background: linear-gradient(90deg, #cc6633 0%, #ffd700 100%);
    color: #23272b;
    font-weight: 700;
    border-radius: 2rem;
    border: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    width: 100%;
    transition: background 0.2s, color 0.2s;
}

    .account-dropdown .btn-logout-gradient:hover {
        background: #ffd700;
        color: #cc6633;
    }
