:root {
  color-scheme: dark;
  --bg: #07110d;
  --surface: rgba(10, 22, 17, 0.84);
  --surface-strong: #101915;
  --line: rgba(255, 255, 255, 0.14);
  --text: #f4f8f5;
  --muted: #a8b6ae;
  --green: #44d17b;
  --cyan: #70d7ff;
  --gold: #f3c76a;
  --danger: #ff7f6e;
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

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

button {
  font: inherit;
}

.topbar {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 13, 0.76);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 68px;
  padding: 0 28px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-radius: 7px;
  color: #04100b;
  font-weight: 900;
  letter-spacing: 0;
  padding: 7px 9px;
}

.brand-logo {
  display: block;
  height: 46px;
  object-fit: contain;
  width: 156px;
}

.brand-logo-final {
  height: 48px;
  width: 176px;
}

.brand-text {
  color: var(--text);
  font-weight: 750;
}

.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.nav {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  white-space: nowrap;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  padding: 8px 0;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.nav a.active {
  border-bottom: 2px solid var(--green);
}

.page {
  display: none;
}

.page.active {
  display: block;
}

.hero {
  min-height: calc(100vh - 68px);
  overflow: hidden;
  position: relative;
}

.hero-media {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(3, 9, 7, 0.92), rgba(3, 9, 7, 0.54), rgba(3, 9, 7, 0.1)),
    linear-gradient(180deg, rgba(7, 17, 13, 0.1), var(--bg));
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 760px;
  padding: 9vh 28px 170px;
  position: relative;
  width: min(100%, 1180px);
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(38px, 6.4vw, 76px);
  line-height: 1.02;
  margin-bottom: 22px;
  max-width: 860px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  margin-bottom: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

.hero-copy {
  color: #d9e5df;
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.65;
  max-width: 720px;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
.filter,
.share-button,
.match-button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 760;
  justify-content: center;
}

.button {
  min-height: 48px;
  padding: 0 18px;
}

.primary {
  background: var(--text);
  border-color: var(--text);
  color: #06100c;
}

.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.hero-panel {
  align-items: center;
  background: rgba(5, 13, 10, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  bottom: 36px;
  display: flex;
  gap: 14px;
  left: 28px;
  padding: 16px;
  position: absolute;
  width: min(420px, calc(100% - 56px));
}

.hero-panel p {
  color: var(--muted);
  margin-bottom: 4px;
}

.status-dot {
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 24px var(--green);
  flex: 0 0 12px;
  height: 12px;
  width: 12px;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  min-height: calc(100vh - 68px);
  padding: 76px 28px 80px;
}

.compact {
  padding-top: 56px;
}

.section-heading {
  margin-bottom: 24px;
}

.row-heading {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 3px;
}

.filter {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  min-height: 38px;
  min-width: max-content;
  padding: 0 13px;
}

.filter.active {
  background: rgba(68, 209, 123, 0.16);
  border-color: rgba(68, 209, 123, 0.5);
  color: var(--text);
}

.oracle-board {
  background:
    linear-gradient(135deg, rgba(68, 209, 123, 0.18), transparent 42%),
    var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.featured-main,
.featured-side,
.match-card,
.team-card,
.player-card,
.metric-card {
  border: 1px solid var(--line);
}

.featured-main,
.featured-side {
  border-width: 0;
  padding: 28px;
}

.featured-side {
  background: rgba(255, 255, 255, 0.04);
  border-left-width: 1px;
}

.fixture-meta,
.muted,
.team-meta {
  color: var(--muted);
}

.versus {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto 1fr;
  margin: 26px 0;
}

.team-name {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.team-name:last-child {
  text-align: right;
}

.vs {
  color: var(--gold);
  font-weight: 900;
}

.prediction {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.prediction strong {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.prob-row {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.odds-signal {
  background: rgba(243, 199, 106, 0.08);
  border: 1px solid rgba(243, 199, 106, 0.22);
  border-radius: var(--radius);
  display: grid;
  gap: 6px;
  margin: 16px 0;
  padding: 12px;
}

.odds-signal strong {
  color: var(--gold);
}

.odds-signal span {
  color: var(--text);
  font-size: 20px;
  font-weight: 850;
}

.prediction-disclaimer {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin-top: 16px;
  padding: 10px 12px;
}

.prob-label {
  display: flex;
  justify-content: space-between;
}

.bar {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.bar span {
  background: linear-gradient(90deg, var(--green), var(--cyan));
  display: block;
  height: 100%;
}

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

.match-card {
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius);
  display: grid;
  gap: 16px;
  grid-template-columns: 150px minmax(0, 1fr) 170px;
  padding: 18px;
}

.match-card h3 {
  margin-bottom: 6px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 7px 9px;
}

.pill.published {
  border-color: rgba(68, 209, 123, 0.5);
  color: var(--green);
}

.pill.finished {
  border-color: rgba(112, 215, 255, 0.5);
  color: var(--cyan);
}

.pill.locked {
  border-color: rgba(243, 199, 106, 0.42);
  color: var(--gold);
}

.match-button,
.share-button {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  min-height: 42px;
  padding: 0 13px;
  width: 100%;
}

.share-button {
  margin-top: 14px;
}

.split {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.team-grid,
.player-list {
  display: grid;
  gap: 12px;
}

.team-grid {
  gap: 24px;
}

.team-group {
  display: grid;
  gap: 12px;
}

.team-group-heading {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

.team-group-heading h3 {
  font-size: 22px;
}

.team-group-heading span {
  color: var(--muted);
  font-size: 13px;
}

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

.team-card,
.player-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
}

.team-title {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.team-flag {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: inline-flex;
  flex: 0 0 auto;
  height: 48px;
  justify-content: center;
  overflow: hidden;
  width: 56px;
}

.team-flag-img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.team-flag-fallback {
  color: var(--muted);
  font-size: 13px;
}

.team-title h3 {
  margin: 0;
}

.team-title p {
  color: var(--muted);
  margin: 2px 0 0;
}

.team-body {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 190px;
  margin-top: 8px;
}

.team-profile-facts {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.team-profile-facts div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
}

.team-profile-facts span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}

.team-profile-facts strong {
  color: var(--text);
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.team-card h3,
.player-card h3 {
  margin-bottom: 8px;
}

.players-panel {
  border-top: 1px solid var(--line);
  margin-top: 44px;
  padding-top: 36px;
}

.ratings {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 10px;
}

.metric-card span {
  color: var(--muted);
  display: block;
  font-size: 12px;
}

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

.skill-hex {
  align-items: center;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.skill-hex svg {
  height: 144px;
  width: 144px;
}

.hex-grid {
  fill: rgba(255, 255, 255, 0.03);
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1.5;
}

.hex-grid.muted {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
}

.hex-axis {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}

.hex-value {
  fill: rgba(68, 209, 123, 0.26);
  stroke: var(--green);
  stroke-width: 2;
}

.skill-list {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

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

.skill-list strong {
  color: var(--text);
  display: block;
  font-size: 13px;
}

.team-players {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
}

.team-players h4 {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0;
}

.team-player-row {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.team-player-row span {
  font-weight: 750;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.team-player-row strong,
.team-player-row em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 650;
}

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

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

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

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

.hit-rate {
  color: var(--green);
}

.footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: 80px;
  padding: 28px;
}

.match-dialog {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  max-width: 860px;
  padding: 0;
  width: min(calc(100% - 28px), 860px);
}

.match-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.dialog-inner {
  padding: 28px;
}

.icon-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  cursor: pointer;
  font-size: 26px;
  height: 42px;
  line-height: 1;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
}

.share-preview {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding-top: 22px;
}

.share-preview img {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: block;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  width: min(100%, 360px);
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-body {
  background:
    linear-gradient(135deg, rgba(68, 209, 123, 0.1), transparent 32%),
    var(--bg);
}

.admin-shell {
  margin: 0 auto;
  max-width: 1240px;
  padding: 42px 28px 90px;
}

.admin-login {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) 420px;
  min-height: calc(100vh - 160px);
  padding-top: 70px;
}

.admin-dashboard {
  display: grid;
  gap: 42px;
}

.admin-hero {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.admin-hero h1,
.admin-login h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
}

.admin-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(92px, 1fr));
  min-width: 460px;
}

.admin-analytics-grid {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

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

.trend-bars {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  padding-top: 14px;
}

.trend-row {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 48px minmax(0, 1fr) 112px;
}

.trend-row span,
.trend-row strong {
  color: var(--muted);
  font-size: 12px;
}

.trend-row div {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.trend-row i {
  background: linear-gradient(90deg, var(--green), var(--cyan));
  border-radius: inherit;
  display: block;
  height: 100%;
}

.admin-section {
  border-top: 1px solid var(--line);
  padding-top: 36px;
}

.admin-grid {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
}

.admin-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  padding: 20px;
}

.admin-card h3 {
  margin-bottom: 4px;
}

.admin-card label {
  color: var(--muted);
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 750;
}

.admin-card input,
.admin-card textarea,
.admin-card select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font: inherit;
  min-height: 42px;
  padding: 10px 12px;
  width: 100%;
}

.admin-card textarea {
  min-height: 88px;
  resize: vertical;
}

.admin-card select option {
  background: #102018;
}

.form-pair,
.form-triple {
  display: grid;
  gap: 10px;
}

.form-pair {
  grid-template-columns: repeat(2, 1fr);
}

.form-triple {
  grid-template-columns: repeat(3, 1fr);
}

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

.admin-mini-list {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  margin-top: 4px;
  padding-top: 12px;
}

.admin-mini-list p {
  margin-bottom: 0;
}

.compact-list {
  margin-top: 18px;
}

.admin-row {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 15px;
}

.admin-row p {
  margin-bottom: 0;
}

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

@media (max-width: 820px) {
  body {
    padding-bottom: 76px;
  }

  .topbar {
    align-items: center;
    backdrop-filter: none;
    border-bottom-color: rgba(255, 255, 255, 0.08);
    justify-content: center;
    min-height: 46px;
    padding: 6px 12px;
  }

  .brand-logo-final {
    height: 26px;
    width: 96px;
  }

  .nav {
    background: rgba(7, 17, 13, 0.96);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, 1fr);
    left: 0;
    overflow: visible;
    padding: 8px 10px calc(10px + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    z-index: 20;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    align-items: center;
    border: 0;
    border-radius: 8px;
    display: flex;
    font-size: 12px;
    font-weight: 760;
    justify-content: center;
    min-height: 44px;
    padding: 0 4px;
  }

  .nav a.active {
    background: rgba(68, 209, 123, 0.14);
    border-bottom: 0;
    color: var(--text);
  }

  .hero {
    min-height: calc(100vh - 46px);
  }

  .hero-content {
    padding: 48px 18px 132px;
  }

  h1 {
    font-size: clamp(32px, 9.5vw, 40px);
    line-height: 1.08;
    max-width: 100%;
    word-break: break-all;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.65;
    word-break: break-all;
  }

  .hero-panel {
    bottom: 20px;
    left: 18px;
    width: calc(100% - 36px);
  }

  .section {
    min-height: calc(100vh - 46px);
    padding-bottom: 48px;
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 26px;
  }

  .compact {
    padding-top: 26px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .row-heading {
    gap: 14px;
  }

  .filters {
    margin-left: -18px;
    margin-right: -18px;
    padding: 0 18px 4px;
  }

  .filter {
    min-height: 36px;
    padding: 0 12px;
  }

  h2 {
    font-size: clamp(26px, 8vw, 32px);
    overflow-wrap: anywhere;
  }

  .row-heading,
  .featured-grid,
  .split,
  .match-card,
  .team-group-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .featured-side {
    border-left-width: 0;
    border-top-width: 1px;
  }

  .match-card {
    align-items: start;
    gap: 14px;
    padding: 16px;
  }

  .match-card h3 {
    font-size: 21px;
  }

  .match-button,
  .share-button {
    min-height: 44px;
  }

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

  .metric-card {
    padding: 8px;
  }

  .metric-card span {
    font-size: 11px;
  }

  .team-body {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .team-card {
    padding: 14px;
  }

  .team-profile-facts {
    gap: 6px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 10px;
  }

  .team-profile-facts div {
    padding: 8px;
  }

  .team-profile-facts span {
    font-size: 11px;
  }

  .team-profile-facts strong {
    font-size: 13px;
  }

  .skill-hex {
    align-items: center;
    gap: 8px;
    grid-template-columns: 104px minmax(0, 1fr);
    justify-items: start;
  }

  .skill-hex svg {
    height: 104px;
    width: 104px;
  }

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

  .team-players {
    margin-top: 12px;
    padding-top: 12px;
  }

  .team-player-row {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .table-wrap {
    border-left-width: 0;
    border-right-width: 0;
    margin-left: -18px;
    margin-right: -18px;
    overflow-x: auto;
  }

  table {
    font-size: 14px;
    min-width: 100%;
  }

  th,
  td {
    padding: 10px 7px;
  }

  th:first-child,
  td:first-child {
    padding-left: 12px;
    width: 42px;
  }

  th:nth-child(2),
  td:nth-child(2) {
    min-width: 76px;
  }

  th:last-child,
  td:last-child {
    padding-right: 12px;
  }

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

  .admin-shell {
    padding: 28px 18px 70px;
  }

  .admin-login,
  .admin-grid,
  .admin-hero,
  .admin-analytics-grid,
  .admin-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-stats,
  .analytics-metrics,
  .form-pair,
  .form-triple {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .trend-row {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .trend-row strong {
    grid-column: 2;
  }

  .row-actions {
    justify-content: flex-start;
  }
}
