/* Shell styles for the module dashboard.
 *
 * Single source of truth for the module dashboard. Legacy dashboard.css is no
 * longer loaded by app.html; active views depend only on the tokens and rules here.
 *
 * Design tokens only — no seat colours here. Every colour drawn on the stadium
 * canvas comes from the chart's own category palette, and defining any of them
 * in CSS would create a second source of truth for a value the venue owns. */

:root {
  --app-bg: #0b0e14;
  --app-panel: #121721;
  --app-panel-2: #171d29;
  --app-line: #263043;
  --app-text: #eef2f7;
  --app-muted: #93a0b4;
  --app-good: #22c55e;
  --app-warn: #f59e0b;
  --app-danger: #ef4444;
  --app-accent: #38bdf8;
  --app-radius: 12px;
  --app-gap: 1rem;
}

.app-body {
  margin: 0;
  min-height: 100vh;
  background: var(--app-bg);
  color: var(--app-text);
  font-family: system-ui, -apple-system, "Segoe UI", Tahoma, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.skip-link {
  position: absolute;
  inset-inline-start: -9999px;
}

.skip-link:focus {
  inset-inline-start: 1rem;
  top: 1rem;
  z-index: 50;
  background: var(--app-panel);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.app-shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
}

.side-open {
  display: none;
}

@media (max-width: 900px) {
  .app-shell {
    display: block;
    position: relative;
  }

  .side-open {
    display: grid;
    place-items: center;
    position: fixed;
    inset-block-start: 0.75rem;
    inset-inline-start: 0.75rem;
    z-index: 45;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--app-panel-2);
    color: var(--app-text);
    border: 1px solid var(--app-line);
    border-radius: 8px;
    cursor: pointer;
  }

  body.side-open .side-open {
    display: none;
  }

  .app-shell .app-side {
    position: fixed;
    inset-block: 0;
    inset-inline-start: 0;
    width: min(280px, 86vw);
    height: 100vh;
    z-index: 40;
    transform: translateX(100%);
    transition: transform 180ms ease;
    box-shadow: -16px 0 32px rgba(0, 0, 0, 0.35);
  }

  .app-shell.is-open .app-side {
    transform: translateX(0);
  }

  /* A mobile sidebar is a modal surface, not an always-visible rail. The
     backdrop is what makes the click-outside contract explicit and prevents
     content behind the open menu from looking interactive. */
  .app-shell.is-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 39;
    background: rgba(2, 6, 12, 0.58);
  }
}

.app-side {
  border-inline-end: 1px solid var(--app-line);
  background: var(--app-panel);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 0;
  height: 100vh;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: linear-gradient(140deg, var(--app-accent), #6366f1);
  color: #06121c;
  font-weight: 800;
}

.brand-note {
  display: block;
  color: var(--app-muted);
  font-size: 0.75rem;
}

.app-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  border-radius: 10px;
  color: var(--app-muted);
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}

.nav-item:hover {
  background: var(--app-panel-2);
  color: var(--app-text);
}

.nav-item.is-active {
  background: var(--app-panel-2);
  color: var(--app-text);
  box-shadow: inset 3px 0 0 var(--app-accent);
}

.nav-index {
  font-variant-numeric: tabular-nums;
  font-size: 0.75rem;
  opacity: 0.65;
}

.app-foot {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--app-muted);
  border-top: 1px solid var(--app-line);
  padding-top: 0.75rem;
}

.app-status::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  margin-inline-end: 0.375rem;
  background: var(--app-muted);
}

.conn-open::before {
  background: var(--app-good);
}

.conn-connecting::before,
.conn-reconnecting::before {
  background: var(--app-warn);
}

.conn-degraded::before,
.conn-closed::before {
  background: var(--app-danger);
}

.app-main {
  padding: 1.25rem;
  min-width: 0;
}

.boot-note {
  color: var(--app-muted);
}

/* ── views ─────────────────────────────────────────────────────────── */
.view {
  display: flex;
  flex-direction: column;
  gap: var(--app-gap);
  max-width: 1500px;
}

.view-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--app-gap);
  flex-wrap: wrap;
}

.view-head h1 {
  margin: 0.125rem 0;
  font-size: 1.5rem;
}

.view-note,
.panel-note {
  margin: 0;
  color: var(--app-muted);
  font-size: 0.8125rem;
  max-width: 68ch;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.6875rem;
  color: var(--app-accent);
}

.view-tools {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.conn {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: var(--app-panel-2);
  color: var(--app-muted);
}

/* ── tiles ─────────────────────────────────────────────────────────── */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0.75rem;
}

