/* assets/css/rtl-fix.css */

/* ============================================
   راست‌چین اجباری - Override همه چیز
   ============================================ */

html {
    direction: rtl !important;
}

body {
    direction: rtl !important;
    text-align: right !important;
}

/* راست‌چین کردن همه المان‌ها */
* {
    direction: rtl !important;
    text-align: right !important;
}

/* استثنا برای وسط‌چین */
.text-center,
.text-center * {
    text-align: center !important;
}

/* استثنا برای چپ‌چین */
.text-left,
.text-left * {
    text-align: left !important;
}

/* استثنا برای justify */
.text-justify,
.text-justify * {
    text-align: justify !important;
}