/* Base styles for LTR layout */
body {
    direction: ltr;
    text-align: left;
}

/* Adjustments for LTR layout */
.text-justify {
    text-align: left !important;
}

.text-center.text-md-start {
    text-align: left !important;
}

.ms-2 {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
}

.ms-3 {
    margin-right: 1rem !important;
    margin-left: 0 !important;
}

.ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

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

.float-end {
    float: left !important;
}

.float-start {
    float: right !important;
}

/* Adjustments for RTL/LTR specific elements */
.offcanvas-end {
    right: 0;
    left: auto;
}

.dropdown-menu {
    text-align: left;
}

/* Form elements */
.form-control {
    text-align: left;
}

/* Bootstrap overrides for LTR */
.btn {
    margin-left: 0.5rem;
    margin-right: 0;
}

/* Custom adjustments */
.order-1.order-md-0 {
    order: 0;
}

.order-0.order-md-1 {
    order: 1;
}

/* Navigation adjustments */
.navbar-nav {
    margin-left: auto;
    margin-right: 0;
}

/* For the language switch button */
#langSwitchBtn {
    margin-left: 0.5rem;
    margin-right: 0;
}
