:root {
  --bg: #f3f6fa;
  --bg-soft: #edf2f7;
  --panel: #ffffff;
  --panel-soft: #f8fafc;
  --sidebar: #34384a;
  --sidebar-deep: #2b3040;
  --line: #e5eaf1;
  --text: #182333;
  --muted: #6b7280;
  --accent: #1aa05a;
  --accent-deep: #137740;
  --accent-soft: #e8f8ef;
  --info: #3b82f6;
  --info-soft: #eaf2ff;
  --warn: #f59e0b;
  --warn-soft: #fff4da;
  --danger: #ef4444;
  --danger-soft: #fee9e9;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.05);
  --font-body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(26, 160, 90, 0.06), transparent 24%),
    linear-gradient(180deg, #f7f9fc 0%, #f2f5f9 100%);
  color: var(--text);
  font-family: var(--font-body);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.sidebar {
  position: sticky;
  top: 0;
  min-height: 100vh;
  padding: 24px 18px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(180deg, var(--sidebar) 0%, var(--sidebar-deep) 100%);
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.brand {
  display: grid;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 0%, rgba(61, 210, 124, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(120, 211, 160, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 28px rgba(9, 14, 22, 0.14);
}

.brand-mark {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.18), transparent 44%);
  box-shadow:
    0 14px 24px rgba(18, 126, 69, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.brand-mark-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-copy {
  display: grid;
  gap: 8px;
}

.brand-eyebrow {
  display: inline-block;
  justify-self: start;
  color: rgba(214, 239, 224, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-copy h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.7;
  max-width: none;
}

.nav-caption {
  padding: 4px 10px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-group {
  display: grid;
  gap: 8px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.84);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-item:hover {
  transform: translateX(2px);
  background: rgba(255, 255, 255, 0.08);
}

.nav-item.is-active {
  background: linear-gradient(135deg, rgba(26, 160, 90, 0.96), rgba(18, 128, 68, 0.96));
  box-shadow: 0 14px 24px rgba(26, 160, 90, 0.2);
  color: #fff;
}

.nav-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 700;
}

.nav-text {
  display: grid;
  gap: 2px;
}

.nav-text strong {
  font-size: 15px;
  line-height: 1.2;
}

.nav-text span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  line-height: 1.5;
}

.nav-item.is-active .nav-text span {
  color: rgba(255, 255, 255, 0.8);
}

.sidebar-foot {
  margin-top: auto;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.8;
}

.sidebar-foot strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 13px;
}

.main {
  padding: 22px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(214, 223, 236, 0.9);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 246, 0.96));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.topbar.is-home {
  padding: 30px 30px 32px;
  border-radius: 34px;
  background:
    radial-gradient(circle at right top, rgba(34, 187, 106, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(242, 249, 245, 0.97));
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.08);
}

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

.headline-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.headline-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.headline h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.topbar.is-home .headline h2 {
  font-size: 40px;
  line-height: 1.08;
}

.headline p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 680px;
}

.topbar.is-home .headline p {
  font-size: 17px;
  line-height: 1.85;
  max-width: 720px;
}

.topbar-side {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.top-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-size: 13px;
}

.chip-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(26, 160, 90, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(26, 160, 90, 0.28);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(26, 160, 90, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(26, 160, 90, 0);
  }
}

.page-stack {
  display: grid;
  gap: 18px;
}

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

.summary-card {
  padding: 20px;
  border-radius: var(--radius-xl);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.summary-card .label {
  color: var(--muted);
  font-size: 13px;
}

.summary-card .value {
  margin-top: 10px;
  color: var(--accent-deep);
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
}

.summary-card .note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.workflow-panel,
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--line);
}

.panel-title {
  display: grid;
  gap: 6px;
}

.panel-title h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.panel-title p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.panel-body {
  padding: 24px;
}

.workflow-body {
  padding: 20px 22px;
}

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

.workflow-step {
  position: relative;
  padding: 16px 14px;
  border-radius: 18px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  color: var(--muted);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.workflow-step:hover {
  transform: translateY(-1px);
  border-color: #d5deea;
}

.workflow-step.is-active {
  background: linear-gradient(135deg, rgba(26, 160, 90, 0.12), rgba(26, 160, 90, 0.04));
  border-color: rgba(26, 160, 90, 0.24);
  color: var(--text);
}

.workflow-step.is-active .workflow-index {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
}

.workflow-index {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #e7edf5;
  color: #5b6472;
  font-size: 12px;
  font-weight: 700;
}

.workflow-step h4 {
  margin: 12px 0 4px;
  font-size: 15px;
  line-height: 1.3;
}

.workflow-step p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

.panel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.panel-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.searchbar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: min(520px, 100%);
  min-height: 56px;
  padding: 0 16px;
  border-radius: 20px;
  border: 1px solid #d9e2ee;
  background: linear-gradient(180deg, #fbfcfe, #f5f8fb);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.searchbar span {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.searchbar input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  outline: none;
  font-size: 15px;
}

.searchbar input::placeholder {
  color: #8b95a4;
}

.button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 14px 26px rgba(26, 160, 90, 0.16);
}

