/* 
 * أنماط مربع الإشعارات
 * Notification Prompt Styles
 */

/* مربع الإشعارات الرئيسي */
.notification-prompt {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    direction: rtl;
    animation: fadeIn 0.3s ease-in-out;
}

/* محتوى مربع الإشعارات */
.notification-prompt-content {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    padding: 25px;
    max-width: 90%;
    width: 450px;
    text-align: center;
    position: relative;
    animation: scaleIn 0.3s ease-in-out;
}

/* أيقونة الإشعارات */
.notification-prompt-icon {
    margin-bottom: 15px;
}

.notification-prompt-icon i {
    font-size: 3rem;
    color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* نص مربع الإشعارات */
.notification-prompt-text h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.notification-prompt-text p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* أزرار مربع الإشعارات */
.notification-prompt-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.notification-prompt-actions button {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.notification-prompt-actions button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* رسالة نجاح تفعيل الإشعارات */
.notification-success {
    margin-bottom: 20px;
    animation: slideDown 0.5s ease-in-out;
}

/* زر تفعيل الإشعارات */
.notification-callout {
    padding: 15px;
    border-radius: 8px;
    background-color: rgba(76, 175, 80, 0.1);
    margin: 20px 0;
    transition: all 0.3s ease;
}

.notification-callout:hover {
    background-color: rgba(76, 175, 80, 0.15);
}

.notification-callout .btn {
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.notification-callout .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* تأثيرات حركية */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* تحسينات للأجهزة المحمولة */
@media (max-width: 576px) {
    .notification-prompt-content {
        padding: 20px;
        width: 90%;
    }
    
    .notification-prompt-icon i {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }
    
    .notification-prompt-text h4 {
        font-size: 1.3rem;
    }
    
    .notification-prompt-text p {
        font-size: 0.9rem;
    }
    
    .notification-prompt-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .notification-prompt-actions button {
        width: 100%;
    }
}
