:root {
    --ad-menu-size: 360px;
}

/* User Profile Panel Styles */
.user-profile-panel {
    min-width: 280px;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #edf2f7;
}

.user-info-header {
    padding: 30px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    background-color: #fff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.user-info-header .avatar-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 15px;
    background-color: #ebf2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    flex-shrink: 0;
}

.user-info-header .avatar-circle i {
    font-size: 30px;
}

.user-info-header .name {
    font-weight: 700;
    font-size: 16px;
    color: #1e293b;
    margin-bottom: 4px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-info-header .email {
    font-size: 13px;
    color: #64748b;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-profile-panel .dropdown-header {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    padding: 18px 20px 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: transparent;
}

.user-profile-panel .dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background-color 0.15s;
}

.user-profile-panel .dropdown-item:hover {
    background-color: #f8fafc;
    color: #1e293b;
}

.user-profile-panel .dropdown-item i {
    font-size: 18px;
    width: 20px;
    text-align: center;
    color: #64748b;
    opacity: 0.8;
}

.user-profile-panel .dropdown-divider {
    margin: 0;
    border-top: 1px solid #f1f5f9;
}

.avatar-badge {
    position: relative;
    width: 42px;
    height: 42px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-badge img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.user-quick-text .name {
    font-weight: 600;
    font-size: 13px;
    color: #1e293b;
    line-height: 1.2;
}

.user-quick-text .email {
    font-size: 11px;
    color: #64748b;
    line-height: 1.2;
}

#user-quick-info::after {
    display: none !important;
}
