:root {
  --bg: #0a0b0d;
  --surface: #111318;
  --surface-2: #171a20;
  --surface-3: #1d2027;
  --line: #2b2f37;
  --line-soft: #20232a;
  --text: #f6f6f3;
  --muted: #a8abb4;
  --muted-2: #747985;
  --red: #ff5c65;
  --cyan: #29d3c6;
  --amber: #f4bd4f;
  --blue: #64a7ff;
  --green: #70d686;
  --purple: #b996ff;
  --hard: #f0f0ed;
  --medium: #f1c846;
  --soft: #ef4f59;
  --intermediate: #42b96c;
  --wet: #4d91ff;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

[hidden] {
  display: none !important;
}

html {
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

button,
select {
  font: inherit;
}

button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(210px, 250px) minmax(250px, 1fr) auto minmax(176px, auto);
  align-items: center;
  gap: 22px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--line);
  background: #08090b;
}

.brand-lockup,
.event-lockup,
.source-state {
  min-width: 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-lockup img {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  object-fit: cover;
  border: 1px solid #353841;
  border-radius: 4px;
}

.brand-name {
  overflow: hidden;
  color: var(--text);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-product {
  margin-top: 4px;
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.event-lockup {
  display: grid;
  grid-template-columns: auto minmax(0, auto);
  align-items: baseline;
  justify-content: start;
  column-gap: 10px;
}

.event-lockup strong {
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-lockup span:last-child {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
}

.event-year {
  grid-row: 1 / span 2;
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
}

.session-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(64px, auto));
  height: 40px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.session-switcher button,
.segmented button {
  min-width: 0;
  padding: 0 12px;
  color: var(--muted);
  border: 0;
  border-radius: 4px;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.session-switcher button:hover,
.segmented button:hover {
  color: var(--text);
  background: var(--surface-3);
}

.session-switcher button[aria-selected="true"],
.segmented button[aria-pressed="true"] {
  color: #0b0c0e;
  background: var(--text);
}

.source-state {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.source-state-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(112, 214, 134, 0.12);
}

.source-state strong,
.source-state span {
  display: block;
  text-align: right;
}

.source-state strong {
  font-size: 11px;
  text-transform: uppercase;
}

.source-state span {
  color: var(--muted);
  font-size: 10px;
}

.app-shell {
  display: grid;
  grid-template-columns: 214px minmax(0, 1fr);
  min-height: calc(100vh - 72px);
}

.sidebar {
  position: sticky;
  top: 72px;
  align-self: start;
  height: calc(100vh - 72px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 17px 12px 14px;
  border-right: 1px solid var(--line);
  background: #0c0d10;
}

.nav-group + .nav-group {
  margin-top: 18px;
}

.nav-group-label {
  padding: 0 9px 7px;
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.nav-item {
  position: relative;
  width: 100%;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  color: var(--muted);
  border: 0;
  border-radius: 4px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.nav-item svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  stroke-width: 1.8;
}

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

.nav-item[aria-selected="true"] {
  color: var(--text);
  background: var(--surface-3);
}

.nav-item[aria-selected="true"]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: var(--red);
}

.nav-item[aria-selected="true"] svg {
  color: var(--red);
}

.sidebar-footer {
  margin-top: auto;
  padding: 14px 10px 2px;
  border-top: 1px solid var(--line-soft);
}

.sidebar-footer span,
.sidebar-footer strong,
.sidebar-footer small {
  display: block;
}

.sidebar-footer span {
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.sidebar-footer strong {
  margin-top: 2px;
  font-size: 15px;
}

.sidebar-footer small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.workspace {
  min-width: 0;
  padding: 27px clamp(18px, 2.6vw, 42px) 22px;
}

.workspace-header {
  min-height: 72px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 22px;
}

.view-heading {
  min-width: 0;
}

.eyebrow {
  color: var(--red);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 4px;
  font-size: 27px;
  line-height: 1.15;
}

.view-heading p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
}

.workspace-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.driver-select {
  position: relative;
  width: 150px;
}

.driver-select span {
  position: absolute;
  left: 10px;
  top: 5px;
  z-index: 1;
  color: var(--muted-2);
  font-size: 8px;
  font-weight: 850;
  text-transform: uppercase;
  pointer-events: none;
}

.driver-select select {
  width: 100%;
  height: 44px;
  padding: 16px 28px 4px 9px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface-2);
  appearance: none;
  cursor: pointer;
}

.driver-select::after {
  content: "";
  position: absolute;
  right: 11px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg);
  pointer-events: none;
}

.icon-button {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
  cursor: pointer;
}

.icon-button:hover {
  color: var(--text);
  border-color: #484d59;
  background: var(--surface-2);
}

.icon-button:disabled {
  opacity: 0.38;
  cursor: default;
}

.icon-button svg {
  width: 17px;
  height: 17px;
}

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 21px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.kpi {
  min-width: 0;
  padding: 15px 17px;
}

.kpi + .kpi {
  border-left: 1px solid var(--line);
}

.kpi-label {
  overflow: hidden;
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 850;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.kpi-value {
  margin-top: 3px;
  overflow: hidden;
  color: var(--text);
  font-size: 19px;
  font-weight: 780;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kpi-detail {
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.view-toolbar {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 11px;
}

.toolbar-copy {
  color: var(--muted);
  font-size: 11px;
}

.toolbar-copy strong {
  color: var(--text);
}

.toolbar-controls {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.toolbar-select {
  min-width: 176px;
  display: grid;
  gap: 3px;
}

.toolbar-select span {
  color: var(--muted-2);
  font-size: 8px;
  font-weight: 850;
  text-transform: uppercase;
}

.toolbar-select select {
  width: 100%;
  height: 34px;
  padding: 0 30px 0 10px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
}

.segmented {
  height: 34px;
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(72px, auto);
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
}

.segmented button {
  padding: 0 10px;
  font-size: 10px;
}

.view-root {
  min-height: 560px;
}

.analysis-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 24px;
}

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

.chart-section,
.detail-section,
.table-section,
.metric-section {
  min-width: 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.section-heading {
  min-height: 52px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px 10px;
  border-bottom: 1px solid var(--line-soft);
}

.section-heading h2,
.section-heading h3 {
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
}

.section-heading p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.source-badge,
.status-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 22px;
  padding: 3px 7px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 8px;
  font-weight: 850;
  text-transform: uppercase;
}

.status-badge.ready {
  color: var(--green);
  border-color: rgba(112, 214, 134, 0.35);
}

.status-badge.deleted {
  color: var(--red);
  border-color: rgba(255, 92, 101, 0.38);
}

.status-badge.untimed {
  color: var(--amber);
  border-color: rgba(244, 189, 79, 0.38);
}

.status-badge.quality {
  color: var(--blue);
  border-color: rgba(100, 167, 255, 0.38);
}

.status-badge.deferred {
  color: var(--amber);
  border-color: rgba(244, 189, 79, 0.38);
}

.chart {
  width: 100%;
  height: 560px;
}

.chart.medium {
  height: 430px;
}

.chart.compact {
  height: 300px;
}

.detail-list {
  margin: 0;
  padding: 2px 15px 12px;
}

.detail-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 47px;
  border-bottom: 1px solid var(--line-soft);
}

.detail-row:last-child {
  border-bottom: 0;
}

.detail-row dt,
.detail-row dd {
  margin: 0;
}

.detail-row dt {
  min-width: 0;
  color: var(--muted);
  font-size: 11px;
}

.detail-row dd {
  color: var(--text);
  font-size: 12px;
  font-weight: 750;
  text-align: right;
}

.detail-row small {
  display: block;
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 500;
}

.insight-stack {
  display: grid;
  gap: 1px;
  background: var(--line-soft);
}

.insight {
  min-height: 86px;
  padding: 14px 15px;
  background: var(--surface);
}

.insight-label {
  color: var(--red);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.insight strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
}

.insight p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
}

.metric-card {
  min-width: 0;
  min-height: 96px;
  padding: 14px 15px;
  background: var(--surface);
}

.metric-card .label {
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.metric-card .value {
  margin-top: 6px;
  overflow: hidden;
  font-size: 18px;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-card .detail {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.driver-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.driver-color {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--driver-color, var(--muted));
}

.data-table-wrap {
  overflow: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.data-table th,
.data-table td {
  height: 42px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--line-soft);
  text-align: right;
  white-space: nowrap;
}

.data-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: var(--muted-2);
  background: var(--surface);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.data-table th:first-child,
.data-table td:first-child,
.data-table .align-left {
  text-align: left;
}

.data-table tbody tr:hover {
  background: var(--surface-2);
}

.coverage-ledger-wrap {
  max-height: 620px;
}

.coverage-ledger td:nth-child(1) {
  min-width: 190px;
}

.coverage-ledger td:nth-child(2) {
  min-width: 90px;
}

.coverage-ledger td:nth-child(3),
.coverage-ledger td:nth-child(4) {
  min-width: 150px;
}

.coverage-ledger td:nth-child(5) {
  min-width: 270px;
  white-space: normal;
}

.quality-definition {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 15px;
  color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface-2);
  font-size: 10px;
}

.quality-definition svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--cyan);
}

.quality-definition strong,
.quality-definition span {
  display: block;
}

.quality-definition strong {
  color: var(--text);
  font-size: 11px;
}

.quality-definition span {
  margin-top: 2px;
}

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

.quality-table-wrap {
  max-height: 520px;
}

.quality-table {
  min-width: 920px;
}

.quality-table .quality-reason,
.quality-table .quality-gate {
  min-width: 210px;
  white-space: normal;
}

.quality-table .quality-gate {
  color: var(--muted);
  font-size: 10px;
}

.mobile-quality-context {
  display: none;
}

.position-cell {
  color: var(--muted);
  font-weight: 800;
}

.delta-positive {
  color: var(--green);
}

.delta-negative {
  color: var(--red);
}

.compound {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
}

.compound::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--compound-color, var(--muted));
}

.compound-key {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  padding: 10px 15px 0;
  color: var(--muted);
}

.empty-state {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 40px;
  border-top: 1px solid var(--line);
  background: var(--surface);
  text-align: center;
}

.empty-state svg {
  width: 28px;
  height: 28px;
  color: var(--muted-2);
}

.empty-state h2 {
  margin: 12px 0 5px;
  font-size: 16px;
}

.empty-state p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

.empty-state button {
  margin-top: 16px;
  height: 36px;
  padding: 0 14px;
  color: #0a0b0d;
  border: 0;
  border-radius: 4px;
  background: var(--text);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

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

.coverage-session {
  min-width: 0;
  padding: 16px;
  border-top: 2px solid var(--green);
  background: var(--surface);
}

.coverage-session h3 {
  margin-bottom: 12px;
  font-size: 14px;
}

.coverage-bar {
  height: 5px;
  margin: 7px 0 13px;
  overflow: hidden;
  background: var(--surface-3);
}

.coverage-bar span {
  display: block;
  height: 100%;
  background: var(--green);
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: var(--line-soft);
}

.download-link {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
  color: var(--text);
  background: var(--surface);
  text-decoration: none;
}

.download-link:hover {
  background: var(--surface-2);
}

.download-link strong,
.download-link span {
  display: block;
}

.download-link strong {
  font-size: 11px;
}

.download-link span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

.download-link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--red);
}

