
/* Medium screen  */
html[dir="rtl"] .auto_flote {
    right: auto !important;
    left: 0.5px !important;
}
.preserve-formatting {
    white-space: pre-wrap; /* Preserve spaces and line breaks */
    text-align: initial; /* Optional: Justifies the text */
    word-wrap: break-word; /* Ensures long words are broken */
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
}

/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    html[dir="rtl"] .auto_flote {
        right: auto !important;
        left: 5px !important;
    }
    html[dir="ltr"] .auto_flote {
        right: 5px !important;
        left: auto !important;
    }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
    html[dir="rtl"] .navbar-header .dropdown .dropdown-menu {
        right: auto !important;
        left: 0 !important;
    }
    html[dir="ltr"] .navbar-header .dropdown .dropdown-menu {
        right: 0 !important;
        left: auto !important;
    }
}
