/* ==========================================================================
   job_details.css — page styles for job_details.php
   Loaded via $page_assets['css'] = ['job_details'].

   Two opt-in classes for forcing description language direction. The PHP page
   adds .force-ltr-desc when an English-language description is shown inside
   the Arabic UI, and .force-rtl-desc for the opposite case.
   ========================================================================== */

/* Force LTR for English description text in Arabic UI */
.force-ltr-desc, .force-ltr-desc * {
    text-align: left !important;
    direction: ltr !important;
}
.force-ltr-desc ul, .force-ltr-desc ol {
    padding-left: 40px !important;
    padding-right: 0 !important;
}

/* Force RTL for Arabic description text in English UI */
.force-rtl-desc, .force-rtl-desc * {
    text-align: right !important;
    direction: rtl !important;
}
.force-rtl-desc ul, .force-rtl-desc ol {
    padding-right: 40px !important;
    padding-left: 0 !important;
}
