:root {
    --px-navy-950: #0b1220;
    --px-navy-900: #0f172a;
    --px-blue-700: #1d4ed8;
    --px-slate-700: #334155;
    --px-slate-500: #64748b;
    --px-surface: #f8fafc;
    --px-red: #dc2626;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: var(--px-surface);
    color: #0f172a;
}

.app-shell__frame {
    display: flex;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 25%),
        linear-gradient(180deg, #eef2ff 0%, #f8fafc 100%);
}

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, var(--px-navy-950), var(--px-navy-900));
    color: white;
    padding: 1.5rem 1rem;
    transition: width 0.2s ease;
    overflow-y: auto;
}

.sidebar.is-collapsed {
    width: 92px;
}

.sidebar.is-collapsed .sidebar__link span,
.sidebar.is-collapsed .sidebar__section,
.sidebar.is-collapsed .brand-title,
.sidebar.is-collapsed .brand-subtitle {
    display: none;
}

.sidebar.is-collapsed .sidebar__brand,
.sidebar.is-collapsed .sidebar__link {
    justify-content: center;
}

.sidebar.is-collapsed .sidebar__link {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.sidebar.is-collapsed .sidebar__link.is-active::after {
    right: 0.45rem;
}

.sidebar__brand,
.sidebar__link,
.governance-list__item {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.sidebar__brand {
    padding: 0.75rem;
    margin-bottom: 1.25rem;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--px-blue-700), #38bdf8);
    color: white;
    font-weight: 700;
}

.brand-title {
    font-weight: 700;
}

.brand-subtitle,
.workspace__subtitle,
.dashboard-panel__subtitle,
.placeholder-widget__meta,
.topbar__meta {
    color: var(--px-slate-500);
}

.sidebar__section {
    margin: 1rem 0 0.5rem;
    padding: 0 0.75rem;
    color: rgba(255, 255, 255, 0.48);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
}

.sidebar__section--collapsible {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.sidebar__section--collapsible:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar__section--collapsible.is-active {
    background: rgba(37, 99, 235, 0.18);
    color: rgba(255, 255, 255, 0.92);
}

.section-toggle {
    font-size: 0.8rem;
    transition: transform 0.2s;
    color: rgba(255, 255, 255, 0.6);
}

.sidebar__group {
    display: none; /* Hidden by default */
}

.sidebar__link {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    border-radius: 12px;
    padding: 0.8rem 0.9rem;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s;
}

.sidebar__link:hover,
.sidebar__link.is-active {
    color: white;
    background: rgba(37, 99, 235, 0.25);
}

.sidebar__link.is-active {
    position: relative;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.38), rgba(14, 165, 233, 0.18));
    box-shadow: inset 3px 0 0 #38bdf8;
    font-weight: 700;
}

.sidebar__link.is-active::after {
    content: "";
    position: absolute;
    right: 0.9rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.14);
}

