:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --soft: #f8fafc;
  --text: #121722;
  --muted: #647084;
  --faint: #9aa6b7;
  --line: #dce4ee;
  --line-soft: #edf2f7;
  --green: #0f8b78;
  --green-soft: #e0f4ef;
  --cyan: #1389b2;
  --cyan-soft: #e2f3f8;
  --blue: #3468d8;
  --blue-soft: #e9effc;
  --rose: #d34d6a;
  --rose-soft: #fde8ee;
  --orange: #c77214;
  --orange-soft: #fff1dc;
  --violet: #7557d8;
  --violet-soft: #f0ebff;
  --shadow: 0 18px 42px rgba(19, 34, 54, 0.08);
  --radius: 8px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fbfcff 0, var(--bg) 320px),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1 {
  font-size: 22px;
  font-weight: 650;
}

h2 {
  font-size: 17px;
  font-weight: 650;
}

h3 {
  font-size: 14px;
  font-weight: 650;
}

.muted,
label,
.brand span,
.metric-label,
th {
  color: var(--muted);
}

.tiny {
  color: var(--faint);
  font-size: 12px;
}

.eyebrow {
  margin: 0 0 3px;
  color: var(--green);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

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

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 20px 14px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 4px;
  padding: 0 8px 10px;
}

.brand strong {
  font-size: 18px;
  font-weight: 650;
}

.side-nav {
  display: grid;
  gap: 6px;
  align-content: start;
}

.side-nav .tab {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  padding: 0 10px;
  background: transparent;
  color: var(--muted);
  text-align: left;
}

.side-nav .tab.active {
  background: var(--green-soft);
  color: var(--green);
  font-weight: 650;
}

.side-nav small {
  color: var(--faint);
  font-size: 12px;
}

.side-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--surface);
  color: var(--muted);
  font-size: 12px;
}

.side-card strong {
  color: var(--text);
}

.main-shell {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  gap: 14px;
  padding: 18px 26px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 248, 251, 0.88);
  backdrop-filter: blur(18px);
}

.topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.top-actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
}

.workspace {
  min-width: 0;
  display: grid;
  gap: 16px;
  padding: 20px 26px 46px;
}

.toolbar {
  display: grid;
  grid-template-columns: 150px 150px 150px 150px minmax(190px, 1fr) auto;
  gap: 10px;
  align-items: end;
}

label {
  display: grid;
  gap: 5px;
  min-width: 0;
  font-size: 12px;
}

input,
select {
  min-width: 0;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  background: var(--surface);
  color: var(--text);
}

input[type="file"] {
  height: auto;
  padding: 9px;
}

.date-field,
.date-field input {
  cursor: pointer;
}

.primary,
.ghost,
.link-button {
  min-height: 36px;
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 0 14px;
  background: var(--surface);
  color: var(--text);
}

.primary {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  font-weight: 650;
}

.ghost:hover,
.link-button:hover {
  background: var(--soft);
}

.combo {
  position: relative;
  min-width: 0;
}

.combo input[type="search"] {
  width: 100%;
  padding-right: 34px;
}

.combo-clear {
  position: absolute;
  top: 4px;
  right: 5px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 20px;
  line-height: 1;
}

.combo-clear:hover {
  background: var(--soft);
  color: var(--text);
}

.combo-list {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  display: none;
  max-height: 280px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.combo.open .combo-list {
  display: block;
}

.combo-option {
  width: 100%;
  min-height: 44px;
  display: grid;
  gap: 2px;
  padding: 8px 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
}

.combo-option span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.combo-option small,
.combo-empty {
  color: var(--muted);
  font-size: 12px;
}

.combo-option:hover,
.combo-option.active {
  background: rgba(15, 139, 120, 0.08);
}

.combo-empty {
  padding: 14px 10px;
}

.status-compact {
  position: relative;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 7px 0 10px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  box-shadow: 0 8px 22px rgba(19, 34, 54, 0.05);
  font-size: 11px;
  white-space: nowrap;
}

.status-compact > span {
  color: var(--muted);
}

.status-compact > strong {
  min-width: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
}

.status-tip-trigger {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 0;
  background: var(--soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
}

.status-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  width: min(420px, calc(100vw - 32px));
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line-soft);
  box-shadow: var(--shadow);
  white-space: normal;
}

.status-compact:hover .status-popover,
.status-compact:focus-within .status-popover {
  display: grid;
}

.status-popover div {
  min-width: 0;
  display: grid;
  gap: 5px;
  padding: 10px 12px;
  background: var(--surface);
}

.status-popover .wide {
  grid-column: 1 / -1;
}

