/*
 * عام: تعريف الخطوط والألوان الأساسية للموقع
 */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* Light mode base */
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-2: #ffffff;
    --text: #1f2937;          /* slate-800 */
    --muted: #6b7280;         /* slate-500 */
    --accent: #3b82f6;        /* blue-500 */
    --accent-glow: rgba(59,130,246,0.15);
    --orange: #f59e0b;        /* soft icon color */
    --yellow: #facc15;
    --blue: #60a5fa;          /* pastel blue for charts */

    background: #f7f9fc;      /* very light app background */
    min-height: 100vh;
    color: var(--text);
    direction: rtl;
    padding: 20px;
    box-sizing: border-box;
}

/* الرأس: صورة العنوان والشعار */
.header-image {
    position: relative;
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
}
.header-image .logo img {
    height: 120px;
}

/* تغيير ارتفاع الهيدر حسب حجم الشاشة */
@media (max-width: 768px) {
    .header-image {
        height: 100px;
    }
    .header-image .logo img {
        height: 80px;
    }
}
@media (min-width: 1200px) {
    .header-image {
        height: 200px;
    }
    .header-image .logo img {
        height: 160px;
    }
}

/* شريط التنقل المخصص */
nav.navbar {
    background: #ffffff;
    color: var(--text);
    padding: 10px 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb; /* light border */
}
/* عناصر التنقل */
.navbar-brand {
    color: var(--text);
    font-weight: bold;
    margin-left: 15px;
    text-decoration: none;
    font-size: 1.1rem;
}
.navbar-nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}
.navbar-nav .nav-item {
    margin-left: 10px;
}
.navbar-nav .nav-link {
    display: block;
    padding: 6px 12px;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.navbar-nav .nav-link:hover {
    background-color: #f3f4f6;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link[aria-current="page"] {
    color: var(--accent);
    background-color: rgba(59,130,246,0.08);
    box-shadow: inset 0 0 0 1px rgba(59,130,246,0.25);
}
.navbar-text {
    margin-left: 15px;
    color: var(--muted);
}
.btn {
    display: inline-block;
    padding: 6px 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--text);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(0,0,0,0.08); }
.btn:active { transform: translateY(0); }
.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border-color: #e5e7eb;
}
.btn-success {
    background: #22c55e;
    color: #fff;
    border-color: #22c55e;
}
.btn-warning {
    background: var(--yellow);
    color: #111827;
}
.btn-outline-light {
    border: 1px solid var(--accent);
    color: var(--accent);
    background-color: transparent;
}
.btn-outline-light:hover {
    background-color: var(--accent);
    color: #ffffff;
}

/* أزرار بإطار ثانوي */
.btn-outline-secondary {
    border: 1px solid #6c757d;
    color: #6c757d;
    background-color: transparent;
}
.btn-outline-secondary:hover {
    background-color: #6c757d;
    color: #fff;
}
/* زر بتأثير لمعان وحركة */
.btn-glow {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--accent), #60a5fa);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.btn-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: 0;
}
.btn-glow:hover::before {
    width: 300px;
    height: 300px;
}
.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px var(--accent-glow);
    color: #ffffff;
}

/* حجم صغير للأزرار */
.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
}