.tile {
  padding: 0.875rem;
  border-radius: var(--app-radius);
  background: var(--app-panel);
  border: 1px solid var(--app-line);
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.tile-label {
  font-size: 0.75rem;
  color: var(--app-muted);
}

.tile-value {
  font-size: 1.75rem;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.tile-note {
  font-size: 0.75rem;
  color: var(--app-muted);
}

.tile-good {
  border-color: color-mix(in srgb, var(--app-good) 45%, var(--app-line));
}

.tile-warn {
  border-color: color-mix(in srgb, var(--app-warn) 45%, var(--app-line));
}

.tile-danger {
  border-color: color-mix(in srgb, var(--app-danger) 55%, var(--app-line));
}

/* ── panels ────────────────────────────────────────────────────────── */
.panel {
  background: var(--app-panel);
  border: 1px solid var(--app-line);
  border-radius: var(--app-radius);
  overflow: hidden;
}

.panel-head {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--app-line);
}

.panel-head h2 {
  margin: 0.125rem 0;
  font-size: 1.0625rem;
}

.panel-state {
  margin: 0;
  padding: 0.5rem 1rem;
  background: var(--app-panel-2);
  color: var(--app-muted);
  font-size: 0.8125rem;
}

.panel-body {
  padding: 1rem;
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: var(--app-radius);
  border: 1px solid var(--app-line);
  font-size: 0.875rem;
}

.alert-danger {
  border-color: color-mix(in srgb, var(--app-danger) 55%, var(--app-line));
  background: color-mix(in srgb, var(--app-danger) 12%, transparent);
}

/* ── blockers ──────────────────────────────────────────────────────── */
.blockers {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.blockers li {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
}

.blocker-title {
  margin: 0;
  font-weight: 600;
}

.blocker-detail {
  margin: 0.125rem 0 0;
  color: var(--app-muted);
  font-size: 0.8125rem;
}

.blocker-action {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  background: var(--app-bg);
  padding: 0.125rem 0.375rem;
  border-radius: 6px;
}

/* The hold-token keeper's controls, nested inside the challenge alert. Set off
   by a rule and its own background so the automatic-upkeep controls read as a
   distinct action area rather than more prose. */
.keeper-block {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--app-line);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.pill {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  background: var(--app-panel-2);
  color: var(--app-muted);
  white-space: nowrap;
}

.pill-good {
  color: var(--app-good);
  background: color-mix(in srgb, var(--app-good) 16%, transparent);
}

.pill-warn {
  color: var(--app-warn);
  background: color-mix(in srgb, var(--app-warn) 16%, transparent);
}

.pill-danger {
  color: var(--app-danger);
  background: color-mix(in srgb, var(--app-danger) 16%, transparent);
}

/* ── tables ────────────────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
}

.grid {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.grid th,
.grid td {
  padding: 0.625rem 0.5rem;
  border-bottom: 1px solid var(--app-line);
  text-align: start;
  vertical-align: top;
}

.grid th {
  color: var(--app-muted);
  font-weight: 600;
  font-size: 0.75rem;
  white-space: nowrap;
}

.cell-primary {
  display: block;
}

.cell-secondary,
.muted {
  color: var(--app-muted);
  font-size: 0.75rem;
}

.cell-secondary {
  display: block;
}

.cell-code {
  display: block;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.6875rem;
  color: var(--app-muted);
}

/* ── controls ──────────────────────────────────────────────────────── */
.row-actions {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.btn {
  background: var(--app-panel-2);
  color: var(--app-text);
  border: 1px solid var(--app-line);
  border-radius: 9px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.8125rem;
}

.btn:hover:not(:disabled) {
  border-color: var(--app-accent);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-compact {
  padding: 0.3125rem 0.5rem;
  font-size: 0.75rem;
}

.btn-primary {
  background: #0f766e;
  border-color: #14b8a6;
}

.btn-danger {
  background: #7f1d1d;
  border-color: var(--app-danger);
}

.btn-ghost {
  background: transparent;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--app-muted);
}

.field-inline {
  flex-direction: row;
  align-items: center;
  gap: 0.375rem;
}

.field input,
.field select {
  background: var(--app-bg);
  color: var(--app-text);
  border: 1px solid var(--app-line);
  border-radius: 8px;
  padding: 0.4375rem 0.5rem;
  font: inherit;
  font-size: 0.8125rem;
  min-width: 11rem;
}

.field-inline input[type="checkbox"] {
  min-width: 0;
  width: 1rem;
  height: 1rem;
}

/* ── forms: the launch intent ───────────────────────────────────────── */
.form-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: flex-end;
}

.form-row+.form-row,
.fieldset+.fieldset {
  margin-top: 0.875rem;
}

.field-wide {
  flex: 1 1 28rem;
}

.field-wide input {
  width: 100%;
}

.fieldset {
  border: 1px solid var(--app-line);
  border-radius: var(--app-radius);
  padding: 0.875rem;
  margin: 0;
  background: var(--app-panel-2);
}

.fieldset legend {
  padding: 0 0.375rem;
  font-size: 0.8125rem;
  color: var(--app-text);
}

.warn-note {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: var(--app-warn);
}

/* ── facts: read-only measured values ───────────────────────────────── */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 0.625rem;
}

.facts+.facts,
.facts+.alert,
.alert+.form-row {
  margin-top: 0.875rem;
}

.fact {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--app-line);
  border-radius: 10px;
  background: var(--app-panel-2);
  min-width: 0;
}

