/*
 * MR Saeid - إصلاح أحجام العناصر (Scale Fix)
 * يُضاف بعد جميع ملفات CSS الأخرى
 */

/* ===== إصلاح الحجم العام ===== */
html {
    font-size: 14px; /* تصغير من 16px الافتراضي */
}

@media (min-width: 1280px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

/* ===== تصغير العناوين الكبيرة ===== */
h1.text-5xl, .text-5xl {
    font-size: 2.25rem !important; /* من 3rem */
}

h1.text-6xl, .text-6xl {
    font-size: 2.5rem !important; /* من 3.75rem */
}

.text-4xl {
    font-size: 1.75rem !important; /* من 2.25rem */
}

.text-3xl {
    font-size: 1.5rem !important; /* من 1.875rem */
}

/* ===== تصغير عناصر لوحة الإدارة ===== */
.admin-sidebar a,
aside a {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.85rem !important;
}

.admin-sidebar i,
aside i {
    font-size: 0.9rem !important;
}

/* ===== تصغير كروت الإحصائيات ===== */
.neu-card.p-6 {
    padding: 1rem !important;
}

.stat-card .value,
.text-3xl.font-bold {
    font-size: 1.35rem !important;
}

/* ===== تصغير الأيقونات الكبيرة في كروت الداشبورد ===== */
.w-16.h-16 {
    width: 2.75rem !important;
    height: 2.75rem !important;
}

.w-16.h-16 i,
.text-2xl i {
    font-size: 1.1rem !important;
}

/* ===== إصلاح الناف بار ===== */
nav .text-2xl {
    font-size: 1.25rem !important;
}

nav .text-3xl {
    font-size: 1.5rem !important;
}

nav .py-4, nav .py-3 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
}

/* ===== إصلاح border-radius المبالغ فيه ===== */
/* إلغاء القاعدة العامة من design-improvements.css */
[class*="rounded-"] {
    border-radius: revert !important;
}

.rounded-xl { border-radius: 0.75rem !important; }
.rounded-2xl { border-radius: 1rem !important; }
.rounded-full { border-radius: 9999px !important; }
.rounded-lg { border-radius: 0.5rem !important; }
.rounded-md { border-radius: 0.375rem !important; }

.neu-card {
    border-radius: 0.75rem !important;
}

/* ===== تصغير padding العام ===== */
.p-8 { padding: 1.25rem !important; }
.p-6 { padding: 1rem !important; }
.px-6 { padding-left: 1rem !important; padding-right: 1rem !important; }
.py-8 { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }

/* ===== تصغير الأزرار ===== */
.neu-btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
}

/* ===== لوحة الإدارة - القائمة الجانبية ===== */
@media (min-width: 768px) {
    aside.w-72 {
        width: 14rem !important; /* من 18rem */
    }
}

/* ===== تصغير Hero Section ===== */
.hero-section,
header.pt-24 {
    padding-top: 5rem !important;
    padding-bottom: 1.5rem !important;
}

/* ===== تصغير الجدول في الأدمن ===== */
table .p-4 {
    padding: 0.625rem !important;
}

table .text-sm {
    font-size: 0.8rem !important;
}

/* ===== صفحة الداشبورد - كروت الإحصائيات ===== */
.grid.grid-cols-2.md\:grid-cols-5 .text-3xl {
    font-size: 1.25rem !important;
}

/* ===== المساحات بين العناصر ===== */
.gap-6 { gap: 1rem !important; }
.gap-8 { gap: 1.25rem !important; }
.mb-8 { margin-bottom: 1.25rem !important; }
.mb-6 { margin-bottom: 1rem !important; }
