/* RTL Styling for Arabic */
html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

/* Navbar adjustments */
html[dir="rtl"] .navbar-nav {
    padding-right: 0;
}

/* Dropdown menu positioning */
html[dir="rtl"] .dropdown-menu {
    text-align: right;
    left: auto;
    right: 0;
}

/* Float corrections */
html[dir="rtl"] .float-left {
    float: right !important;
}
html[dir="rtl"] .float-right {
    float: left !important;
}

/* Bootstrap adjustments */
html[dir="rtl"] .me-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}
html[dir="rtl"] .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

/* Badge positioning */
html[dir="rtl"] .position-absolute.start-100 {
    left: auto !important;
    right: 100% !important;
}