/* =========================================================================
   توحيد الخط في كامل الموقع (الواجهة + لوحة التحكم)
   Unify the site font across the whole site (frontend + cpanel)
   ملاحظة: هذا الملف لا يمسّ خطوط الأيقونات (Font Awesome / simple-line-icons
   / منتقي الأيقونات) إطلاقاً، ويجب تحميله بعد كل ملفات CSS الأخرى.
   ========================================================================= */

:root{
	--site-font: 'El Messiri', 'Tahoma', 'Segoe UI', Arial, sans-serif;
}

/* 1) تطبيق الخط الموحد على كل عناصر النصوص في الموقع */
html, body,
div, span, p, a, h1, h2, h3, h4, h5, h6,
ul, ol, li, dl, dt, dd,
table, tr, td, th, caption,
label, button, input, textarea, select, option, optgroup, fieldset, legend,
form, header, footer, nav, section, article, aside,
figure, figcaption, blockquote, cite, small, strong, b, em, i, u, s, mark,
.btn, .badge, .alert, .card, .card-title, .card-text, .modal, .modal-title,
.form-control, .form-label, .form-check-label, .form-select, .form-text,
.nav-link, .nav-item, .dropdown-item, .dropdown-menu, .breadcrumb, .pagination,
.tooltip, .popover, .toast, .list-group-item, .accordion-button, .accordion-body,
input::placeholder, textarea::placeholder{
	font-family: var(--site-font) !important;
}

/* =========================================================================
   2) استثناء الأيقونات نهائياً — لا تمسّ الخطوط الخاصة بها
   ========================================================================= */

/* Font Awesome (fa / fas / far / fal / fad) */
.fa, .fas, .far, .fal, .fad,
[class*=" fa-"], [class^="fa-"],
.fa-stack, .fa-stack-1x, .fa-stack-2x{
	font-family: "Font Awesome 5 Free" !important;
}

/* Font Awesome Brands (fab) */
.fab, [class*=" fab"], [class^="fab"]{
	font-family: "Font Awesome 5 Brands" !important;
}

/* simple-line-icons (تُستخدم عبر class="icons icon-...") */
.icons, [class*=" icon-"], [class^="icon-"]{
	font-family: "simple-line-icons" !important;
}

/* منتقي الأيقونات في لوحة التحكم (fontawesome-iconpicker) */
.iconpicker, .iconpicker-btn, .iconpicker-component, .iconpicker-container,
.iconpicker-item, .iconpicker-items, .iconpicker-popover, .iconpicker-search,
.iconpicker-selected{
	font-family: var(--site-font) !important;
}
.iconpicker-item i, .iconpicker-item [class*="fa-"]{
	font-family: "Font Awesome 5 Free" !important;
}

/* أعلام الدول Flag Icons */
.flag-icon, [class*=" flag-icon-"], [class^="flag-icon-"]{
	font-family: initial !important;
}

/* =========================================================================
   3) إصلاح شكل عناصر label في كل النماذج (الواجهة ولوحة التحكم)
   ========================================================================= */
label{
	display: inline-block;
	font-family: var(--site-font) !important;
	font-weight: 600;
	color: inherit;
	margin-bottom: .5rem;
	line-height: 1.5;
}
label b, label strong{
	font-weight: 700;
}
