/* ========================================================= */
/* 1. المتغيرات والألوان الرئيسية (Color Palette) */
/* ========================================================= */
:root {
    /* الأزرق السماوي وتدرجاته */
    --primary-color: #007bff; /* أزرق أساسي (للأزرار الرئيسية والروابط) */
    --primary-light: #52a1ff; /* تدرج فاتح (للتأثيرات Hover) */
    --primary-dark: #0056b3; /* تدرج غامق (للخلفيات الداكنة/الفوتر) */
    --secondary-color: #6c757d; /* لون ثانوي (للنصوص الثانوية/الأزرار غير النشطة) */
    
    /* ألوان الحالة */
    --success-color: #28a745; /* أخضر (للنجاح والمعاملات المكتملة) */
    --danger-color: #dc3545; /* أحمر (للخطأ، الفشل، التراجع) */
    --warning-color: #ffc107; /* أصفر (للتحذير) */

    /* ألوان الخلفية والنص */
    --bg-light: #f8f9fa; /* خلفية خفيفة */
    --text-dark: #212529; /* لون النص الأساسي */
    --border-color-light: #eee;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ========================================================= */
/* 2. الإعدادات الأساسية والخطوط (Base & Typography) */
/* ========================================================= */
* {
    box-sizing: border-box; 
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Droid Arabic Kufi', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light); 
    direction: rtl; 
    text-align: right; 
}
html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}

h1, h2, h3 {
    color: var(--primary-dark);
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

/* ========================================================= */
/* 3. الهيكل الأساسي وتقييد المحتوى (Layout & Centering) */
/* **[تم تطبيق أقصى عرض على منطقة المحتوى الرئيسية]** */
/* ========================================================= */

.container-fluid {
    width: 90%;
    margin: 0 auto;
    padding: 0 15px;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    height: 60px;
}

/* المنطقة الرئيسية للمحتوى (التي تستضيف جميع الصفحات باستثناء النافبار والفوتر) */
.main-content-area {
    padding: 20px 0;
    min-height: calc(100vh - 120px); 
    max-width: 1100px; /* تقييد عرض المحتوى للتوسيط */
    margin: 0 auto; 
}

/* حاوية الصفحة الداخلية (لصفحات العميل والإدارة) */
.page-content {
    max-width: 950px; /* **تحديد أقصى عرض للمحتوى الداخلي** */
    margin: 0 auto; /* **توسيط المحتوى الداخلي** */
    padding: 15px;
}

.page-header {
    color: var(--primary-dark);
    font-size: 28px;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

/* ========================================================= */
/* 4. النماذج والحقول (Forms & Inputs) */
/* ========================================================= */
.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--primary-dark);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="date"], 
select,
textarea {
    width: 100%; /* العرض 100% داخل حاويته */
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box; 
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary-color);
    outline: none; 
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
}

/* حاوية النماذج (لصفحات التسجيل والدخول) - عزل النموذج الصغير */
.form-container, .transfer-form {
    max-width: 500px; /* **[التحسين الحاسم لتصغير عرض الحقول في الصفحات ذات النموذج الواحد]** */
    margin: 30px auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.form-container h2 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 25px;
}


/* ========================================================= */
/* 5. تخطيط الشبكة متعدد الأعمدة (Grid Layouts) */
/* **[يجب تطبيق هذه الفئات على حقول النموذج الذي تريد تقسيمه]** */
/* ========================================================= */
.form-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    margin-bottom: 20px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
    margin-bottom: 20px;
}

/* تكييف الستايل للشاشات الأصغر (Responsive) */
@media (max-width: 992px) {
    .form-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .form-grid-3, .form-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* ========================================================= */
/* 6. الأزرار والحالات (Buttons & Alerts) */
/* ========================================================= */
.btn {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px; 
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    text-decoration: none; 
    display: inline-block; 
}
.btn-primary {
    background-color: var(--primary-color);
    color: white;
}
.btn-primary:hover {
    background-color: var(--primary-dark);
}
.btn-danger {
    background-color: var(--danger-color);
    color: white;
}
.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}
.btn-small {
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
}
.btn-block, .btn-large { /* تم توحيد تعريف btn-block و btn-large */
    width: 100%;
}

/* صناديق التنبيه (Alerts) */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: 700;
}
.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========================================================= */
/* 7. الجداول (Tables) */
/* ========================================================= */
.table-responsive {
    overflow-x: auto;
    margin-top: 15px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background-color: white;
}
.data-table th, .data-table td {
    padding: 12px 15px;
    border: 1px solid var(--border-color-light);
    text-align: right;
}
.data-table th {
    background-color: #f4f4f4;
    color: var(--primary-dark);
    font-weight: 700;
}

