/**
 * RTL Support للعربية
 */

[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .table th,
[dir="rtl"] .table td {
    text-align: right;
}

[dir="rtl"] .modal-footer {
    flex-direction: row-reverse;
}

[dir="rtl"] .flex {
    flex-direction: row-reverse;
}

[dir="rtl"] .justify-between {
    flex-direction: row-reverse;
}

/* LTR overrides */
[dir="ltr"] {
    text-align: left;
}

[dir="ltr"] .table th,
[dir="ltr"] .table td {
    text-align: left;
}

[dir="ltr"] .modal-footer {
    flex-direction: row;
}

[dir="ltr"] .flex {
    flex-direction: row;
}

[dir="ltr"] .justify-between {
    flex-direction: row;
}

