/*
 * LTR overrides, loaded only when <html dir="ltr"> (English). Mirrors rtl.css: layout direction
 * and the mobile off-canvas slide direction, since most other spacing already flips
 * automatically via CSS logical properties tied to `dir`.
 */

.app-shell {
    flex-direction: row;
}

body {
    text-align: left;
}

.sidebar-brand,
.topbar-user {
    text-align: left;
}

.nav-link,
.nav-disabled {
    text-align: left;
}

@media (max-width: 960px) {
    .sidebar {
        left: 0;
        right: auto;
        transform: translateX(-100%);
    }

    .sidebar.is-open {
        transform: translateX(0);
    }
}
