/* RTL baseline — driven by the <html dir="rtl|ltr"> attribute App.razor sets from the current UI
   culture. Component-level styles use CSS logical properties (margin-inline-start,
   padding-inline-end, text-align: start, border-inline-end, …) so they flip automatically.
   Shell/sidebar RTL overrides live in app.css under the html[dir="rtl"] selectors. */

html[dir="rtl"] body {
    text-align: start;
}