.button.secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.button.ghost {
  background: var(--panel-soft);
  color: var(--muted);
  border: 1px solid var(--line);
}

.panel-actions .button.primary {
  min-width: 144px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.meta-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
}

th {
  background: #fbfcfd;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

tbody tr {
  cursor: pointer;
  transition: background 0.2s ease;
}

tbody tr:hover {
  background: #f8fcfa;
}

tbody tr.is-active {
  background: #effaf3;
}

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

.table-title {
  display: block;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
}

.table-sub {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.status.good {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.status.pending {
  background: #eff3f7;
  color: #5f6673;
}

.status.warn {
  background: var(--warn-soft);
  color: #b45309;
}

.status.info {
  background: var(--info-soft);
  color: #1d4ed8;
}

.status.danger {
  background: var(--danger-soft);
  color: #b91c1c;
}

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

.row-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
}

.row-action.primary {
  background: var(--info-soft);
  color: #2563eb;
}

.row-action.ghost {
  background: var(--panel-soft);
  color: var(--muted);
  border: 1px solid var(--line);
}

.row-action.danger {
  background: var(--danger-soft);
  color: #dc2626;
}

.detail-panel {
  position: sticky;
  top: 20px;
}

.detail-hero {
  padding: 20px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(26, 160, 90, 0.08), rgba(255, 255, 255, 1)),
    #fff;
  border: 1px solid #d8f2e3;
  margin-bottom: 16px;
}

.detail-hero h4 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
}

.detail-hero p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  font-size: 12px;
}

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

.metric-box {
  padding: 14px;
  border-radius: 16px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
}

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

.metric-box .value {
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.progress {
  margin-bottom: 16px;
}

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

.progress-bar {
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  background: #e7edf4;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #29bb68, #16874a);
}

.subsection {
  margin-bottom: 16px;
}

.subsection:last-child {
  margin-bottom: 0;
}

.subsection h5 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.2;
}

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

.list-item {
  padding: 14px;
  border-radius: 16px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
}

.list-item strong {
  display: block;
  font-size: 14px;
  line-height: 1.5;
}

.list-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
}

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

.module-card {
  padding: 18px;
  border-radius: 18px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.module-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: #d5deea;
}

.module-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.module-card-head strong {
  font-size: 18px;
  line-height: 1.3;
}

.module-card-count {
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.module-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.module-card-foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}

.empty {
  padding: 28px 20px;
  border-radius: 20px;
  border: 1px dashed #ced7e3;
  background: linear-gradient(180deg, #fbfcfe, #f7f9fc);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}

.dialog::backdrop {
  background: rgba(15, 23, 42, 0.42);
}

.dialog {
  width: min(720px, calc(100% - 24px));
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 22px 16px;
  border-bottom: 1px solid var(--line);
}

.dialog-title h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.dialog-title p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.dialog-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

.dialog-body {
  padding: 22px;
}

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

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

.field.is-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d9e0ea;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(26, 160, 90, 0.42);
  box-shadow: 0 0 0 4px rgba(26, 160, 90, 0.08);
}

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

.helper {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.footer {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
}

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

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

  .panel-layout,
  .home-grid {
    grid-template-columns: 1fr;
  }

  .detail-panel {
    position: static;
  }
}

@media (max-width: 980px) {
  .module-card-grid,
  .form-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }
}

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

  .sidebar {
    position: static;
    min-height: auto;
  }

  .nav-group {
    grid-template-columns: 1fr;
  }

  .main {
    padding: 14px;
  }

  .summary-grid,
  .workflow-grid,
  .module-card-grid {
    grid-template-columns: 1fr;
  }

  .panel-header,
  .panel-body,
  .workflow-body,
  .dialog-body,
  .dialog-header {
    padding: 18px;
  }

  .topbar {
    padding: 18px;
    border-radius: 22px;
  }

  .searchbar {
    min-width: 100%;
  }

  .panel-actions .button.primary,
  .topbar-side .button {
    width: 100%;
  }

  .table-wrap table {
    min-width: 0;
  }

  .table-wrap thead {
    display: none;
  }

  .table-wrap tbody,
  .table-wrap tr,
  .table-wrap td {
    display: block;
    width: 100%;
  }

  .table-wrap tbody tr {
    margin-bottom: 12px;
    padding: 14px 14px 6px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #fff;
  }

  .table-wrap td {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--line);
    text-align: right;
  }

  .table-wrap td:last-child {
    border-bottom: 0;
  }

  .table-wrap td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    flex: 0 0 88px;
  }

  .table-title,
  .table-sub {
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
