/* RTL overrides for Arabic layout */
/* Bootstrap RTL handles most LTR→RTL flipping automatically */
/* This file addresses any project-specific adjustments */

body {
    font-family: 'Segoe UI', 'Tahoma', 'Arial', sans-serif;
}

/* Form labels alignment */
.form-label {
    text-align: right;
}

/* Card headers */
.card-header {
    text-align: right;
}

/* Table headers */
th {
    text-align: right;
}

/* Alert text */
.alert {
    text-align: right;
}

/* Button icons — keep icon spacing consistent in RTL */
.btn i.me-1 {
    margin-right: 0 !important;
    margin-left: 0.25rem !important;
}

.btn i.me-2 {
    margin-right: 0 !important;
    margin-left: 0.5rem !important;
}

/* Badge icon spacing */
.badge i.me-1 {
    margin-right: 0 !important;
    margin-left: 0.25rem !important;
}

/* Text truncate direction */
.text-truncate {
    direction: rtl;
}

/* Form validation messages */
.text-danger {
    text-align: right;
}

/* Empty state messages */
.text-muted {
    text-align: right;
}

/* Center-aligned content stays centered */
.text-center {
    text-align: center !important;
}
