/* Minimal RTL wrapper for Bootstrap
   This file imports the existing bootstrap.min.css and applies
   direction and a few utility overrides to approximate RTL behavior.
   For full RTL support, replace with an official Bootstrap RTL build.
*/
@import url("bootstrap.min.css");

html, body {
  direction: rtl !important;
}

/* Text alignment utilities override */
.text-start { text-align: right !important; }
.text-end   { text-align: left !important; }

/* Float utilities override */
.float-start { float: right !important; }
.float-end   { float: left !important; }

/* Margin/padding directional helpers (basic) */
.ms-0 { margin-left: 0 !important; }
.me-0 { margin-right: 0 !important; }
.ms-1 { margin-left: .25rem !important; }
.me-1 { margin-right: .25rem !important; }

/* Ensure header text alignment follows RTL where logical classes aren't used */
.text-center { text-align: center !important; }

/* Utility to flip inline icons spacing when needed */
[dir="rtl"] .mt-btn span i { margin-right: 5px; margin-left: 0; }

/* Note: This is a lightweight shim. For complete RTL compatibility,
   install an official RTL Bootstrap build and replace this file. */
