/* إصلاح الصفوف اللي بتقلب غلط */
body[dir="rtl"] .row {
  flex-direction: row-reverse !important;
}
body[dir="ltr"] .row {
  flex-direction: row !important;
}

/* إصلاح الـ text alignment */
body[dir="rtl"] {
  text-align: right;
}
body[dir="ltr"] {
  text-align: left;
}