/* جداول */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.table th, .table td {
    border: 1px solid rgba(255,255,255,0.06);
    padding: 0.75rem;
    text-align: center;
    vertical-align: middle;
    background-color: #ffffff;
    color: var(--text);
    border-color: #e5e7eb;
}
.table thead th {
    background-color: #f3f4f6;
    color: #374151;
}
.table tbody tr:nth-child(even) { background-color: #fafafa; }
.table tbody tr:hover { background-color: rgba(59, 130, 246, 0.06); }

/* Responsive table helpers */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.overflow-x-auto { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.no-wrap { white-space: nowrap; }

/* Always allow horizontal scroll on smaller viewports */
@media (max-width: 992px) {
    .table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .table th, .table td { white-space: nowrap; }
}

/*
 * تحسينات العرض على الجوال: عندما يكون العرض صغيرًا (أقل من 576px)
 * نقوم بتغيير تخطيط شريط التنقل والبطاقات والنصوص لتكون أكثر مناسبة للهواتف.
 */
@media (max-width: 576px) {
    body {
        padding: 10px;
    }
    /* شريط التنقل يصبح عموديًا ويمتد بعرض كامل الصفحة */
    nav.navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-brand, .navbar-text {
        margin-left: 0;
        margin-bottom: 0.5rem;
        width: 100%;
    }
    /* تمرير أفقي لعناصر الهيدر على الجوال */
    .nav-scroll { position: relative; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .nav-scroll::-webkit-scrollbar { display: none; }
    .navbar-nav { display: flex; flex-direction: row; gap: 6px; width: max-content; }
    .navbar-nav .nav-item { margin-left: 0; margin-bottom: 0; }
    .nav-scroll { scroll-snap-type: x proximity; }
    .navbar-nav .nav-link { scroll-snap-align: start; }
    /* أنيميشن خفيف للإيحاء بإمكانية السحب */
    .navbar-nav.auto-pan { animation: navPan 12s ease-in-out infinite alternate; }
    .navbar-nav.auto-pan:hover { animation-play-state: paused; }
    /* تقليل حجم البطاقات وتعديل الهوامش */
    .card {
        padding: 15px;
        margin-bottom: 1rem;
    }
    .card-header {
        font-size: 1rem;
    }
    /* عرض الأعمدة بعرض كامل عند الشاشات الصغيرة */
    .col-md-6, .col-md-4, .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    /* السماح للجداول بالتمرير الأفقي لمنع كسر التخطيط */
    .table { display: block; overflow-x: auto; width: 100%; -webkit-overflow-scrolling: touch; }
    .table th, .table td {
        white-space: nowrap;
    }
}

/* حركة أفقية خفيفة (RTL-friendly) */
@keyframes navPan {
    0% { transform: translateX(0); }
    100% { transform: translateX(24px); }
}

/* بطاقات */
/* بطاقات عائمة */
.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    border: 1px solid #e5e7eb;
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    /* accent bar */
    background: linear-gradient(90deg, var(--accent), rgba(59,130,246,0.25));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.card:hover::before {
    transform: scaleX(1);
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* ظل للصناديق */
.shadow {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* رأس البطاقة */
.card-header {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text);
}
.card-body {
    padding: 0;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}
.card-text {
    margin-bottom: 1rem;
}

/* نماذج الإدخال */
label.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}
.form-control {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: var(--text);
    border-radius: 8px;
    box-sizing: border-box;
    margin-bottom: 0.75rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-control::placeholder { color: #9ca3af; }
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); background: #ffffff; }
.form-check {
    margin-bottom: 0.75rem;
}
.form-check-input {
    margin-left: 0.5rem;
}
.form-select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    box-sizing: border-box;
    background: #ffffff;
    color: var(--text);
}

/* تخطيط صفوف وأعمدة بسيط بديل للـ Bootstrap */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

/* هوامش قصيرة */
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.me-3 { margin-left: 1rem; }
.col-md-6,
.col-md-4,
.col-md-3 {
    flex: 1;
    padding: 0 10px;
    box-sizing: border-box;
    min-width: 0;
}

/* تنسيق الشعارات */
.badge-range {
    padding: 0.3rem 0.6rem;
    border-radius: 0.25rem;
    display: inline-block;
    font-size: 0.85rem;
}

/* شارات (badges) وألوان */
.badge {
    display: inline-block;
    padding: 0.35rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 400;
    border-radius: 0.25rem;
    color: #111827;
    margin: 0.1rem;
}
.bg-success { background-color: #22c55e; color: #fff; }
.bg-secondary { background-color: #6b7280; color: #fff; }
.bg-warning { background-color: var(--yellow); color: #111827; }
.bg-danger { background-color: #ef4444; color: #fff; }

/* خلفيات وألوان إضافية */
.bg-dark { background-color: #111827; color: #fff; }
.text-white { color: #fff; }
.text-white { color: #fff; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.mt-auto { margin-top: auto; }

/* نصوص */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }

/* تنبيه (alert) */
.alert {
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}
.alert-success { background-color: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-danger { background-color: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-warning { background-color: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.alert-info { background-color: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.alert-dismissible .btn-close {
    float: left;
    font-size: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
}

/* قسم المحتوى الرئيسي */
main.container {
    margin-top: 20px;
}

/* إخفاء زر القائمة في شاشات صغيرة حيث لا يتم استخدامه */
.navbar-toggler {
    display: none;
}

/* Accent outlines and utility */
.accent-border { border: 1px solid var(--accent) !important; box-shadow: 0 0 0 3px var(--accent-glow) !important; }
.accent-text { color: var(--accent) !important; }

/* Chart color helpers (for libraries or SVGs) */
.chart-accent { color: var(--accent); stroke: var(--accent); }
.chart-orange { color: var(--orange); stroke: var(--orange); }
.chart-yellow { color: var(--yellow); stroke: var(--yellow); }
.chart-blue { color: var(--blue); stroke: var(--blue); }

/* Tables inside cards spacing */
.card .table { margin-bottom: 0; border-radius: 8px; overflow: hidden; }

/* Footer override for light theme */
footer.bg-dark {
    background: #f8fafc;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
}