.workspace-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 14px;
  color: var(--muted-2);
  border-top: 1px solid var(--line-soft);
  font-size: 9px;
}

.workspace-footer strong {
  color: var(--muted);
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: 210px minmax(200px, 1fr) auto;
  }

  .source-state {
    display: none;
  }

  .workspace-header {
    flex-direction: column;
    gap: 16px;
  }

  .workspace-actions {
    width: 100%;
  }

  .driver-select {
    width: auto;
    flex: 1;
    max-width: 220px;
  }

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

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

@media (max-width: 860px) {
  .topbar {
    position: relative;
    grid-template-columns: minmax(170px, 1fr) auto;
    gap: 12px;
    padding: 9px 12px;
  }

  .event-lockup {
    display: none;
  }

  .session-switcher {
    min-width: 232px;
  }

  .app-shell {
    display: block;
  }

  .sidebar {
    position: sticky;
    top: 0;
    z-index: 25;
    width: 100%;
    height: auto;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 7px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .analysis-nav {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .nav-group {
    display: contents;
  }

  .nav-group + .nav-group {
    margin-top: 0;
  }

  .nav-group-label,
  .sidebar-footer {
    display: none;
  }

  .nav-item {
    width: auto;
    min-width: 38px;
    padding: 0 10px;
  }

  .nav-item[aria-selected="true"]::before {
    left: 8px;
    right: 8px;
    top: auto;
    bottom: 0;
    width: auto;
    height: 2px;
  }

  .workspace {
    padding: 22px 14px 18px;
  }

  .kpi-strip {
    grid-template-columns: repeat(5, minmax(116px, 1fr));
    overflow-x: auto;
  }

  .kpi {
    min-width: 116px;
  }

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

  .chart {
    height: 500px;
  }
}

@media (max-width: 600px) {
  .topbar {
    min-height: 58px;
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .brand-lockup {
    display: flex;
  }

  .brand-lockup img {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand-lockup > div {
    display: none;
  }

  .session-switcher {
    width: 100%;
    min-width: 0;
  }

  .workspace-header {
    padding-bottom: 17px;
  }

  h1 {
    font-size: 23px;
  }

  .workspace-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr);
  }

  .driver-select {
    width: 100%;
    max-width: none;
  }

  .icon-button {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  #export-chart {
    display: none;
  }

  .kpi-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .kpi {
    min-width: 0;
  }

  .kpi:nth-child(odd) {
    border-left: 0;
  }

  .kpi:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .kpi:last-child {
    grid-column: 1 / -1;
  }

  .kpi-value,
  .kpi-detail {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .kpi-value {
    font-size: 17px;
  }

  .view-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .toolbar-controls {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .toolbar-select {
    width: 100%;
  }

  .segmented {
    width: 100%;
    overflow-x: auto;
  }

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

  .quality-table {
    min-width: 0;
    table-layout: fixed;
  }

  .quality-table .quality-detail-col {
    display: none;
  }

  .quality-table th:nth-child(1),
  .quality-table td:nth-child(1) {
    width: 43%;
  }

  .quality-table th:nth-child(2),
  .quality-table td:nth-child(2) {
    width: 10%;
  }

  .quality-table th:nth-child(3),
  .quality-table td:nth-child(3) {
    width: 22%;
  }

  .quality-table th:nth-child(4),
  .quality-table td:nth-child(4) {
    width: 25%;
  }

  .quality-table th,
  .quality-table td {
    height: auto;
    padding: 9px 6px;
  }

  .quality-table .driver-chip {
    gap: 4px;
  }

  .quality-table .driver-chip small {
    display: none;
  }

  .mobile-quality-context {
    display: block;
    margin-top: 4px;
    overflow-wrap: anywhere;
    color: var(--muted-2);
    font-size: 7px;
    line-height: 1.3;
    text-transform: none;
    white-space: normal;
  }

  .chart,
  .chart.medium {
    height: 430px;
  }

  .chart.compact {
    height: 280px;
  }

  .workspace-footer {
    flex-direction: column;
    gap: 5px;
  }
}