.status-popover span {
  color: var(--muted);
  font-size: 11px;
}

.status-popover strong {
  min-width: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 650;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.pill,
.badge,
.focus-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  white-space: nowrap;
}

.pill {
  gap: 6px;
  border: 1px solid var(--line);
  padding: 0 10px;
  background: var(--surface);
  color: var(--muted);
  font-size: 12px;
}

.pill.primary {
  border-color: rgba(15, 139, 120, 0.24);
  background: var(--green-soft);
  color: var(--green);
}

.tab-panel {
  display: none;
  gap: 16px;
}

.tab-panel.active {
  display: grid;
}

.panel,
.metric-card,
.metric-group {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel {
  min-width: 0;
  position: relative;
  display: grid;
  gap: 14px;
  padding: 15px;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.section-head.stacked {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.section-head > div:not(.switches):not(.focus-filters) {
  display: grid;
  gap: 4px;
}

.metric-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.metric-group {
  min-width: 0;
  display: grid;
  gap: 8px;
  padding: 13px;
  box-shadow: 0 10px 28px rgba(19, 34, 54, 0.045);
}

.metric-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
  gap: 10px;
}

.group-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 28px;
}

.group-title strong {
  font-weight: 650;
}

.metric-card {
  min-height: 98px;
  display: grid;
  gap: 10px;
  padding: 12px;
  border-color: var(--line-soft);
  box-shadow: 0 6px 20px rgba(19, 34, 54, 0.04);
}

.metric-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.metric-label {
  min-width: 0;
  padding-top: 6px;
  line-height: 1.25;
}

.metric-value {
  font-size: 24px;
  font-weight: 720;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.metric-foot {
  color: var(--muted);
  font-size: 12px;
}

.badge {
  padding: 0 8px;
  background: var(--soft);
  color: var(--muted);
  font-size: 12px;
}

.metric-card .badge {
  min-width: 58px;
  min-height: 34px;
  justify-content: center;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 720;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.badge.good,
.metric-card .badge.good {
  background: var(--green-soft);
  color: var(--green);
}

.badge.bad,
.metric-card .badge.bad {
  background: var(--rose-soft);
  color: var(--rose);
}

.badge.warn,
.metric-card .badge.warn {
  background: var(--orange-soft);
  color: var(--orange);
}

.badge.blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.badge.violet {
  background: var(--violet-soft);
  color: var(--violet);
}

.store-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 16px;
}

.diagnosis-hero {
  gap: 16px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(15, 139, 120, 0.08), rgba(52, 104, 216, 0.06)),
    var(--surface);
}

.store-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.store-title {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.store-title strong {
  font-size: 22px;
  font-weight: 720;
  overflow-wrap: anywhere;
}

.score-block {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.score-ring {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--surface) 0 54%, transparent 55%),
    conic-gradient(var(--green) 0 var(--score), var(--line-soft) 0);
  color: var(--text);
  font-size: 22px;
  font-weight: 720;
}

.diagnosis-copy {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(15, 139, 120, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.diagnosis-copy strong {
  line-height: 1.45;
}

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

.action-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 13px;
}

.action-item > span:nth-child(2) {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.action-item small {
  color: var(--muted);
  line-height: 1.45;
}

.num-dot {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 720;
}

.health-grid,
.matrix-list,
.rule-list {
  display: grid;
  gap: 10px;
}

.health-row,
.matrix-row {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 52px;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}

.health-row strong,
.matrix-row strong {
  color: var(--text);
  font-size: 13px;
}

.matrix-row {
  grid-template-columns: 80px minmax(0, 1fr) 72px;
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--soft);
}

.diagnostic-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 10px;
}

.benchmark-card {
  min-height: 136px;
}

.compare-list {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}

.compare-list span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.compact-note {
  min-width: 174px;
}

.compact-note span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
}

.compact-note i {
  width: 16px;
  height: 3px;
  border-radius: 999px;
}

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

