/* 
 * ملف CSS إضافي للتطبيق
 * يحتوي على تنسيقات محددة لمكونات معينة
 */

/* تنسيقات الصورة الشخصية في الشريط الجانبي */
.user-profile-container {
    transition: all 0.3s ease;
}

.user-profile-container:hover .user-avatar {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.user-avatar {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.user-avatar-edit {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: translate(-20%, 20%);
    transition: all 0.3s ease;
}

.user-profile-container:hover .user-avatar-edit {
    transform: translate(-20%, 20%) scale(1.1);
    background-color: #0ea5e9;
    color: white;
}

.user-points {
    background: linear-gradient(45deg, #0ea5e9, #38bdf8);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 3px 8px rgba(14, 165, 233, 0.3);
    transition: all 0.3s ease;
}

.user-points:hover {
    box-shadow: 0 5px 12px rgba(14, 165, 233, 0.5);
    transform: translateY(-2px);
}

.user-points i {
    margin-left: 6px;
    font-size: 14px;
}
input#email {
    text-align: right !important;
} 
input#email::placeholder {
    text-align: right !important;
}
.user-role {
    color: #64748b;
    font-size: 13px;
    padding: 3px 8px;
    border-radius: 12px;
    background-color: #f1f5f9;
}

/* تنسيقات التأثيرات المتحركة في الصفحة */
.animated-pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(14, 165, 233, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
    }
} 