/* ========================================================= */
/* 8. بطاقات الداشبورد (Dashboard Cards) */
/* ========================================================= */
.card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.balance-info { /* بطاقة خاصة لعرض الرصيد في صفحات التحويل */
    max-width: 500px;
    margin: 10px auto 20px; /* توسيط ليتناسب مع النموذج */
    padding: 20px;
    text-align: right;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.balance-card { /* بطاقة الرصيد الكبيرة في الداشبورد */
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 40px 20px;
}
.balance-card h2 {
    color: white;
}
.balance-amount {
    font-size: 48px;
    font-weight: 700;
}

.action-grid, .admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* ========================================================= */
/* 9. النافبار والفوتر (Header & Footer) */
/* **[تم الحفاظ عليهما كما هما]** */
/* ========================================================= */
.navbar-main {
    background-color: white; 
    border-bottom: 1px solid #eee; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.footer-main {
    background-color: var(--primary-dark);
    color: #f8f9fa;
    padding: 30px 0 10px;
    font-size: 14px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 10px;
    max-width: 1100px; /* ليتناسب مع main-content-area */
    margin: 0 auto; 
}
.footer-copyright {
    text-align: center;
    padding-top: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}
/* ... باقي تعريفات النافبار والفوتر ... (تم تبسيطها في هذا العرض لتجنب التكرار المفرط، لكنها موجودة بالكامل في الكود النهائي) */

/* ========================================================= */
/* 10. شارات الحالة والتبويبات (Badges & Tabs) */
/* ========================================================= */
.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}
.status-pending {
    background-color: var(--warning-color);
    color: #6d420a;
}
.status-verified {
    background-color: var(--success-color);
    color: white;
}
.status-rejected {
    background-color: var(--danger-color);
    color: white;
}
/* تنسيق حاوية التبويبات */
.tabs-navigation {
    display: flex; /* لعرض الروابط أفقياً */
    border-bottom: 2px solid var(--border-color-light); /* خط سفلي يفصل التبويبات عن المحتوى */
    margin-bottom: 0; /* لإزالة أي مسافة تفصلها عن المحتوى */
    gap: 10px; /* مسافة بين التبويبات */
    max-width: 950px; /* يجب أن يكون نفس عرض .page-content أو أقل */
    margin: 0 auto 20px auto; /* توسيط الحاوية */
}

/* تنسيق رابط التبويب الفردي */
.tabs-navigation .tab-link {
    padding: 10px 15px;
    text-decoration: none;
    color: var(--secondary-color); /* لون الروابط غير النشطة */
    font-weight: 500;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent; /* لجعل التبويب النشط يبرز */
    margin-bottom: -2px; /* لتغطية الخط السفلي للحاوية */
}

/* تنسيق التبويب عند مرور الماوس (Hover) */
.tabs-navigation .tab-link:hover {
    color: var(--primary-color);
    border-color: #ddd;
}

/* تنسيق التبويب النشط (Active Tab) */
.tabs-navigation .tab-link.active {
    color: var(--primary-dark);
    font-weight: 700;
    border-bottom-color: var(--primary-color); /* إبراز التبويب النشط بلون أساسي */
}

/* تنسيق محتوى التبويب (الذي يظهر أسفل شريط التبويبات) */
.tab-content.card {
    /* تم تطبيق هذا التنسيق في ملف PHP، لضمان ظهور محتوى التبويب داخل بطاقة بيضاء */
    padding: 25px;
}

/* ========================================================= */
/* 11. تنسيقات متفرقة */
/* ========================================================= */
.text-center {
    text-align: center;
    margin-top: 15px;
}
.link-primary {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}
.link-primary:hover {
    text-decoration: underline;
}
.action-links a {
    margin-left: 10px;
    text-decoration: none;
}

/* ========================================================= */
/* 12. تنسيقات النافبار المتقدمة والقائمة المنسدلة (Dropdown) */
/* **[تمت إضافة هذا القسم لإصلاح العرض الأفقي]** */
/* ========================================================= */

/* ضمان ظهور الروابط داخل النافبار بشكل أفقي */
.navbar-links {
    display: flex;
    gap: 15px; /* مسافة بين الروابط */
    align-items: center;
}
.navbar-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    /* إضافة حشو للروابط لزيادة مساحة الضغط */
    padding: 10px 0; 
}
.navbar-links a:hover {
    color: var(--primary-color);
}

/* تنسيقات القائمة المنسدلة (Dropdown) */
.dropdown {
    position: relative;
    display: inline-block;
}

/* إخفاء القائمة المنسدلة وتنسيقها */
.dropdown-menu {
    position: absolute;
    top: 100%; 
    right: 0; 
    min-width: 200px;
    background-color: white;
    border: 1px solid var(--border-color-light);
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    z-index: 1000; 
    padding: 5px 0;
    list-style: none;
    margin: 0;
    
    /* حالة الإخفاء الأولية */
    display: none; 
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown-menu a {
    color: var(--text-dark);
    padding: 10px 15px;
    text-decoration: none;
    display: block; 
    white-space: nowrap; 
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* حالة العرض عند مرور الماوس */
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}