:root {
  --bg: #0b1020;
  --bg-elev: #131a2e;
  --bg-elev-2: #1a2340;
  --line: #2b3558;
  --text: #eaf0ff;
  --muted: #9ba8cc;
  --primary: #4da3ff;
  --primary-2: #7dc3ff;
  --success: #3ecf8e;
  --danger: #ff6b8a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  background: radial-gradient(1200px 800px at 5% -10%, #1e2b55, var(--bg) 45%);
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
}

.app-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

.app-main {
  width: 100%;
}

.app-main-content {
  max-width: 100%;
  padding: 76px 12px 92px;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
}

.orb-1 {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -60px;
  background: #3f7bff;
}

.orb-2 {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -80px;
  background: #3ecf8e;
}

.mobile-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1350;
  height: 60px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(76, 102, 168, 0.55);
  background: rgba(10, 16, 34, 0.9);
  backdrop-filter: blur(10px);
}

.mobile-topbar-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(90, 123, 198, 0.68);
  border-radius: 12px;
  background: rgba(15, 24, 48, 0.94);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #d7e6ff;
  cursor: pointer;
}

.mobile-topbar-toggle-icon,
.mobile-topbar-toggle-icon::before,
.mobile-topbar-toggle-icon::after {
  content: "";
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}

.mobile-topbar-toggle-icon {
  position: relative;
}

.mobile-topbar-toggle-icon::before {
  position: absolute;
  top: -5px;
  left: 0;
}

.mobile-topbar-toggle-icon::after {
  position: absolute;
  top: 5px;
  left: 0;
}

.mobile-topbar-brand {
  color: #f2f6ff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mobile-topbar-brand:hover {
  text-decoration: none;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1290;
  border: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  background: rgba(7, 11, 22, 0.56);
  transition: opacity 0.2s ease;
}

.app-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1400;
  width: min(320px, 88vw);
  transform: translateX(-105%);
  transition: transform 0.22s ease;
}

.app-sidebar-inner {
  height: 100%;
  padding: 12px;
  border-right: 1px solid rgba(67, 90, 150, 0.62);
  background: linear-gradient(180deg, rgba(20, 31, 58, 0.98), rgba(10, 15, 30, 0.98));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}

.app-sidebar-brand-wrap {
  padding: 4px 2px 2px;
}

.app-sidebar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #eef4ff;
}

.app-sidebar-brand:hover {
  text-decoration: none;
}

.app-sidebar-brand-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(180deg, #2f77de, #265cb4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.app-sidebar-brand-text {
  font-size: 16px;
  font-weight: 700;
}

.app-nav {
  display: grid;
  gap: 6px;
}

.app-nav-group-title {
  margin: 6px 4px 2px;
  color: #afc2eb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-nav-link {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(88, 120, 198, 0.46);
  background: rgba(13, 21, 42, 0.85);
  color: #dde8ff;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.app-nav-link:hover {
  text-decoration: none;
  border-color: rgba(126, 193, 255, 0.92);
  background: rgba(34, 52, 98, 0.72);
}

.app-nav-link:focus-visible {
  outline: 2px solid rgba(137, 196, 255, 0.95);
  outline-offset: 1px;
}

.app-nav-link.is-active {
  border-color: rgba(146, 210, 255, 0.88);
  background: linear-gradient(180deg, rgba(58, 108, 198, 0.9), rgba(34, 71, 143, 0.95));
  color: #f6f9ff;
}

.app-sidebar-footer {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(56, 76, 128, 0.7);
}

.app-sidebar-footer-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(88, 120, 198, 0.46);
  background: rgba(13, 21, 42, 0.85);
  color: #dde8ff;
  font-size: 14px;
  font-weight: 600;
}

.app-sidebar-footer-link:hover {
  text-decoration: none;
  border-color: rgba(126, 193, 255, 0.92);
  background: rgba(34, 52, 98, 0.72);
}

.app-sidebar-footer-link.is-active {
  border-color: rgba(146, 210, 255, 0.88);
  background: linear-gradient(180deg, rgba(58, 108, 198, 0.9), rgba(34, 71, 143, 0.95));
  color: #f6f9ff;
}

.app-sidebar-logout {
  width: 100%;
  min-height: 44px;
}

.app-shell.nav-open .mobile-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.app-shell.nav-open .app-sidebar {
  transform: translateX(0);
}

