/* تصميم قائمة المستخدم المسجل */
.profile-menu {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 8px;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    text-align: right;
    width: 100%;
    text-decoration: none;
}

.profile-menu-item:hover {
    background: rgba(59, 130, 246, 0.08);
    color: #1d4ed8;
}

.profile-menu-item i {
    font-size: 15px;
    width: 20px;
    text-align: center;
    margin-left: 10px;
}

.profile-menu-item span {
    flex: 1;
    text-align: right;
}

/* فاصل القائمة */
.menu-divider {
    height: 1px;
    background: rgba(0,0,0,0.06);
    margin: 3px 0;
}

/* زر تسجيل الخروج مميز */
.profile-menu-item.logout-item {
    background: rgba(239, 68, 68, 0.06);
    color: #dc2626;
}

.profile-menu-item.logout-item:hover {
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
}

/* تحسين هيدر البروفايل */
.profile-header {
    text-align: center;
    padding: 12px;
    background: rgba(248, 250, 252, 0.6);
    border-radius: 10px;
    margin-bottom: 8px;
}

.profile-header .profile-logo {
    margin-bottom: 8px;
}

.profile-header .profile-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.profile-header .profile-info h2 {
    margin: 6px 0 3px 0;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
}

.profile-header .profile-info p {
    margin: 0;
    font-size: 11px;
    color: #6b7280;
    font-weight: 400;
}