/* ═══════════════════════════════════════════════════════════════════════════
   AgriHire Australia — RTL overrides
   Applied only when <html dir="rtl">. Uses logical properties where possible
   so LTR layout is unaffected.
   ═══════════════════════════════════════════════════════════════════════════ */

html[dir="rtl"] body { direction: rtl; text-align: right; }
html[dir="rtl"] .ah-overlay { direction: ltr; } /* spinner stays symmetric */

/* Flip horizontal margins / paddings on common wrapper classes */
html[dir="rtl"] [class*="ml-"]  { margin-left: 0 !important; }
html[dir="rtl"] [class*="mr-"]  { margin-right: 0 !important; }
html[dir="rtl"] [class*="pl-"]  { padding-left: 0 !important; }
html[dir="rtl"] [class*="pr-"]  { padding-right: 0 !important; }

/* Mirror flex/grid inline direction */
html[dir="rtl"] [style*="flex-direction: row"] { flex-direction: row-reverse !important; }

/* Form inputs: keep numbers/currency aligned to start of the writing direction */
html[dir="rtl"] input[type="tel"],
html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="number"],
html[dir="rtl"] input[type="url"] {
  direction: ltr;
  text-align: right;
}

/* Toast + live region positioning for RTL */
html[dir="rtl"] .ah-toast-wrap { direction: rtl; }
html[dir="rtl"] .ah-toast      { text-align: right; }

/* Language switcher cosmetic defaults (used by pages that opt in) */
.ah-lang-switch {
  display: inline-flex; gap: 4px; align-items: center;
  padding: 4px 8px; border-radius: 999px;
  background: rgba(255,255,255,.08); color: #fff;
  font: 600 12px/1 "DM Sans", sans-serif;
}
.ah-lang-switch select {
  background: transparent; border: 0; color: inherit;
  font: inherit; cursor: pointer; outline: none;
}
.ah-lang-switch select option { color: #0D1B2E; }

/* Default focus-visible ring for accessibility (applied everywhere) */
:focus-visible {
  outline: 2px solid #4A9B3F !important;
  outline-offset: 2px !important;
  border-radius: 4px;
}