/* Colored icons for modules */
.sidebar__link--sales .bi { color: #3b82f6; }
.sidebar__link--production .bi { color: #10b981; }
.sidebar__link--dispatch .bi { color: #f59e0b; }
.sidebar__link--finance .bi { color: #ef4444; }
.sidebar__link--insights .bi { color: #8b5cf6; }
.sidebar__link--reports .bi { color: #06b6d4; }
.sidebar__link--master-data .bi { color: #84cc16; }
.sidebar__link--security .bi { color: #f97316; }

.sidebar__link:hover .bi {
    color: white !important;
}

.sidebar__link.is-active .bi {
    color: white !important;
}

.app-shell__main {
    flex: 1;
}

.topbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.4rem;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 24%),
        radial-gradient(circle at left bottom, rgba(34, 197, 94, 0.12), transparent 26%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(30, 41, 59, 0.98));
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
}

.topbar__left,
.topbar__right {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.topbar__title,
.workspace__title,
.dashboard-panel__title {
    font-weight: 700;
}

.topbar__workspace {
    display: grid;
    gap: 0.3rem;
}

.topbar__eyebrow {
    display: flex;
    align-items: center;
}

.topbar__eyebrow-pill,
.topbar__meta-pill,
.search-box__shortcut {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
}

.topbar__eyebrow-pill {
    padding: 0.28rem 0.62rem;
    color: #dbeafe;
    background: rgba(37, 99, 235, 0.22);
    border: 1px solid rgba(96, 165, 250, 0.22);
}

.topbar__title-wrap {
    display: grid;
    gap: 0.18rem;
}

.topbar__title {
    font-size: 1.18rem;
    letter-spacing: -0.02em;
}

.topbar__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
}

.topbar__meta-pill {
    padding: 0.26rem 0.58rem;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    padding: 0.6rem 0.8rem;
    min-height: 64px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.search-box__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.24), rgba(6, 182, 212, 0.2));
    color: #dbeafe;
    flex: 0 0 auto;
}

.search-box__input-wrap {
    display: grid;
    gap: 0.16rem;
    min-width: 0;
    flex: 1;
}

.search-box__label {
    color: rgba(226, 232, 240, 0.62);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.search-box input {
    background: transparent;
    color: white;
    padding: 0;
    font-size: 0.98rem;
}

.search-box input::placeholder {
    color: rgba(226, 232, 240, 0.48);
}

.search-box__shortcut {
    padding: 0.32rem 0.55rem;
    color: rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.notification-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--px-red);
    border: 2px solid #fff;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.14);
}

.topbar__toggle,
.topbar__icon-btn,
.topbar__quick-btn,
.topbar__logout-btn {
    border-radius: 14px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.topbar__toggle {
    width: 42px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: white;
}

.topbar__toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.topbar__icon-btn {
    width: 42px;
    justify-content: center;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    color: #0f172a;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.topbar__quick-btn {
    padding: 0 1rem;
    border: 1px solid rgba(59, 130, 246, 0.16);
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: white;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.26);
}

.topbar__quick-btn:hover {
    color: white;
    filter: brightness(1.03);
}

.topbar__quick-menu {
    position: relative;
    margin: 0;
}

.topbar__quick-menu summary {
    list-style: none;
}

.topbar__quick-menu summary::-webkit-details-marker {
    display: none;
}

.topbar__quick-caret {
    font-size: 0.78rem;
    transition: transform 0.2s ease;
}

.topbar__quick-menu[open] .topbar__quick-caret {
    transform: rotate(180deg);
}

.topbar__quick-dropdown {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    width: min(440px, 92vw);
    padding: 1rem;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.22);
    color: #0f172a;
    z-index: 40;
}

.topbar__quick-dropdown-head {
    margin-bottom: 0.9rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.topbar__quick-dropdown-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: #0f172a;
}

.topbar__quick-dropdown-subtitle {
    margin-top: 0.2rem;
    color: #64748b;
    font-size: 0.82rem;
}

.topbar__quick-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.topbar__quick-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
    border-radius: 18px;
    text-decoration: none;
    background: rgba(248, 250, 252, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: #0f172a;
    transition: all 0.18s ease;
}

.topbar__quick-item:hover {
    color: #0f172a;
    transform: translateY(-1px);
    border-color: rgba(59, 130, 246, 0.24);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
}

.topbar__quick-item-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex: 0 0 auto;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.topbar__quick-item-label {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.3;
}

.topbar__quick-item-icon--blue {
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
}

.topbar__quick-item-icon--green {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.topbar__quick-item-icon--orange {
    background: linear-gradient(135deg, #ea580c, #f59e0b);
}

.topbar__quick-item-icon--violet {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.topbar__quick-item-icon--sky {
    background: linear-gradient(135deg, #0284c7, #38bdf8);
}

.topbar__logout-btn {
    padding: 0 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: white;
}

.topbar__logout-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.kpi-card,
.dashboard-panel {
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
}

.kpi-card__title {
    color: var(--px-slate-500);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.kpi-card__value {
    font-size: 2rem;
    font-weight: 700;
}

.kpi-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.12);
    color: var(--px-blue-700);
}

.placeholder-widget {
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fafc, #eef2ff);
    border: 1px solid rgba(148, 163, 184, 0.18);
    padding: 1rem;
}

.placeholder-widget__chart {
    height: 96px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.02));
}

.dashboard-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.dashboard-panel__title {
    margin-bottom: 0.2rem;
    font-size: 1.05rem;
}

.dashboard-summary-strip {
    border-radius: 18px;
    padding: 1rem 1.15rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.98));
    color: #fff;
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.dashboard-summary-strip__title {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.58);
}

.dashboard-summary-strip__value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
}

.dashboard-summary-strip__meta {
    color: rgba(255, 255, 255, 0.72);
}

.dashboard-alert-strip {
    border-left: 4px solid var(--px-red);
    background: rgba(220, 38, 38, 0.08);
    border-radius: 16px;
}

.dashboard-alert-card {
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: #fff;
}

.dashboard-empty {
    border-radius: 16px;
    border: 1px dashed rgba(100, 116, 139, 0.28);
    background: rgba(248, 250, 252, 0.86);
    padding: 1rem;
    color: var(--px-slate-500);
}

.dashboard-link-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 14px;
    padding: 0.85rem 1rem;
    text-decoration: none;
    background: linear-gradient(180deg, #f8fafc, #eef2ff);
    border: 1px solid rgba(148, 163, 184, 0.16);
    color: #0f172a;
}

.dashboard-link-card:hover {
    border-color: rgba(29, 78, 216, 0.25);
    color: #0f172a;
}

.dashboard-link-card i {
    color: var(--px-blue-700);
}

.dashboard-mini-list {
    display: grid;
    gap: 0.75rem;
}

.dashboard-mini-list__item {
    border-radius: 14px;
    background: rgba(248, 250, 252, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.16);
    padding: 0.85rem 1rem;
}

.dashboard-mini-list__label {
    color: var(--px-slate-500);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-mini-list__value {
    font-size: 1.2rem;
    font-weight: 700;
}

.chart-card {
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
    padding: 1rem;
    min-height: 290px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.chart-card__header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.chart-card__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.4rem;
}

.chart-card__body {
    position: relative;
    min-height: 220px;
}

.chart-card canvas {
    width: 100% !important;
    height: 220px !important;
}

.chart-card__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 1rem;
    border-radius: 0.9rem;
    border: 1px dashed rgba(148, 163, 184, 0.32);
    background: #f8fafc;
    color: var(--px-slate-500);
    text-align: center;
}

.kpi-card__sparkline {
    height: 54px;
}

.kpi-card__sparkline canvas {
    width: 100% !important;
    height: 54px !important;
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.18), transparent 22%),
        radial-gradient(circle at right bottom, rgba(34, 197, 94, 0.14), transparent 24%),
        linear-gradient(135deg, #081120 0%, #0f172a 48%, #12324a 100%);
}