.mini-panel {
  min-width: 0;
  display: grid;
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.rule {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 12px;
}

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

.cause-card .badge {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.switches,
.focus-filters {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 2px;
}

.section-head > .switches,
.section-head > .focus-filters {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
}

.switches button,
.focus-chip {
  flex: 0 0 auto;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 10px;
  background: var(--surface);
  color: var(--muted);
  font-size: 12px;
}

.switches button.active,
.focus-chip.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.chart-box {
  position: relative;
  min-height: 330px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fbfdff, #fff);
  overflow: hidden;
}

.chart {
  display: block;
  width: 100%;
  height: 330px;
  overflow: visible;
}

.chart text {
  fill: var(--muted);
  font-size: 12px;
}

.gridline {
  stroke: var(--line);
  stroke-width: 1;
}

.trend-path {
  fill: none;
  stroke: var(--green);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trend-area {
  fill: rgba(15, 139, 120, 0.11);
}

.hover-line {
  stroke: #98a2b3;
  stroke-dasharray: 4 4;
}

.chart-hit-area {
  cursor: crosshair;
}

.chart-note {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  gap: 6px;
  min-width: 188px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  font-size: 12px;
}

.chart-tooltip {
  position: absolute;
  z-index: 20;
  display: none;
  min-width: 156px;
  max-width: min(240px, calc(100% - 20px));
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  pointer-events: none;
  font-size: 12px;
}

.chart-tooltip.show {
  display: grid;
  gap: 7px;
}

.chart-tooltip span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  white-space: nowrap;
}

.chart-tooltip i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
}

.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 16px;
}

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

.table-wrap {
  min-width: 0;
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}

th,
td {
  padding: 10px 9px;
  border-bottom: 1px solid var(--line-soft);
  text-align: right;
  white-space: nowrap;
  vertical-align: top;
}

th {
  background: var(--soft);
  font-weight: 650;
}

th:first-child,
td:first-child,
th:nth-child(2),
td:nth-child(2) {
  text-align: left;
}

tbody tr {
  background: var(--surface);
}

tbody tr:hover {
  background: #fbfdff;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
  min-width: 130px;
}

.tag-list.left {
  justify-content: flex-start;
  min-width: 0;
}

.advice {
  max-width: 260px;
  min-width: 190px;
  color: var(--muted);
  line-height: 1.45;
  white-space: normal;
  text-align: left;
}

.link-button {
  min-height: 30px;
  padding: 0 10px;
}

.product-mix {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.mix-donut {
  display: grid;
  place-items: center;
}

.donut {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--green) var(--a), var(--blue) 0 var(--b), var(--orange) 0 var(--c), var(--line-soft) 0);
}

.donut::after {
  content: attr(data-label);
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  font-weight: 720;
  text-align: center;
  white-space: pre-line;
}

.bar-list {
  display: grid;
  gap: 12px;
}

.bar-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.bar {
  height: 10px;
  border-radius: 999px;
  background: #edf2f7;
  overflow: hidden;
}

.bar i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.bar i.good {
  background: var(--green);
}

.bar i.warn {
  background: var(--orange);
}

.bar i.bad {
  background: var(--rose);
}

.bar i.blue {
  background: var(--blue);
}

.alert {
  border-radius: 8px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.alert.success {
  border-color: rgba(15, 139, 120, 0.28);
  color: var(--green);
}

.alert.error {
  border-color: rgba(211, 77, 106, 0.28);
  color: var(--rose);
}

.upload-form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.empty {
  color: var(--muted);
  padding: 26px 8px;
  text-align: center;
}

.mobile-card-list {
  display: none;
}

.mobile-rank-card {
  display: grid;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-rank-card:last-child {
  border-bottom: 0;
}

.mobile-rank-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.mobile-rank-title strong {
  font-weight: 650;
}

.mobile-rank-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
}

.mobile-rank-metric {
  display: grid;
  gap: 3px;
}

.mobile-rank-metric span {
  color: var(--muted);
  font-size: 12px;
}

.mobile-rank-metric strong {
  font-weight: 650;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-panel {
  width: min(420px, 100%);
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.login-form {
  display: grid;
  gap: 14px;
}

@media (max-width: 1240px) {
  .toolbar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-two,
  .store-summary-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 920px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
    grid-template-rows: auto auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .side-nav {
    display: flex;
    overflow-x: auto;
  }

  .side-nav .tab {
    flex: 0 0 auto;
    width: auto;
  }

  .side-card {
    display: none;
  }

  .grid-three,
  .product-mix,
  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .topbar,
  .workspace {
    padding-left: 14px;
    padding-right: 14px;
  }

  .topline,
  .section-head,
  .store-title-row {
    display: grid;
  }

  .top-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .status-popover {
    left: 0;
    right: auto;
    grid-template-columns: 1fr;
  }

  .toolbar,
  .grid-three,
  .product-mix,
  .diagnostic-metrics,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .score-block {
    justify-items: start;
  }

  .action-item {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .action-item .badge {
    grid-column: 2;
    justify-self: start;
  }

  .metric-list {
    grid-template-columns: 1fr;
  }

  .chart-note {
    position: static;
    margin: 10px;
  }

  .has-mobile-cards table {
    display: none;
  }

  .has-mobile-cards .mobile-card-list {
    display: grid;
    padding: 0 12px;
  }

}