.fact-value {
  font-size: 1.0625rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

/* ── category chips ─────────────────────────────────────────────────── */
.chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
  gap: 0.375rem;
  margin-top: 0.625rem;
  max-height: 22rem;
  overflow-y: auto;
  padding-inline-end: 0.25rem;
}

.chip {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.5rem;
  border: 1px solid var(--app-line);
  border-radius: 9px;
  background: var(--app-bg);
  cursor: pointer;
  font-size: 0.75rem;
}

.chip:hover {
  border-color: var(--app-accent);
}

.chip:has(input:checked) {
  border-color: var(--app-accent);
  background: color-mix(in srgb, var(--app-accent) 14%, transparent);
}

.chip input {
  width: 0.875rem;
  height: 0.875rem;
  margin: 0;
}

.chip-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chip-price {
  color: var(--app-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ── log tail ───────────────────────────────────────────────────────── */
.log-tail {
  margin: 0.75rem 0 0;
  padding: 0.75rem;
  border: 1px solid var(--app-line);
  border-radius: var(--app-radius);
  background: var(--app-bg);
  color: var(--app-muted);
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.6875rem;
  line-height: 1.5;
  max-height: 24rem;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  direction: ltr;
  text-align: start;
}

/* A fact tile can carry its own controls (per-service pause, for instance). */
.fact .row-actions {
  margin-top: 0.375rem;
}

/* Selection column in the accounts table. */
.grid input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin: 0;
}

/* ── Ambush decision card (discovery view) ──────────────────────────────
   The operator's price authority made visually first-class: the system never
   picks the price, the operator does. The card dims when auto-ambush is off so
   its "armed" state is legible at a glance. */
.ambush-card {
  margin-top: var(--app-gap);
  padding: 1rem 1.2rem 1.2rem;
  border: 1px solid color-mix(in srgb, var(--app-accent) 40%, var(--app-line));
  border-radius: var(--app-radius);
  background:
    linear-gradient(180deg,
      color-mix(in srgb, var(--app-accent) 9%, transparent), transparent 55%),
    var(--app-panel);
  transition: opacity .2s ease, border-color .2s ease;
}
.ambush-card.is-off { opacity: .5; border-color: var(--app-line); }
.ambush-card > legend {
  padding: 0 .5rem;
  font-weight: 700;
  color: var(--app-accent);
}
.ambush-arm { font-weight: 600; margin-bottom: .25rem; }
.ambush-concept {
  margin: .5rem 0 1rem;
  color: var(--app-muted);
  line-height: 1.85;
  font-size: .92rem;
}
.ambush-concept strong { color: var(--app-text); font-weight: 600; }
.ambush-concept code {
  padding: .05rem .35rem;
  border-radius: 6px;
  background: color-mix(in srgb, var(--app-accent) 18%, transparent);
  color: var(--app-text);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.ambush-envelope {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: .85rem;
  align-items: end;
}
@media (max-width: 640px) {
  .ambush-envelope { grid-template-columns: 1fr 1fr; }
}
.ambush-hero input {
  font-size: 1.35rem;
  font-weight: 700;
  padding: .5rem .7rem;
  border-color: color-mix(in srgb, var(--app-accent) 55%, var(--app-line));
}
.ambush-hero input:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--app-accent) 60%, transparent);
  outline-offset: 1px;
}
.ambush-hint {
  display: block;
  margin-top: .3rem;
  color: var(--app-muted);
  font-size: .8rem;
}

/* Links styled as buttons must match the buttons beside them. */
a.btn {
  text-decoration: none;
  display: inline-block;
}


/* ── operational readability pack ─────────────────────────────────── */
.grid tbody tr:hover {
  background: color-mix(in srgb, var(--app-accent) 7%, transparent);
}

.grid thead {
  position: sticky;
  top: 0;
  background: var(--app-panel);
  z-index: 1;
}

.edit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
  gap: 0.5rem;
  max-width: 44rem;
}

.edit-mini {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.72rem;
  color: var(--app-muted);
}

.edit-mini input {
  width: 100%;
  min-width: 0;
  background: var(--app-bg);
  color: var(--app-text);
  border: 1px solid var(--app-line);
  border-radius: 8px;
  padding: 0.4rem 0.45rem;
  font: inherit;
  font-size: 0.78rem;
}

.edit-mini.edit-title {
  grid-column: 1 / -1;
}

.field-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.72rem;
  color: var(--app-muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 0.75rem;
}

