/**
 * RTL (Right-to-Left) Stylesheet
 * For Arabic and Urdu languages
 */

body.rtl {
    direction: rtl;
    text-align: right;
}

/* Reverse flex directions */
.rtl .header-content,
.rtl .main-nav,
.rtl .header-actions,
.rtl .lang-switcher {
    flex-direction: row-reverse;
}

/* Adjust text alignment */
.rtl table th,
.rtl table td {
    text-align: right;
}

.rtl .form-footer {
    text-align: center;
}

/* Adjust padding/margin for RTL */
.rtl .main-nav a {
    margin-left: 0;
    margin-right: var(--spacing-md);
}

/* Adjust border radius for RTL elements if needed */
.rtl .card {
    text-align: right;
}
