/* ============================================================
   rtl.css — RTL refinements (lang ar, he, fa, ur).
   The .rtl class is set on FluentLayout in MainLayout.razor
   alongside dir="rtl".

   Most mirroring is automatic: dir="rtl" flips flex/grid flow
   and table column order, and app.css uses logical properties
   (margin-inline-*, inset-inline-*, text-align: start/end).
   Only genuine exceptions belong in this file.
   ============================================================ */

.rtl {
    direction: rtl;
}

/* Profile menu popover — open toward the inline-start side */
.rtl .sidebar-profile-footer fluent-popover {
    --popover-position: right;
}
