@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&display=swap');

:root { 
    --brand-blue: #1A3668; /* أزرق الشعار */
    --brand-red: #E31B23;  /* أحمر الشعار */
    --bg-light: #f4f6f9; 
    --sidebar-width: 260px;
}

body { 
    background-color: var(--bg-light); 
    font-family: 'Cairo', sans-serif; /* خط مطابق لروح الشعار */
    margin: 0; 
    padding-bottom: 50px;
}

/* القائمة الجانبية (شاشات الكمبيوتر) */
.sidebar { 
    height: 100vh; 
    background-color: var(--brand-blue); 
    color: white; 
    padding-top: 10px; 
    position: fixed; 
    right: 0; 
    width: var(--sidebar-width); 
    box-shadow: -2px 0 15px rgba(0,0,0,0.1); 
    z-index: 1000; 
}
.sidebar .brand-logo img {
    max-width: 120px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.sidebar a { 
    color: #ecf0f1; 
    text-decoration: none; 
    padding: 15px 20px; 
    display: block; 
    transition: 0.3s; 
    font-size: 16px;
    font-weight: 600;
    border-radius: 0 25px 25px 0;
    margin-bottom: 5px;
}
.sidebar a:hover { 
    background-color: rgba(255,255,255,0.1); 
    padding-right: 25px;
}
.sidebar a.active {
    background-color: var(--brand-red);
    color: white;
    box-shadow: 0 4px 10px rgba(227, 27, 35, 0.3);
}

/* شريط الموبايل العلوي */
.mobile-nav { 
    display: none; 
    position: fixed; top: 0; right: 0; left: 0; 
    background-color: var(--brand-blue); 
    z-index: 2000; padding: 10px 20px; 
    justify-content: space-between; align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.mobile-nav img { max-height: 40px; border-radius: 5px; }

/* منطقة المحتوى */
.content-area { 
    margin-right: var(--sidebar-width); 
    padding: 30px; 
}

@media (max-width: 768px) {
    .sidebar { display: none; }
    .content-area { margin-right: 0 !important; padding: 15px; padding-top: 80px; }
    .mobile-nav { display: flex !important; }
}

@media print {
    .sidebar, .print-hide, .mobile-nav { display: none !important; }
    .content-area { margin-right: 0 !important; padding: 0 !important; }
    body { background-color: white; }
}

/* شاشة الانتظار */
#loadingOverlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999; display: none;
    justify-content: center; align-items: center; flex-direction: column;
}

/* إجبار حقول الأرقام على الاتجاه الصحيح */
input[type="number"] { direction: ltr !important; text-align: left; }

/* تخصيص ألوان مكتبة Select2 لتناسب الهوية */
.select2-container--bootstrap-5 .select2-selection {
    border-color: #ced4da;
    border-radius: 8px;
    padding: 5px;
}
.select2-container--bootstrap-5.select2-container--focus .select2-selection {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 0.2rem rgba(26, 54, 104, 0.25);
}