.auth-shell__panel {
    width: min(1120px, calc(100vw - 2rem));
    border-radius: 30px;
}

.auth-login-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 34px 60px rgba(15, 23, 42, 0.28);
}

.auth-login-panel__visual {
    padding: 2.3rem;
    color: #f8fbff;
    display: grid;
    align-content: space-between;
    gap: 2rem;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 24%),
        radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.2), transparent 30%),
        linear-gradient(160deg, #0f172a 0%, #102a43 44%, #1d4ed8 100%);
}

.auth-login-panel__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #dbeafe;
    font-size: 0.8rem;
    font-weight: 700;
}

.auth-login-panel__title {
    font-size: 2.35rem;
    line-height: 1.04;
    font-weight: 800;
    margin: 1.2rem 0 0.9rem;
    max-width: 620px;
}

.auth-login-panel__subtitle {
    color: rgba(248, 251, 255, 0.78);
    font-size: 1rem;
    max-width: 620px;
    margin: 0;
}

.auth-login-panel__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.auth-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.72rem 0.95rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f8fbff;
    font-weight: 600;
}

.auth-login-panel__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.auth-login-panel__credit {
    display: grid;
    gap: 0.28rem;
    color: rgba(248, 251, 255, 0.72);
    font-size: 0.92rem;
}

.auth-login-panel__credit-line strong {
    color: #ffffff;
}

.auth-mini-stat {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.auth-mini-stat__label {
    color: rgba(248, 251, 255, 0.66);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.76rem;
    font-weight: 700;
}

.auth-mini-stat__value {
    font-size: 1.12rem;
    font-weight: 800;
    margin-top: 0.35rem;
}

.auth-login-panel__form-wrap {
    padding: 2.2rem;
    display: grid;
    align-content: center;
    gap: 1.2rem;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.auth-login-panel__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.auth-login-panel__form-title {
    color: #102a43;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
}

.auth-login-panel__form-subtitle {
    color: #627d98;
    margin: 0.3rem 0 0;
}

.auth-form-label {
    color: #102a43;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.auth-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem;
    min-height: 62px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    background: #fff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

.auth-input-wrap > i {
    color: #1d4ed8;
    font-size: 1rem;
}

.auth-form-control {
    border: none;
    background: transparent;
    padding-left: 0;
    padding-right: 0;
    color: #102a43;
}

.auth-form-control:focus {
    box-shadow: none;
}

.auth-demo-box {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.auth-demo-box__title {
    color: #1d4ed8;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.35rem;
}

.auth-demo-box__copy {
    color: #486581;
    line-height: 1.6;
}

.auth-signin-btn {
    min-height: 58px;
    border: none;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: white;
    font-weight: 800;
    box-shadow: 0 18px 28px rgba(37, 99, 235, 0.26);
}

.auth-signin-btn:hover {
    color: white;
    filter: brightness(1.03);
}

.auth-login-panel__footer {
    padding-top: 0.85rem;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    display: grid;
    gap: 0.25rem;
}

.auth-login-panel__footer-line {
    color: #627d98;
    font-size: 0.84rem;
}

@media (max-width: 992px) {
    .sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 20;
        transform: translateX(-100%);
        box-shadow: 0 24px 48px rgba(15, 23, 42, 0.28);
    }

    .sidebar.is-open {
        transform: translateX(0);
    }

    .topbar {
        grid-template-columns: 1fr;
    }

    .topbar__right {
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .topbar__quick-dropdown {
        right: auto;
        left: 0;
        width: min(100vw - 2rem, 420px);
    }

    .topbar__quick-dropdown-grid {
        grid-template-columns: 1fr;
    }

    .search-box__shortcut {
        display: none;
    }

    .auth-login-panel {
        grid-template-columns: 1fr;
    }

    .auth-login-panel__visual,
    .auth-login-panel__form-wrap {
        padding: 1.5rem;
    }

    .auth-login-panel__title {
        font-size: 1.8rem;
    }

    .auth-login-panel__stats {
        grid-template-columns: 1fr;
    }
}