.actions-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.875rem;
}

.error-line {
  color: var(--app-danger);
  font-size: 0.8125rem;
}

.view-stack {
  display: flex;
  flex-direction: column;
  gap: var(--app-gap);
}


.side-toggle {
  margin-inline-start: auto;
  background: var(--app-panel-2);
  color: var(--app-text);
  border: 1px solid var(--app-line);
  border-radius: 8px;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

.app-shell.is-collapsed {
  grid-template-columns: 78px 1fr;
}

.app-shell.is-collapsed .app-side {
  align-items: center;
}

.app-shell.is-collapsed .brand > div,
.app-shell.is-collapsed .nav-label,
.app-shell.is-collapsed .app-build {
  display: none;
}

.app-shell.is-collapsed .nav-item {
  justify-content: center;
  padding-inline: 0;
}

.app-shell.is-collapsed .side-toggle {
  margin-inline-start: 0;
}

@media (max-width: 900px) {
  .app-shell.is-collapsed {
    display: block;
  }

  /* On narrow screens `is-collapsed` is not the active state; `is-open` is.
     Keep the collapsed rail from overriding the off-canvas transform. */
  .app-shell.is-collapsed .app-side {
    align-items: stretch;
  }

  .app-shell.is-collapsed .brand > div,
  .app-shell.is-collapsed .nav-label,
  .app-shell.is-collapsed .app-build {
    display: block;
  }

  .app-shell.is-collapsed .nav-item {
    justify-content: flex-start;
    padding-inline: 0.75rem;
  }
}


/* ── consolidated active-view components (no legacy dashboard.css) ── */
.check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--app-muted);
}

.check input {
  width: 1rem;
  height: 1rem;
  margin: 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.data-table th,
.data-table td {
  padding: 0.625rem 0.5rem;
  border-bottom: 1px solid var(--app-line);
  text-align: start;
  vertical-align: top;
}

.data-table th {
  color: var(--app-muted);
  font-weight: 600;
  font-size: 0.75rem;
  white-space: nowrap;
}

.data-table tbody tr:hover {
  background: color-mix(in srgb, var(--app-accent) 7%, transparent);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin: 0.625rem 0;
}

.venue-monitor {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.875rem;
}

.stadium-canvas-wrap {
  position: relative;
  width: 100%;
  height: min(68vh, 720px);
  border-radius: var(--app-radius);
  overflow: hidden;
  border: 1px solid var(--app-line);
  background: var(--app-panel-2);
}

#stadium-canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
}

.stadium-readout {
  display: grid;
  grid-template-columns: minmax(14rem, 22rem) 1fr;
  gap: 1rem;
  margin-top: 0.875rem;
}

@media (max-width: 900px) {
  .stadium-readout {
    grid-template-columns: 1fr;
  }
}

.stadium-totals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: 0.5rem;
  margin: 0;
}

.stadium-totals div {
  padding: 0.5rem 0.625rem;
  border-radius: 8px;
  background: var(--app-panel-2);
  border: 1px solid var(--app-line);
}

.stadium-totals dt {
  font-size: 0.75rem;
  color: var(--app-muted);
}

.stadium-totals dd {
  margin: 0.125rem 0 0;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.stadium-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin: 0;
  padding: 0;
  list-style: none;
  align-content: flex-start;
}

.stadium-legend li {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: var(--app-panel-2);
  border: 1px solid var(--app-line);
  font-size: 0.75rem;
}

.stadium-legend .swatch {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.stadium-legend .legend-label {
  color: var(--app-muted);
}

.stadium-legend .legend-count {
  font-variant-numeric: tabular-nums;
  color: var(--app-text);
}

.stadium-hover {
  margin: 0.625rem 0 0;
  min-height: 1.25rem;
  font-size: 0.8125rem;
  font-variant-numeric: tabular-nums;
  color: var(--app-muted);
}


.grid td {
  max-width: 16rem;
  overflow-wrap: anywhere;
}

.cell-primary + .cell-secondary,
.cell-secondary + .cell-secondary {
  margin-top: 0.2rem;
}

.cell-code {
  max-width: 100%;
  overflow-wrap: anywhere;
}


.app-shell.is-collapsed .app-side:hover {
  position: absolute;
  inset-block-start: 0;
  inset-block-end: 0;
  inset-inline-start: 0;
  width: 250px;
  z-index: 20;
  box-shadow: 16px 0 32px rgba(0, 0, 0, 0.35);
}

.app-shell.is-collapsed .app-side:hover .brand > div,
.app-shell.is-collapsed .app-side:hover .nav-label,
.app-shell.is-collapsed .app-side:hover .app-build {
  display: block;
}

.app-shell.is-collapsed .app-side:hover .nav-item {
  justify-content: flex-start;
  padding-inline: 0.75rem;
}