html.app-nav-lock,
html.app-nav-lock body {
  overflow: hidden;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.card {
  background: linear-gradient(180deg, rgba(26, 35, 64, 0.9), rgba(19, 26, 46, 0.92));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.metric-label {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 6px;
}

.metric-value {
  font-size: 26px;
  font-weight: 700;
}

.subtitle {
  margin: 0;
  color: var(--muted);
}

h1,
h2 {
  margin: 0 0 10px;
}

a {
  color: var(--primary-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.btn {
  border: 1px solid var(--line);
  color: var(--text);
  background: #1c284b;
  border-radius: 10px;
  padding: 9px 14px;
  cursor: pointer;
}

.btn-primary {
  border-color: #2e6bca;
  background: linear-gradient(180deg, #2f77de, #255fb5);
}

.btn-danger {
  border-color: #7a2940;
  background: linear-gradient(180deg, #96314e, #7a2740);
}

.form-field {
  display: block;
  width: 100%;
  margin-bottom: 12px;
}

.form-field input,
.form-field select,
input[type="date"],
input[type="number"],
select {
  width: 100%;
  border: 1px solid var(--line);
  background: #0f1630;
  color: var(--text);
  padding: 11px 12px;
  border-radius: 10px;
}

.table-card {
  padding: 0;
  overflow: hidden;
}

.table-wrap {
  overflow: auto;
  max-width: 100%;
}

table {
  width: 100%;
}

.finance-group-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: separate;
  border-spacing: 0;
}

.finance-group-table th,
.finance-group-table td {
  height: 44px;
  border-bottom: 1px solid rgba(43, 53, 88, 0.75);
  padding: 9px 12px;
  font-size: 13px;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.finance-group-table th {
  position: sticky;
  top: 0;
  z-index: 3;
  color: #b9c6e8;
  background: rgba(15, 22, 48, 0.96);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.finance-group-table tbody tr:hover td {
  background: rgba(77, 163, 255, 0.08);
}

.finance-group-table td:nth-child(7),
.finance-group-table th:nth-child(7) {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.resizable-table {
  table-layout: fixed;
}

.resizable-table th,
.resizable-table td {
  overflow: hidden;
  text-overflow: ellipsis;
}

.th-label {
  display: block;
  padding-right: 12px;
}

.col-resizer {
  position: absolute;
  top: 0;
  right: -4px;
  width: 9px;
  height: 100%;
  cursor: col-resize;
  user-select: none;
  touch-action: none;
}

.col-resizer::after {
  content: "";
  position: absolute;
  top: 25%;
  right: 4px;
  width: 1px;
  height: 50%;
  background: rgba(185, 198, 232, 0.28);
}

.col-resizer:hover::after {
  background: var(--primary-2);
}

.is-resizing-table {
  cursor: col-resize;
  user-select: none;
}

.badge {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid #315585;
  color: #b8d6ff;
}

.finance-group-row td {
  background: rgba(19, 26, 46, 0.72);
  font-weight: 600;
}

.finance-group-completed td:first-child {
  box-shadow: inset 3px 0 0 var(--success);
}

.finance-group-progress td:first-child {
  box-shadow: inset 3px 0 0 #ffb347;
}

.finance-group-return td:first-child {
  box-shadow: inset 3px 0 0 var(--danger);
}

.finance-group-completed td:nth-child(2) {
  color: var(--success);
}

.finance-group-progress td:nth-child(2) {
  color: #ffb347;
}

.finance-group-return td:nth-child(2) {
  color: var(--danger);
}

.finance-item-row td {
  background: rgba(11, 16, 32, 0.62);
  color: #d5ddf3;
  font-weight: 400;
}

.finance-item-crossdock td {
  background: rgba(88, 146, 228, 0.34);
}

.finance-item-row td:nth-child(3) {
  color: var(--muted);
}

.orders-order-total-cell {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.orders-row-cancelled td:first-child {
  box-shadow: inset 3px 0 0 var(--danger);
}

.orders-row-cancelled td:nth-child(2) {
  color: var(--danger);
}

.finance-toggle-cell {
  text-align: center;
}

.finance-toggle-btn {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(125, 195, 255, 0.25);
  border-radius: 8px;
  background: rgba(77, 163, 255, 0.08);
  color: var(--text);
  line-height: 1;
  cursor: pointer;
}

.finance-toggle-btn:hover {
  border-color: rgba(125, 195, 255, 0.65);
  background: rgba(77, 163, 255, 0.18);
}

.finance-item-date {
  color: var(--muted);
  font-size: 12px;
}

.ops-loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 24, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.ops-loading-overlay.active {
  display: flex;
}

.ops-loading-card {
  background: linear-gradient(180deg, rgba(26, 35, 64, 0.98), rgba(19, 26, 46, 0.98));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.ops-spinner {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(125, 195, 255, 0.3);
  border-top-color: #7dc3ff;
  animation: ops-spin 0.8s linear infinite;
}

@keyframes ops-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.errorlist {
  color: var(--danger);
}

.tech-monitor-tab {
  border: 1px solid rgba(43, 53, 88, 0.95);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(10, 14, 30, 0.85);
}

.tech-monitor-fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.tech-monitor-toggle {
  width: 100%;
  border: 0;
  padding: 7px 12px;
  text-align: left;
  color: #d5ddf3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #2f77de, #244f96);
  cursor: pointer;
}

.tech-monitor-toggle:hover {
  filter: brightness(1.07);
}

.tech-monitor-panel {
  border-top: 1px solid rgba(43, 53, 88, 0.75);
}

.tech-monitor-panel.is-collapsed {
  display: none;
}

.tech-monitor-marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
}

.tech-monitor-track {
  display: inline-block;
  padding-left: 100%;
  animation: tech-monitor-scroll 38s linear infinite;
}

.tech-monitor-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 26px;
  font-size: 12px;
}

.tech-monitor-label {
  color: #9fb0d8;
}

.tech-monitor-status {
  font-weight: 700;
}

.tech-monitor-time {
  color: #c3cee9;
  font-variant-numeric: tabular-nums;
}

.status-ok {
  color: #22c55e;
}

.status-running {
  color: #f59e0b;
}

.status-error {
  color: #ef4444;
}

.status-no-data {
  color: #94a3b8;
}

.ops-schedule-card h3 {
  margin: 0 0 10px;
  color: #bcd0f5;
  font-size: 15px;
}

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

.ops-schedule-section {
  border: 1px solid rgba(43, 53, 88, 0.8);
  border-radius: 12px;
  padding: 12px;
  background: rgba(15, 22, 48, 0.52);
}

.ops-schedule-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) 90px 70px 38px 38px 110px;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.ops-schedule-row:last-child {
  margin-bottom: 0;
}

.ops-schedule-name {
  font-size: 13px;
}

.ops-schedule-select {
  margin: 0;
  min-width: 0;
  padding: 7px 8px;
}

.ops-schedule-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
}

.ops-mini-run {
  min-width: 36px;
  padding: 7px 8px;
  line-height: 1;
  text-align: center;
}

.ops-mini-run.is-loading {
  animation: ops-spin 0.8s linear infinite;
}

.ops-schedule-time {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.ops-log-window {
  border: 1px solid #243051;
  border-radius: 10px;
  background: #0f1630;
  padding: 8px 10px;
  max-height: 220px;
  overflow: auto;
}

.ops-log-line {
  font-size: 11px;
  line-height: 1.35;
  color: #c8d3ef;
  border-bottom: 1px dashed rgba(62, 78, 122, 0.55);
  padding: 3px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ops-log-line:last-child {
  border-bottom: 0;
}

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

.dashboard-day-compare {
  padding: 14px;
}

.dashboard-hero-row {
  display: grid;
  grid-template-columns: minmax(320px, 3fr) minmax(520px, 7fr);
  gap: 14px;
  align-items: stretch;
}

.dashboard-day-card-title {
  margin: 0 0 10px;
  color: #d7e3ff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}

.dashboard-day-panel {
  min-width: 0;
  padding: 10px 10px 8px;
  border: 1px solid rgba(58, 78, 130, 0.82);
  border-radius: 12px;
  background: rgba(11, 17, 34, 0.58);
  font-variant-numeric: tabular-nums;
}

.dashboard-day-caption {
  color: #c8d6f8;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}

.dashboard-day-orders-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.dashboard-day-orders-value {
  color: #f1f6ff;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.dashboard-day-orders-split {
  display: grid;
  gap: 2px;
  margin-top: 2px;
}

.dashboard-day-orders-split-item {
  color: #94a9d8;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.05;
}

.dashboard-day-orders-split-item span {
  color: #f1f6ff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-left: 4px;
}

.dashboard-day-sum-label {
  color: #c8d6f8;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
}

.dashboard-day-sum-value {
  color: #f1f6ff;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.015em;
  white-space: normal;
  overflow-wrap: anywhere;
}

.dashboard-day-delta-row {
  min-height: 16px;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 700;
}

.dashboard-orders-trend-card {
  padding: 14px;
}

.dashboard-finance-summary-card {
  margin-top: 14px;
}

.dashboard-finance-sections {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 14px;
  margin-top: 10px;
}

.dashboard-finance-section {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(58, 78, 130, 0.82);
  border-radius: 12px;
  background: rgba(11, 17, 34, 0.5);
}

.dashboard-finance-section-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
  color: #cfdcff;
}

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

.dashboard-finance-item {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(58, 78, 130, 0.82);
  border-radius: 12px;
  background: rgba(11, 17, 34, 0.58);
}

.dashboard-finance-value {
  font-size: 26px;
  line-height: 1.1;
}

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

.dashboard-finance-extra-value {
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
}

.dashboard-orders-trend-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.dashboard-orders-trend-title {
  margin: 0;
  color: #d7e3ff;
  font-size: 18px;
  font-weight: 600;
}

.dashboard-orders-trend-tf-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b8c8ea;
  font-size: 12px;
  font-weight: 700;
}

.dashboard-orders-trend-tf-select {
  width: auto;
  min-width: 102px;
  margin: 0;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(93, 127, 201, 0.75);
  background: rgba(11, 17, 34, 0.82);
  color: #eaf0ff;
  font-weight: 600;
}

.dashboard-orders-trend-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.dashboard-orders-trend-chart {
  min-height: 300px;
  width: 100%;
}

.delta-positive {
  color: #3ecf8e;
}

.delta-negative {
  color: #ff6b8a;
}

.delta-neutral {
  color: #9ba8cc;
}

@keyframes tech-monitor-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.dashboard-wide-panels {
  grid-template-columns: minmax(520px, 1.05fr) minmax(760px, 1.4fr);
}

@media (max-width: 900px) {
  .grid.cols-5,
  .grid.cols-4,
  .grid.cols-3,
  .grid.cols-2,
  .dashboard-wide-panels {
    grid-template-columns: 1fr;
  }

  .dashboard-hero-row {
    grid-template-columns: 1fr;
  }

  .ops-schedule-grid {
    grid-template-columns: 1fr;
  }

  .ops-schedule-row {
    grid-template-columns: 1fr 80px 64px 36px 36px 1fr;
  }

  .dashboard-day-card-title {
    font-size: 18px;
  }

  .dashboard-day-panel {
    padding: 10px 8px 8px;
  }

  .dashboard-day-orders-value {
    font-size: clamp(30px, 11vw, 40px);
  }

  .dashboard-day-orders-split-item span {
    font-size: 18px;
  }

  .dashboard-day-sum-value {
    font-size: clamp(24px, 9vw, 30px);
  }

  .dashboard-day-delta-row {
    font-size: 13px;
  }

  .dashboard-orders-trend-title {
    font-size: 16px;
  }

  .dashboard-orders-trend-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-orders-trend-tf-label {
    font-size: 11px;
  }

  .dashboard-orders-trend-tf-select {
    min-width: 96px;
    padding: 7px 9px;
    font-size: 13px;
  }

  .dashboard-orders-trend-chart {
    min-height: 210px;
  }

  .dashboard-finance-sections {
    grid-template-columns: 1fr;
  }

  .dashboard-finance-summary-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-finance-extra-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-finance-value {
    font-size: 24px;
  }
}

@media (min-width: 901px) {
  .dashboard-hero-row {
    grid-template-columns: minmax(340px, 3fr) minmax(600px, 7fr);
  }

  .dashboard-day-panel {
    min-height: 220px;
  }

  .dashboard-finance-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-finance-extra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-topbar,
  .mobile-backdrop {
    display: none;
  }

  .app-sidebar {
    width: 268px;
    transform: none;
    z-index: 1200;
  }

  .app-sidebar-inner {
    border-right: 1px solid rgba(67, 90, 150, 0.5);
    background: linear-gradient(180deg, rgba(22, 33, 62, 0.96), rgba(12, 19, 37, 0.97));
    box-shadow: 10px 0 24px rgba(0, 0, 0, 0.26);
    padding: 14px;
  }

  .app-main {
    padding-left: 268px;
  }

  .app-main-content {
    padding: 24px 20px 110px;
  }
}

@media (min-width: 1400px) {
  .app-main-content {
    padding-right: 28px;
    padding-left: 28px;
  }
}
