/**
 * HTTPS and Mixed Content Fixer CSS
 * 
 * يحل مشاكل الخطوط والموارد المختلطة
 */

/* إصلاح مشاكل الخطوط */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');

/* ضمان استخدام HTTPS للخطوط */
@font-face {
    font-family: 'Cairo-Fallback';
    src: local('Cairo'), local('Segoe UI'), local('Tahoma'), sans-serif;
    font-display: swap;
}

/* تأكيد استخدام خطوط آمنة */
body, .dmp-tax-returns * {
    font-family: 'Cairo', 'Cairo-Fallback', 'Segoe UI', 'Tahoma', sans-serif !important;
}

/* إخفاء رسائل الخطأ المزعجة */
.error-message[style*="mixed content"],
.console-warning[style*="superpwa"] {
    display: none !important;
}

/* تحسين عرض الأخطاء للمطورين فقط */
.dev-error-display {
    display: none;
    background: #ffe6e6;
    border: 1px solid #ff9999;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    font-family: monospace;
    font-size: 12px;
    color: #cc0000;
}

/* عرض رسائل الحالة المحسنة */
.dmp-status-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin: 10px 0;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.dmp-status-message.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 1px solid #b6d4ea;
    color: #155724;
}

.dmp-status-message.warning {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffeaa7;
    color: #856404;
}

.dmp-status-message.error {
    background: linear-gradient(135deg, #f8d7da, #f1c6c8);
    border: 1px solid #f1c6c8;
    color: #721c24;
}

.dmp-status-message.info {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    border: 1px solid #bee5eb;
    color: #0c5460;
}

/* تحسين عرض loading states */
.dmp-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(2px);
}

.dmp-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: dmp-spin 1s linear infinite;
}

@keyframes dmp-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* إصلاح مشاكل العرض على HTTPS */
.mixed-content-fix {
    background-image: none !important;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0) !important;
}

/* تحسين عرض الكونسول الرسائل في بيئة الإنتاج */
@media print {
    .dev-error-display,
    .dmp-debug-info {
        display: none !important;
    }
}

/* تحسين accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* إصلاح مشاكل PWA والتطبيقات */
.pwa-install-banner {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 10px 0;
    text-align: center;
}

.pwa-install-banner button {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.pwa-install-banner button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* تحسين عرض الرسائل التقنية */
.technical-info {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.5;
}

.technical-info h4 {
    color: #495057;
    margin: 0 0 10px 0;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
}

.technical-info .highlight {
    background: #fff3cd;
    padding: 2px 4px;
    border-radius: 3px;
    color: #856404;
}

/* إخفاء رسائل SuperPWA المتكررة */
.superpwa-message,
[class*="superpwa"] .notice {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.superpwa-message:hover,
[class*="superpwa"] .notice:hover {
    opacity: 1;
}

/* تحسين عرض ApexCharts في حالة الخطأ */
.apexcharts-canvas {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 8px;
    padding: 20px;
}

.apexcharts-loading {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    color: #667eea;
}

.apexcharts-error {
    background: #fff5f5;
    border: 2px solid #fed7d7;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #c53030;
}

/* تحسينات responsive */
@media (max-width: 768px) {
    .dmp-status-message {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .technical-info {
        padding: 12px;
        font-size: 12px;
    }
    
    .pwa-install-banner {
        padding: 10px 12px;
    }
    
    .pwa-install-banner button {
        padding: 6px 12px;
        font-size: 14px;
    }
}
