:root {
  --nf12-gold: #A87830;
  --nf12-navy: #1E008A;
  --nf12-white: #FFFFFF;
}

.nf12-local-page {
  margin: 0;
  min-height: 100vh;
  background: #f4f2ef;
  padding: 24px;
  box-sizing: border-box;
}

.nf12-round-summary {
  --nf12-ink: #14121c;
  --nf12-muted: #696579;
  --nf12-line: rgba(30, 0, 138, 0.16);
  --nf12-soft: #f8f6f2;
  --nf12-panel: #ffffff;
  --nf12-home: var(--nf12-navy);
  --nf12-home-soft: #f0effb;
  --nf12-away: var(--nf12-gold);
  --nf12-away-soft: #fbf2e7;
  --nf12-chart-rest: #bfe5cd;
  --nf12-chart-active: #11693a;
  --nf12-badge-red: #c92828;
  color: var(--nf12-ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  width: 100%;
  max-width: none;
  margin: 0;
}

.nf12-round-summary * {
  box-sizing: border-box;
}

.nf12-dashboard {
  background: var(--nf12-white);
  border: 1px solid var(--nf12-line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(20, 18, 28, 0.08);
}

.nf12-hero {
  background: linear-gradient(135deg, var(--nf12-navy), #2e1596 58%, var(--nf12-gold));
  color: var(--nf12-white);
  padding: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.nf12-kicker {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0.84;
}

.nf12-title {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

.nf12-subtitle {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.nf12-select-wrap {
  display: grid;
  gap: 6px;
  min-width: 150px;
}

.nf12-selects {
  display: flex;
  align-items: end;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nf12-select-wrap label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.nf12-select-wrap select {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.14);
  color: var(--nf12-white);
  border-radius: 8px;
  padding: 10px 34px 10px 12px;
  font: inherit;
  font-weight: 700;
}

.nf12-select-wrap select:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.nf12-select-wrap option {
  color: var(--nf12-ink);
}

.nf12-content {
  padding: 24px;
  display: grid;
  gap: 24px;
}

.nf12-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.nf12-kpi {
  border: 1px solid var(--nf12-line);
  border-radius: 8px;
  padding: 14px;
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--nf12-panel);
}

.nf12-kpi__label {
  color: var(--nf12-muted);
  font-size: 12px;
  font-weight: 700;
}

.nf12-kpi__value {
  color: var(--nf12-navy);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.nf12-kpi__sep {
  color: var(--nf12-muted);
  margin: 0 2px;
}

.nf12-kpi__note {
  color: var(--nf12-muted);
  font-size: 12px;
}

.nf12-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: start;
  gap: 20px;
}

.nf12-main-grid > .nf12-section,
.nf12-main-grid > .nf12-match-column {
  align-self: start;
}

.nf12-section {
  display: grid;
  gap: 12px;
}

.nf12-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 22px;
}

.nf12-section-title {
  margin: 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--nf12-navy);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
}

.nf12-section-title::before {
  content: "";
  width: 4px;
  height: 15px;
  flex: 0 0 4px;
  background: var(--nf12-gold);
}

.nf12-section-title::after {
  content: "";
  height: 1px;
  min-width: 36px;
  flex: 1 1 auto;
  background: linear-gradient(90deg, var(--nf12-gold), rgba(168, 120, 48, 0.08));
}

.nf12-section-note {
  color: var(--nf12-muted);
  font-size: 12px;
}

.nf12-chart {
  border: 1px solid var(--nf12-line);
  border-radius: 8px;
  padding: 18px 14px 12px;
  height: 300px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  background: linear-gradient(180deg, #fff, var(--nf12-soft));
}

.nf12-bar-button {
  border: 0;
  background: transparent;
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 8px;
  padding: 0;
  cursor: pointer;
  color: var(--nf12-ink);
  font: inherit;
}

.nf12-bar {
  width: 100%;
  height: var(--nf12-bar-height);
  min-height: 8px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--nf12-chart-rest), #92d5aa);
  align-self: end;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.42);
  transform-origin: bottom;
  animation: nf12-bar-grow 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--nf12-bar-delay);
  animation-play-state: paused;
  transition: transform 160ms ease, background 160ms ease;
}

.nf12-chart.is-in-view .nf12-bar {
  animation-play-state: running;
}

.nf12-bar-button:hover .nf12-bar,
.nf12-bar-button:focus-visible .nf12-bar,
.nf12-bar-button.is-active .nf12-bar {
  background: linear-gradient(180deg, var(--nf12-chart-active), #0b4f2c);
  transform: scaleY(1) translateY(-3px);
}

@keyframes nf12-bar-grow {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

.nf12-bar-value {
  font-weight: 800;
  color: var(--nf12-navy);
  line-height: 1;
}

.nf12-bar-label {
  color: var(--nf12-muted);
  font-size: 11px;
  line-height: 1.2;
  min-height: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.nf12-match-panel {
  border: 1px solid var(--nf12-line);
  border-radius: 8px;
  padding: 16px;
  min-height: 258px;
  background: var(--nf12-panel);
}

.nf12-match-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.nf12-match-list {
  display: grid;
  gap: 12px;
}

.nf12-match {
  border-bottom: 1px solid rgba(30, 0, 138, 0.11);
  padding-bottom: 12px;
}

.nf12-match:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.nf12-match-score {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.nf12-match-score span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.nf12-match-score span:first-child {
  text-align: right;
}

.nf12-match-score span:last-child {
  text-align: left;
}

.nf12-score {
  color: var(--nf12-navy);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
  text-align: center;
}

.nf12-score-number {
  border-radius: 6px;
  min-width: 1.35em;
  padding: 2px 5px;
  font-weight: 900;
  line-height: 1.2;
}

.nf12-score-number--home.is-scoring {
  color: var(--nf12-home);
  background: var(--nf12-home-soft);
  box-shadow: inset 0 0 0 1px rgba(30, 0, 138, 0.24);
}

.nf12-score-number--away.is-scoring {
  color: var(--nf12-away);
  background: var(--nf12-away-soft);
  box-shadow: inset 0 0 0 1px rgba(168, 120, 48, 0.3);
}

.nf12-score-sep {
  color: var(--nf12-muted);
}

.nf12-match-meta,
.nf12-goal-meta {
  color: var(--nf12-muted);
  font-size: 12px;
}

.nf12-goal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.nf12-tag {
  border: 1px solid rgba(168, 120, 48, 0.28);
  border-radius: 999px;
  padding: 3px 8px;
  color: #4a3214;
  background: #fbf2e7;
  font-size: 12px;
  font-weight: 700;
}

.nf12-tag--home {
  border-color: rgba(30, 0, 138, 0.28);
  color: var(--nf12-home);
  background: var(--nf12-home-soft);
}

.nf12-tag--away {
  border-color: rgba(168, 120, 48, 0.34);
  color: var(--nf12-away);
  background: var(--nf12-away-soft);
}

.nf12-lists {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.nf12-table-wrap {
  border: 1px solid var(--nf12-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--nf12-panel);
}

.nf12-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.nf12-table th,
.nf12-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(30, 0, 138, 0.1);
  text-align: left;
  vertical-align: top;
}

.nf12-table th {
  background: #f5f2fb;
  color: var(--nf12-navy);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.nf12-table tr:last-child td {
  border-bottom: 0;
}

.nf12-table .num {
  text-align: right;
  white-space: nowrap;
}

.nf12-attendance-chart {
  display: grid;
  gap: 10px;
}

.nf12-attendance-row {
  display: grid;
  grid-template-columns: minmax(190px, 1.15fr) minmax(120px, 1fr) 7.5em auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
  border: 1px solid var(--nf12-line);
  border-radius: 8px;
  padding: 14px;
  color: inherit;
  background: var(--nf12-panel);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.nf12-attendance-row.has-review {
  cursor: pointer;
}

.nf12-attendance-row.has-review:hover,
.nf12-attendance-row.has-review:focus-visible {
  border-color: rgba(0, 0, 130, 0.28);
  box-shadow: 0 8px 22px rgba(20, 18, 28, 0.08);
  outline: 0;
  transform: translateY(-1px);
}

.nf12-attendance-label {
  min-width: 0;
  color: var(--nf12-ink);
  display: block;
  align-items: center;
  font-size: 18px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

a.nf12-attendance-label {
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

a.nf12-attendance-label:hover,
a.nf12-attendance-label:focus-visible {
  color: var(--nf12-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transform: translateX(2px);
}

.nf12-attendance-card-chevron {
  color: var(--nf12-navy);
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
  justify-self: end;
}

.nf12-attendance-card-wrap {
  display: grid;
  gap: 7px;
}

.nf12-attendance-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 4.6em minmax(0, 1fr);
  align-items: baseline;
  gap: 10px;
}

.nf12-attendance-home {
  min-width: 0;
  text-align: right;
  overflow-wrap: anywhere;
}

.nf12-attendance-score {
  color: var(--nf12-navy);
  font-size: 20px;
  font-weight: 950;
  text-align: center;
  white-space: nowrap;
}

.nf12-attendance-away {
  min-width: 0;
  text-align: left;
  overflow-wrap: anywhere;
}

.nf12-recent-form {
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) 4.6em minmax(max-content, 1fr);
  align-items: center;
  gap: 10px;
}

.nf12-recent-form-side {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: max-content;
}

.nf12-recent-form-side--home {
  justify-content: flex-end;
}

.nf12-recent-form-side--away {
  justify-content: flex-start;
}

.nf12-form-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--nf12-white);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  padding-bottom: 1px;
  opacity: 0;
  transform: translateX(-6px) scale(0.82);
  animation: nf12-form-icon-in 320ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: calc(var(--nf12-attendance-delay, 0ms) + 120ms);
  animation-play-state: paused;
}

.nf12-attendance-chart.is-in-view .nf12-form-icon {
  animation-play-state: running;
}

.nf12-form-icon:nth-child(2) {
  animation-delay: calc(var(--nf12-attendance-delay, 0ms) + 180ms);
}

.nf12-form-icon:nth-child(3) {
  animation-delay: calc(var(--nf12-attendance-delay, 0ms) + 240ms);
}

.nf12-form-icon:nth-child(4) {
  animation-delay: calc(var(--nf12-attendance-delay, 0ms) + 300ms);
}

.nf12-form-icon:nth-child(5) {
  animation-delay: calc(var(--nf12-attendance-delay, 0ms) + 360ms);
}

.nf12-form-icon.is-win {
  background: #168447;
}

.nf12-form-icon.is-draw {
  background: #8b8797;
}

.nf12-form-icon.is-loss {
  background: #c92828;
}

.nf12-form-icon.is-current {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
  font-size: 14px;
  box-shadow: 0 3px 9px rgba(20, 18, 28, 0.16);
}

.nf12-attendance-link-icon {
  display: none;
}

.nf12-attendance-link-icon::before {
  content: "↗";
  font-size: 11px;
  line-height: 1;
}

.nf12-attendance-track {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: #eceaf5;
}

.nf12-attendance-bar {
  display: block;
  width: var(--nf12-attendance-width);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0b4f2c, #168447 58%, #92d5aa);
  transform-origin: left;
  animation: nf12-attendance-grow 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--nf12-attendance-delay);
  animation-play-state: paused;
}

.nf12-attendance-chart.is-in-view .nf12-attendance-bar {
  animation-play-state: running;
}

.nf12-attendance-value {
  color: var(--nf12-navy);
  font-size: 13px;
  font-weight: 900;
  text-align: right;
  justify-self: end;
  white-space: nowrap;
}

@keyframes nf12-attendance-grow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes nf12-form-icon-in {
  from {
    opacity: 0;
    transform: translateX(-6px) scale(0.82);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.nf12-accordion-toggle {
  appearance: none;
  border: 1px solid var(--nf12-line);
  border-radius: 8px;
  width: 100%;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--nf12-ink);
  background: var(--nf12-panel);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nf12-accordion-toggle .nf12-section-title {
  font-weight: 950;
}

.nf12-accordion-toggle:hover,
.nf12-accordion-toggle:focus-visible {
  border-color: rgba(30, 0, 138, 0.34);
  background: var(--nf12-soft);
  box-shadow: 0 8px 22px rgba(20, 18, 28, 0.07);
}

.nf12-accordion-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nf12-accordion-meta .nf12-section-note {
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--nf12-white);
  background: var(--nf12-badge-red);
  font-weight: 900;
  line-height: 1.2;
}

.nf12-accordion-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--nf12-navy);
  border-bottom: 2px solid var(--nf12-navy);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 220ms ease;
}

.nf12-accordion-toggle.is-open .nf12-accordion-icon {
  transform: rotate(225deg) translate(-1px, -1px);
}

.nf12-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}

.nf12-accordion-inner {
  padding-top: 12px;
}

.nf12-scorer-list {
  border: 1px solid var(--nf12-line);
  border-radius: 8px;
  background: var(--nf12-panel);
  overflow: hidden;
}

.nf12-scorer-item {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(30, 0, 138, 0.1);
}

.nf12-scorer-item:last-child {
  border-bottom: 0;
}

.nf12-scorer-main {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.nf12-scorer-head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.nf12-scorer-name {
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
  color: var(--nf12-ink);
}

.nf12-scorer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.nf12-scorer-badge {
  border-radius: 999px;
  color: var(--nf12-white);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  padding: 4px 8px;
  white-space: nowrap;
}

.nf12-scorer-badge.is-multi {
  background: #c92828;
}

.nf12-scorer-badge.is-sub {
  background: var(--nf12-gold);
}

.nf12-scorer-badge.is-first {
  background: #168447;
}

.nf12-scorer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 16px;
}

.nf12-scorer-meta {
  color: var(--nf12-muted);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.nf12-scorer-goals {
  color: var(--nf12-gold);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.nf12-scorer-goal-number {
  font-size: 28px;
}

.nf12-scorer-goal-unit {
  font-size: 13px;
}

.nf12-mini-list {
  border: 1px solid var(--nf12-line);
  border-radius: 8px;
  background: var(--nf12-panel);
  overflow: hidden;
}

.nf12-mini-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(30, 0, 138, 0.1);
}

.nf12-mini-item:last-child {
  border-bottom: 0;
}

.nf12-mini-name {
  font-weight: 800;
}

.nf12-mini-sub {
  color: var(--nf12-muted);
  font-size: 12px;
}

.nf12-mini-count {
  color: var(--nf12-gold);
  font-weight: 900;
  white-space: nowrap;
}

.nf12-empty,
.nf12-error {
  border: 1px dashed rgba(30, 0, 138, 0.24);
  border-radius: 8px;
  padding: 18px;
  color: var(--nf12-muted);
  background: var(--nf12-soft);
}

.nf12-error {
  border-color: rgba(168, 48, 48, 0.35);
  color: #8a1e1e;
}

@media (max-width: 900px) {
  .nf12-local-page {
    padding: 12px;
  }

  .nf12-hero {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .nf12-selects {
    justify-content: flex-start;
    width: 100%;
  }

  .nf12-content {
    padding: 16px;
  }

  .nf12-kpis,
  .nf12-main-grid,
  .nf12-lists {
    grid-template-columns: 1fr;
  }

  .nf12-kpis {
    gap: 10px;
  }

  .nf12-chart {
    height: 260px;
    gap: 6px;
    padding-inline: 10px;
  }
}

@media (max-width: 560px) {
  .nf12-selects {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nf12-select-wrap {
    min-width: 0;
    width: 100%;
  }

  .nf12-select-wrap select {
    width: 100%;
  }

  .nf12-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nf12-kpi {
    min-height: 92px;
  }

  .nf12-kpi__value {
    font-size: 24px;
  }

  .nf12-chart {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 4px;
    height: 230px;
    padding: 14px 8px 10px;
  }

  .nf12-bar-button {
    gap: 6px;
  }

  .nf12-bar-value {
    font-size: 12px;
  }

  .nf12-bar-label {
    font-size: 10px;
    min-height: 24px;
    word-break: keep-all;
  }

  .nf12-table,
  .nf12-table thead,
  .nf12-table tbody,
  .nf12-table tr,
  .nf12-table th,
  .nf12-table td {
    display: block;
  }

  .nf12-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .nf12-table tr {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(30, 0, 138, 0.1);
  }

  .nf12-table tr:last-child {
    border-bottom: 0;
  }

  .nf12-table td {
    display: grid;
    grid-template-columns: 5.5em minmax(0, 1fr);
    gap: 10px;
    padding: 4px 0;
    border-bottom: 0;
  }

  .nf12-table td::before {
    content: attr(data-label);
    color: var(--nf12-muted);
    font-size: 12px;
    font-weight: 800;
  }

  .nf12-table .num {
    text-align: left;
  }

  .nf12-attendance-row {
    grid-template-columns: minmax(0, 1fr) 20px;
    gap: 6px 10px;
    padding: 12px 10px;
  }

  .nf12-attendance-label {
    grid-column: 1 / 2;
    font-size: 15px;
    justify-self: center;
    width: 100%;
  }

  .nf12-attendance-card {
    grid-template-columns: minmax(0, 1fr) 3.8em minmax(0, 1fr);
    gap: 5px;
    justify-self: center;
    width: min(100%, 340px);
  }

  .nf12-attendance-score {
    font-size: 16px;
  }

  .nf12-recent-form {
    grid-template-columns: minmax(max-content, 1fr) 3.8em minmax(max-content, 1fr);
    justify-self: center;
    width: max-content;
    max-width: 100%;
    gap: 5px;
  }

  .nf12-form-icon {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
    font-size: 10px;
  }

  .nf12-form-icon.is-current {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
    font-size: 13px;
  }

  .nf12-attendance-value {
    grid-column: 1 / 2;
    justify-self: end;
    text-align: right;
  }

  .nf12-attendance-track {
    grid-column: 1 / 2;
  }

  .nf12-attendance-card-chevron {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
    align-self: center;
  }

  .nf12-scorer-item {
    padding: 12px;
  }

  .nf12-scorer-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .nf12-scorer-name {
    font-size: 16px;
  }

  .nf12-scorer-badges {
    max-width: 100%;
  }

  .nf12-scorer-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .nf12-scorer-goal-number {
    font-size: 25px;
  }

  .nf12-match-score {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }
}
