/* Fix button text vertical alignment - Arabic text baseline issue */
.btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

/* Convert all display numbers to Arabic-Indic numerals using CSS */
/* This applies to all text content but NOT to inputs */
body {
    /* font-feature-settings: "locl"; */
}

/* Exclude form inputs and phone numbers from Arabic numeral conversion */
input, textarea, select, .form-control, .form-select, [dir="ltr"] {
    /* font-feature-settings: normal !important; */
}
