/*
 * Kad — تخصيص خط لوحة الأدمن (DIN Next LT Arabic)
 * ملف خاص بنا (غير تابع للمطوّر الأصلي) — آمن للتحديث. راجع CLAUDE.md §9.
 * يُحمَّل بعد كل أنماط الأدمن ليتجاوزها، مع الحفاظ على خطوط أيقونات Material.
 */

/* ===== تعريف الخط (4 أوزان، WOFF2 محلي) ===== */
@font-face {
  font-family: 'DIN Next LT Arabic';
  src: url('fonts/DINNextLTArabic-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DIN Next LT Arabic';
  src: url('fonts/DINNextLTArabic-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DIN Next LT Arabic';
  src: url('fonts/DINNextLTArabic-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DIN Next LT Arabic';
  src: url('fonts/DINNextLTArabic-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== تطبيق الخط على كامل الواجهة ===== */
body,
body * {
  font-family: 'DIN Next LT Arabic', 'Public Sans', 'Segoe UI', Tahoma, Arial, sans-serif !important;
}

/* ===== الحفاظ على خطوط الأيقونات (لا تُلمَس) ===== */
.material-icons,
[class*="material-icons"] {
  font-family: 'Material Icons' !important;
}
.material-symbols-outlined,
[class*="material-symbols"] {
  font-family: 'Material Symbols Outlined' !important;
}

/* ===== [Kad] صفحات الدخول (RTL): بنر يسار + نموذج يمين، مع محتوى كل قسم RTL ===== */
.login-wrap { direction: ltr; }
.login-wrap .login-left,
.login-wrap .login-right,
.login-wrap .login-right-wrap { direction: rtl; }
/* إصلاح موضع checkbox (تذكّرني) في RTL — bootstrap LTR كان يضعه فوق النص */
.login-wrap .form-check { padding-right: 1.5em; padding-left: 0; }
.login-wrap .form-check .form-check-input { float: right; margin-right: -1.5em; margin-left: 0; }
