/* Aulo Profile Styles
   Focus: User Identity & Post Grid
*/

.profile-header {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    background: #fff;
}

/* --- الصورة الشخصية --- */
.profile-avatar-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.profile-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
}

.edit-avatar-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid white;
}

/* --- معلومات المستخدم --- */
.profile-names {
    margin-bottom: 10px;
}

.p-display-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-color);
    display: block;
}

.p-username {
    font-size: 14px;
    color: var(--secondary-text);
}

.p-bio {
    font-size: 14px;
    color: #444;
    max-width: 80%;
    margin: 5px auto;
}

/* --- البيانات الثابتة (تاريخ الميلاد والجنس) --- */
.profile-static-info {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    font-size: 13px;
    color: var(--secondary-text);
}

.info-item {
    background: #f8f8f8;
    padding: 4px 12px;
    border-radius: 15px;
}

/* --- أزرار التحكم (My Profile Only) --- */
.profile-actions {
    width: 100%;
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-edit, .btn-chat {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
}

.btn-edit {
    background: #f0f0f0;
    color: var(--text-color);
}

.btn-chat {
    background: var(--primary-color);
    color: white;
}

/* --- شبكة المنشورات (User Posts Feed) --- */
.user-posts-section {
    padding-top: 10px;
}

.section-title {
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-text);
    border-bottom: 1px solid var(--border-color);
}

/* إعادة استخدام تنسيقات المنشورات من main.css */
.profile-feed {
    background: #fafafa;
}

/* زر الحذف في الملف الشخصي فقط */
.delete-post-btn {
    margin-right: auto;
    color: var(--error-color);
    background: none;
    border: none;
    font-size: 18px;
    padding: 5px;
    cursor: pointer;
}