        :root {
            --bg: #07111d;
            --bg-soft: #0f1b2a;
            --panel: rgba(13, 23, 36, 0.84);
            --panel-strong: rgba(18, 31, 48, 0.96);
            --line: rgba(154, 180, 212, 0.16);
            --text: #f5f7fb;
            --muted: rgba(245, 247, 251, 0.64);
            --accent: #f36f45;
            --accent-soft: rgba(243, 111, 69, 0.18);
            --ok: #87d7b2;
            --danger: #ff8d8d;
            --shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            min-height: 100vh;
            font-family: "SF Pro Display", "Segoe UI", sans-serif;
            color: var(--text);
            background:
                radial-gradient(circle at 0% 0%, rgba(243, 111, 69, 0.22), transparent 28%),
                radial-gradient(circle at 100% 0%, rgba(83, 139, 255, 0.16), transparent 24%),
                linear-gradient(180deg, #08111c 0%, var(--bg) 100%);
        }

        button,
        input,
        textarea,
        select {
            font: inherit;
        }

        .shell {
            min-height: 100vh;
            padding: 18px;
        }

        .hidden {
            display: none !important;
        }

        .login-layout {
            min-height: calc(100vh - 56px);
            display: grid;
            grid-template-columns: minmax(320px, 1.15fr) minmax(320px, 460px);
            gap: 16px;
            align-items: stretch;
        }

        .hero,
        .panel {
            border: 1px solid var(--line);
            border-radius: 22px;
            box-shadow: var(--shadow);
            backdrop-filter: blur(18px);
        }

        .hero {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 26px;
            background:
                linear-gradient(155deg, rgba(243, 111, 69, 0.16), transparent 38%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
            position: relative;
            overflow: hidden;
        }

        .hero::before,
        .hero::after {
            content: "";
            position: absolute;
            border-radius: 999px;
            pointer-events: none;
        }

        .hero::before {
            width: 300px;
            height: 300px;
            top: -120px;
            right: -60px;
            background: radial-gradient(circle, rgba(243, 111, 69, 0.26), transparent 70%);
        }

        .hero::after {
            width: 360px;
            height: 360px;
            left: -100px;
            bottom: -160px;
            background: radial-gradient(circle, rgba(103, 161, 255, 0.18), transparent 70%);
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            padding: 8px 10px;
            border: 1px solid rgba(243, 111, 69, 0.28);
            border-radius: 999px;
            background: rgba(243, 111, 69, 0.08);
            color: #ffd8cb;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            font-size: 10px;
            font-weight: 700;
        }

        .hero h1 {
            margin: 18px 0 10px;
            max-width: 12ch;
            font-size: clamp(24px, 3vw, 38px);
            line-height: 0.92;
        }

        .hero p {
            margin: 0;
            max-width: 52ch;
            color: var(--muted);
            font-size: 12px;
            line-height: 1.6;
        }

        .panel {
            padding: 22px 20px;
            background: var(--panel);
        }

        .panel h2 {
            margin: 0 0 10px;
            font-size: 20px;
            line-height: 1;
        }

        .panel p {
            margin: 0 0 16px;
            color: var(--muted);
            line-height: 1.6;
            font-size: 12px;
        }

        .field {
            display: grid;
            gap: 8px;
            margin-bottom: 12px;
        }

        .field-wide {
            grid-column: 1 / -1;
        }

        .field label {
            font-size: 11px;
            font-weight: 700;
            color: rgba(245, 247, 251, 0.72);
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .field input,
        .field textarea,
        .field select {
            width: 100%;
            padding: 10px 12px;
            min-height: 42px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            outline: none;
            background: rgba(255, 255, 255, 0.04);
            color: var(--text);
            font-size: 13px;
        }

        .field textarea {
            min-height: 110px;
            resize: vertical;
        }

        .field input:focus,
        .field textarea:focus,
        .field select:focus {
            border-color: rgba(243, 111, 69, 0.5);
            box-shadow: 0 0 0 4px rgba(243, 111, 69, 0.10);
        }

        .button,
        .ghost-button,
        .danger-button {
            border: 0;
            cursor: pointer;
            transition: transform 0.16s ease, opacity 0.16s ease, background 0.16s ease;
        }

        .button:hover,
        .ghost-button:hover,
        .danger-button:hover {
            transform: translateY(-1px);
        }

        .button {
            min-height: 42px;
            padding: 10px 14px;
            border-radius: 12px;
            background: linear-gradient(180deg, #ff8a61 0%, var(--accent) 100%);
            color: white;
            font-weight: 700;
            font-size: 13px;
        }

        .ghost-button {
            min-height: 42px;
            padding: 10px 12px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.06);
            color: var(--text);
            font-weight: 600;
            font-size: 12px;
        }

        .danger-button {
            min-height: 42px;
            padding: 10px 12px;
            border-radius: 10px;
            background: rgba(255, 141, 141, 0.12);
            color: var(--danger);
            font-weight: 700;
            font-size: 12px;
        }

        .login-actions {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 8px;
            flex-wrap: wrap;
        }

        .panel-stack {
            display: grid;
            gap: 14px;
        }

        .panel-note {
            padding: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.03);
            color: var(--muted);
            font-size: 12px;
            line-height: 1.6;
        }

        .panel-note strong {
            color: var(--text);
        }

        .message {
            min-height: 22px;
            margin-top: 12px;
            font-size: 12px;
            color: var(--muted);
        }

        .message.error {
            color: var(--danger);
        }

        .message.ok {
            color: var(--ok);
        }

        .dashboard {
            display: grid;
            gap: 16px;
        }

        .dashboard-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 4px 2px 0;
        }

        .menu-button {
            padding: 10px 14px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.04);
            color: var(--muted);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.02em;
            cursor: pointer;
            transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
        }

        .menu-button:hover {
            transform: translateY(-1px);
            color: var(--text);
        }

        .menu-button.active {
            color: white;
            border-color: rgba(243, 111, 69, 0.28);
            background: linear-gradient(180deg, #ff8a61 0%, var(--accent) 100%);
        }

        .dashboard-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 18px 20px;
            border: 1px solid var(--line);
            border-radius: 20px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
            box-shadow: var(--shadow);
        }

        .dashboard-title h1 {
            margin: 0 0 8px;
            font-size: clamp(20px, 2.8vw, 30px);
            line-height: 0.96;
        }

        .dashboard-title p {
            margin: 0;
            color: var(--muted);
            font-size: 12px;
        }

        .dashboard-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .pill {
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: var(--muted);
            font-size: 11px;
            font-weight: 700;
        }

        .pill.audit-pill {
            color: #f8fafc;
        }

        .pill.audit-pill-create {
            background: rgba(84, 212, 141, 0.16);
            border-color: rgba(84, 212, 141, 0.34);
            color: #aef0c8;
        }

        .pill.audit-pill-update {
            background: rgba(255, 184, 77, 0.16);
            border-color: rgba(255, 184, 77, 0.34);
            color: #ffd48b;
        }

        .pill.audit-pill-delete {
            background: rgba(255, 107, 107, 0.16);
            border-color: rgba(255, 107, 107, 0.34);
            color: #ffb0b0;
        }

        .pill.audit-pill-auth {
            background: rgba(99, 179, 237, 0.16);
            border-color: rgba(99, 179, 237, 0.34);
            color: #abd9ff;
        }

        .pill.audit-pill-error {
            background: rgba(255, 82, 82, 0.18);
            border-color: rgba(255, 82, 82, 0.42);
            color: #ffb3b3;
        }

        .pill.audit-pill-neutral {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(255, 255, 255, 0.10);
            color: #dde4ee;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }

        .card {
            display: grid;
            gap: 14px;
            padding: 18px;
            border: 1px solid var(--line);
            border-radius: 18px;
            background: var(--panel-strong);
            box-shadow: var(--shadow);
        }

        .card-wide {
            grid-column: 1 / -1;
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 8px;
        }

        .card-header h3 {
            margin: 0 0 6px;
            font-size: 15px;
        }

        .card-header p {
            margin: 0;
            color: var(--muted);
            font-size: 11px;
            line-height: 1.5;
        }

        .chat-shell {
            display: grid;
            gap: 14px;
        }

        .chat-toolbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .chat-hint {
            color: var(--muted);
            font-size: 11px;
            line-height: 1.5;
        }

        .chat-feed {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            gap: 10px;
            max-height: 420px;
            overflow-y: auto;
            padding: 14px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
                rgba(7, 17, 29, 0.72);
            scroll-behavior: smooth;
        }

        .chat-empty {
            padding: 28px 14px;
            text-align: center;
            color: var(--muted);
            font-size: 12px;
            line-height: 1.6;
        }

        .chat-row {
            display: flex;
        }

        .chat-row.own {
            justify-content: flex-end;
        }

        .chat-bubble {
            max-width: min(100%, 620px);
            display: grid;
            gap: 6px;
            padding: 12px 14px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .chat-row.own .chat-bubble {
            background: linear-gradient(180deg, #ff8a61 0%, var(--accent) 100%);
            color: white;
            border-color: rgba(255, 255, 255, 0.12);
        }

        .chat-meta {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            align-items: center;
            font-size: 11px;
            color: var(--muted);
        }

        .chat-row.own .chat-meta {
            color: rgba(255, 255, 255, 0.78);
        }

        .chat-author {
            font-weight: 700;
            color: var(--text);
        }

        .chat-row.own .chat-author {
            color: white;
        }

        .chat-text {
            white-space: pre-wrap;
            word-break: break-word;
            font-size: 13px;
            line-height: 1.55;
        }

        .chat-type {
            width: fit-content;
            padding: 4px 8px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            color: var(--muted);
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .chat-row.own .chat-type {
            background: rgba(255, 255, 255, 0.16);
            color: rgba(255, 255, 255, 0.84);
        }

        .chat-composer {
            display: grid;
            gap: 10px;
        }

        .chat-composer textarea {
            min-height: 96px;
        }

        .form-grid {
            display: grid;
            gap: 8px;
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .form-grid.single {
            grid-template-columns: minmax(0, 1fr);
        }

        .list {
            display: grid;
            gap: 8px;
        }

        .row {
            display: grid;
            gap: 8px;
            padding: 10px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.03);
        }

        .row-top {
            display: flex;
            justify-content: space-between;
            gap: 8px;
            align-items: center;
        }

        .row-title {
            font-size: 13px;
            font-weight: 700;
        }

        .row-subtitle {
            color: var(--muted);
            font-size: 10px;
            line-height: 1.5;
        }

        .row-actions {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }

        .audit-toolbar {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 10px;
            flex-wrap: wrap;
        }

        .audit-date-input {
            min-width: 190px;
        }

        .audit-list {
            display: grid;
            gap: 10px;
        }

        .audit-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .audit-summary {
            font-size: 13px;
            line-height: 1.6;
            color: var(--text);
        }

        .audit-details {
            display: grid;
            gap: 6px;
            margin-top: 2px;
        }

        .audit-detail-line {
            padding: 8px 10px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.03);
            color: var(--muted);
            font-size: 11px;
            line-height: 1.55;
        }

        .audit-payload {
            margin: 0;
            padding: 12px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(255, 255, 255, 0.025);
            color: var(--muted);
            font-size: 11px;
            line-height: 1.55;
            white-space: pre-wrap;
            word-break: break-word;
            overflow-x: auto;
        }

        .stack {
            display: grid;
            gap: 10px;
        }

        .compact-list {
            display: grid;
            gap: 8px;
            max-height: 280px;
            overflow-y: auto;
            padding-right: 4px;
        }

        .status-inline {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .inline-form {
            display: grid;
            gap: 8px;
            margin-top: 4px;
        }

        .inline-form .form-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .product-search {
            display: grid;
            gap: 8px;
        }

        .product-search-head {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .product-search-head input {
            flex: 1;
        }

        .product-search-meta {
            min-height: 18px;
            color: var(--muted);
            font-size: 11px;
            line-height: 1.5;
        }

        .product-search-meta.error {
            color: var(--danger);
        }

        .product-search-results {
            display: grid;
            gap: 8px;
            max-height: 220px;
            overflow-y: auto;
        }

        .product-search-item {
            width: 100%;
            display: grid;
            gap: 4px;
            padding: 12px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.04);
            color: var(--text);
            text-align: left;
        }

        .product-search-item:hover {
            border-color: rgba(243, 111, 69, 0.34);
            background: rgba(243, 111, 69, 0.10);
        }

        .product-search-primary {
            font-size: 13px;
            font-weight: 700;
        }

        .product-search-secondary {
            color: var(--muted);
            font-size: 11px;
            line-height: 1.45;
        }

        .product-search-summary {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border: 1px solid rgba(243, 111, 69, 0.18);
            border-radius: 14px;
            background: rgba(243, 111, 69, 0.08);
        }

        .product-search-summary strong {
            display: block;
            margin-bottom: 2px;
            font-size: 12px;
        }

        .product-search-summary span {
            color: var(--muted);
            font-size: 11px;
        }

        .empty {
            padding: 12px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.03);
            color: var(--muted);
            text-align: center;
            font-size: 11px;
        }

        .filters-row {
            display: grid;
            gap: 8px;
            grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(150px, 1fr)) auto;
            align-items: end;
        }

        .segmented {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .segmented-button {
            min-height: 42px;
            padding: 10px 14px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.04);
            color: var(--muted);
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
        }

        .choice-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .choice-button {
            min-height: 42px;
            padding: 10px 14px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.04);
            color: var(--text);
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
        }

        .choice-button:hover {
            transform: translateY(-1px);
            border-color: rgba(243, 111, 69, 0.3);
        }

        .choice-button.active {
            border-color: rgba(243, 111, 69, 0.34);
            background: linear-gradient(180deg, rgba(255, 138, 97, 0.34) 0%, rgba(243, 111, 69, 0.2) 100%);
            color: white;
        }

        .choice-button.is-clear {
            color: var(--muted);
        }

        .section-banner {
            display: grid;
            gap: 12px;
            padding: 16px;
            border: 1px solid rgba(243, 111, 69, 0.16);
            border-radius: 18px;
            background:
                linear-gradient(155deg, rgba(243, 111, 69, 0.14), transparent 42%),
                rgba(255, 255, 255, 0.03);
        }

        .section-banner p {
            margin: 0;
            color: var(--muted);
            font-size: 12px;
            line-height: 1.6;
        }

        .split-panels {
            display: grid;
            gap: 12px;
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .import-panel {
            display: grid;
            gap: 12px;
            padding: 14px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.03);
        }

        .import-panel h4,
        .status-group h4 {
            margin: 0;
            font-size: 15px;
        }

        .import-panel p,
        .status-group p {
            margin: 0;
            color: var(--muted);
            font-size: 11px;
            line-height: 1.6;
        }

        .import-preview {
            display: grid;
            gap: 8px;
            max-height: 280px;
            overflow-y: auto;
        }

        .import-preview-row {
            display: grid;
            gap: 6px;
            padding: 10px 12px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.025);
        }

        .import-preview-row strong {
            font-size: 12px;
        }

        .import-preview-meta {
            color: var(--muted);
            font-size: 11px;
            line-height: 1.5;
        }

        .import-preview-row.matched {
            border-color: rgba(135, 215, 178, 0.22);
            background: rgba(135, 215, 178, 0.08);
        }

        .import-preview-row.missing {
            border-color: rgba(255, 141, 141, 0.18);
            background: rgba(255, 141, 141, 0.07);
        }

        .status-groups {
            display: grid;
            gap: 10px;
        }

        .status-group {
            display: grid;
            gap: 10px;
            padding: 14px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.03);
        }

        .status-chip-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .status-chip {
            display: inline-flex;
            align-items: center;
            min-height: 36px;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: var(--text);
            font-size: 12px;
            font-weight: 600;
        }

        .segmented-button.active {
            color: white;
            border-color: rgba(243, 111, 69, 0.28);
            background: linear-gradient(180deg, #ff8a61 0%, var(--accent) 100%);
        }

        .orders-table-wrap {
            overflow-x: auto;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.02);
        }

        .orders-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 980px;
        }

        .orders-table th,
        .orders-table td {
            padding: 12px 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            text-align: left;
            vertical-align: top;
        }

        .orders-table th {
            color: rgba(245, 247, 251, 0.72);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            background: rgba(255, 255, 255, 0.03);
        }

        .orders-table tbody tr:hover td {
            background: rgba(255, 255, 255, 0.02);
        }

        .orders-table tr:last-child td,
        .orders-table tr:last-child th {
            border-bottom: 0;
        }

        .orders-table select,
        .orders-table input,
        .orders-table textarea {
            width: 100%;
        }

        .table-title {
            font-size: 13px;
            font-weight: 700;
        }

        .table-subtitle {
            margin-top: 4px;
            color: var(--muted);
            font-size: 11px;
            line-height: 1.5;
        }

        .table-cell-stack {
            display: grid;
            gap: 6px;
        }

        .orders-editor-row td {
            padding: 0;
            background: rgba(255, 255, 255, 0.015);
        }

        .order-editor {
            display: grid;
            gap: 14px;
            padding: 16px;
        }

        .order-editor-items {
            display: grid;
            gap: 10px;
        }

        .order-editor-item {
            display: grid;
            gap: 10px;
            padding: 12px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.03);
        }

        .order-editor-item-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
        }

        .order-editor-grid {
            display: grid;
            gap: 8px;
            grid-template-columns: repeat(6, minmax(0, 1fr));
        }

        .order-editor-grid .field[data-span="2"] {
            grid-column: span 2;
        }

        .order-editor-grid .field[data-span="3"] {
            grid-column: span 3;
        }

        .pagination-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .pagination-meta {
            color: var(--muted);
            font-size: 11px;
        }

        .contact-grid {
            display: grid;
            gap: 8px;
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .contact-card {
            display: grid;
            gap: 8px;
            padding: 12px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.03);
        }

        .contact-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        @media (max-width: 1100px) {
            .login-layout,
            .grid {
                grid-template-columns: 1fr;
            }

            .split-panels,
            .filters-row,
            .order-editor-grid,
            .contact-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 720px) {
            .shell {
                padding: 12px;
            }

            .hero,
            .panel,
            .card,
            .dashboard-header {
                padding: 16px;
                border-radius: 16px;
            }

            .split-panels,
            .form-grid,
            .inline-form .form-grid,
            .filters-row,
            .order-editor-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .dashboard-header,
            .row-top,
            .order-editor-item-head,
            .pagination-bar {
                align-items: flex-start;
                flex-direction: column;
            }
        }
