.score-embed {
  --bg: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #d1d5db;
  --accent: #111827;
  margin: 0;
  background: var(--bg);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 275px;
  max-height: 275px;
  padding: 20px;
  width: 100%;

}

.score-embed * {
  box-sizing: border-box;
}

.score-embed .score-shell {
  width: 1100px;
  max-width: 100%;
}

.score-embed .board-header {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.score-embed .board-header strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
  font-weight: 800;
}

.score-embed .score-layout {
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  align-items: center;
  gap: 20px;
}

.score-embed .logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.score-embed .logo-box img {
  max-width: 80%;
  max-height: 105px;
  object-fit: contain;
}

.score-embed .scoreboard {
  width: 100%;
}

.score-embed .top-line {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
  margin: 0 0 14px;
}

.score-embed .score-grid {
  display: grid;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.score-embed .inning-head {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-align: center;
}

.score-embed .cell {
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}

.score-embed .team-label {
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: #111111;
}

.score-embed .row-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: var(--line);
  margin: 4px 0;
}

.score-embed .total {
  font-weight: 800;
  color: var(--accent);
}

@media (max-width: 900px) {
  .score-embed .score-layout {
    grid-template-columns: 1fr;
  }

  .score-embed .scoreboard {
    overflow-x: auto;
  }

  .score-embed .score-grid {
    min-width: 650px;
  }

  .score-embed .logo-box img {
    max-height: 90px;
  }
}

.lineup-embed,
.lineup-embed * {
  box-sizing: border-box;
}

.lineup-embed {
  --header-bg: #dd3333;
  --line: #d9dde3;
  --text: #243447;
  --muted: #6b7c8f;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: var(--text);
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 10px;
  overflow: hidden;
}

.lineup-embed .card {
  width: 100%;
  max-width: 100%;
}

.lineup-embed .team-title {
  width: 100%;
  background: var(--header-bg);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  padding: 10px 14px;
  margin-bottom: 12px;
}

.lineup-team-title {
  color: #fff;
}

.lineup-embed table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.lineup-embed col.pos {
  width: 8%;
}

.lineup-embed col.name {
  width: 35%;
}

.lineup-embed col.stat {
  width: 7.125%;
}

.lineup-embed th,
.lineup-embed td {
  border: none;
}

.lineup-embed thead th {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  padding: 8px 6px;
  white-space: nowrap;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.lineup-embed tbody td,
.lineup-embed tfoot td {
  font-size: 12px;
  line-height: 1.2;
  padding: 10px 6px;
  vertical-align: middle;
  white-space: nowrap;
  border-bottom: 1px solid var(--line);
}

.lineup-embed th.num,
.lineup-embed td.num {
  text-align: center;
  padding-left: 2px;
  padding-right: 2px;
}

.lineup-embed td.name {
  font-size: 11px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lineup-embed tr.sub td.name {
  padding-left: 18px;
  color: var(--muted);
  font-style: italic;
}

.lineup-embed tr.sub td.replacement-pos {
  color: var(--muted);
}

.lineup-embed tfoot td {
  font-weight: 700;
  border-top: 2px solid #8b97a3;
  border-bottom: none;
  padding-top: 12px;
}

.lineup-embed tfoot td.label {
  text-transform: uppercase;
}

.lineup-events {
  background: #eef1f4;
  padding: 14px 16px;
  padding-top: 20px !important;
  font-size: 13px !important;
  margin-top: 16px;
}

.lineup-events-line {
  font-size: inherit !important;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .lineup-embed {
    padding: 8px;
  }

  .lineup-embed .team-title {
    font-size: 16px;
    padding: 9px 12px;
    margin-bottom: 10px;
  }

  .lineup-embed thead th {
    font-size: 10px;
    padding: 7px 4px;
  }

  .lineup-embed tbody td,
  .lineup-embed tfoot td {
    font-size: 10.5px;
    padding: 9px 4px;
  }

  .lineup-embed td.name {
    font-size: 10.5px;
  }

  .lineup-events {
    padding: 12px 14px;
    padding-top: 20px !important;
  }
}

@media (max-width: 700px) {
  .lineup-embed col.pos {
    width: 7%;
  }

  .lineup-embed col.name {
    width: 38%;
  }

  .lineup-embed col.stat {
    width: 6.875%;
  }

  .lineup-embed thead th {
    font-size: 9.5px;
    padding: 6px 3px;
  }

  .lineup-embed tbody td,
  .lineup-embed tfoot td {
    font-size: 10.5px;
    padding: 8px 3px;
  }

  .lineup-embed td.name {
    font-size: 10.5px;
  }

}





/* Mobile scoreboard embed */
.score-mobile-embed {
  --bg: #071521;
  --card: #0c1c2a;
  --line: rgba(15, 23, 42, 0.18);
  --text: #0f172a;
  --muted: #475569;
  --accent: #0f172a;
  --danger: #d61b2a;
  --orange: #f07a24;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  width: 100%;
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.score-mobile-embed * {
  box-sizing: border-box;
}

.score-mobile-embed .phone-frame {
  width: 100%;
}

.score-mobile-embed .score-card {
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
  padding: 18px 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.score-mobile-embed .top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 8px;
  row-gap: 2px;
  margin-bottom: 5px;
}

.score-mobile-embed .game-info {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 12px;
  line-height: 1.35;
  border-bottom: 1px solid var(--line);
}

.score-mobile-embed .game-divider {
  height: 10px;
}

.score-mobile-embed .game-info .date-time {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
}

.score-mobile-embed .game-info .venue {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 2px;
}

.score-mobile-embed .game-info .location {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}

.score-mobile-embed .team {
  display: flex;
  align-items: center;
  min-width: 0;
}

.score-mobile-embed .team.right {
  justify-content: center;
  text-align: center;
}

.score-mobile-embed .team-logo {
  width: 95px;
  max-height: 64px;
  height: auto;
  display: block;
  object-fit: contain;
}

.score-mobile-embed .logo-record {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1;
  text-align: center;
  margin-top: -12px;
}

.score-mobile-embed .team.left {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  align-self: end;
}

.score-mobile-embed .team.right {
  grid-column: 3;
  grid-row: 1;
  justify-self: center;
  align-self: end;
}

.score-mobile-embed .score-wrap {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 2px;
}

.score-mobile-embed .logo-record.left {
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
}

.score-mobile-embed .logo-record.right {
  grid-column: 3;
  grid-row: 2;
  justify-self: center;
}

.score-mobile-embed .score {
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  min-width: 36px;
  text-align: center;
}

.score-mobile-embed .final {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
}

.score-mobile-embed .inning-card {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0 10px;
}

.score-mobile-embed .grid {
  display: grid;
  grid-template-columns: 112px repeat(var(--inning-cols), 1fr);
  gap: 4px;
  align-items: center;
  font-size: 0.84rem;
}

.score-mobile-embed .head {
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  padding-bottom: 6px;
}

.score-mobile-embed .team-name {
  text-align: left;
  font-weight: 800;
  color: var(--text);
}

.score-mobile-embed .cell {
  text-align: center;
  font-weight: 700;
  color: var(--text);
  padding: 4px 0;
}

.score-mobile-embed .muted-x {
  color: #c8d4e0;
}

.score-mobile-embed .totals {
  font-weight: 800;
}

.score-mobile-embed .pitchers {
  display: grid;
  grid-template-columns: repeat(var(--pitcher-cols, 3), 1fr);
  gap: 8px;
  padding-top: 14px;
}

.score-mobile-embed .pitcher {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 12px;
}

.score-mobile-embed .pitcher .label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.score-mobile-embed .pitcher .name {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 2px;
  text-align: center;
}

.score-mobile-embed .pitcher .stat {
  font-size: 0.94rem;
  color: #334155;
  text-align: center;
}

.score-mobile-embed .bottom-divider {
  border-top: 1px solid var(--line);
  margin-top: 12px;
}

@media (max-width: 360px) {
  .score-mobile-embed .score-card {
    padding: 16px 10px 10px;
  }

  .score-mobile-embed .top {
    column-gap: 8px;
    row-gap: 1px;
  }

  .score-mobile-embed .team-logo {
    width: 82px;
    max-height: 58px;
  }

  .score-mobile-embed .score {
    font-size: 2.5rem;
  }

  .score-mobile-embed .final {
    font-size: 0.82rem;
  }

  .score-mobile-embed .grid {
    grid-template-columns: 88px repeat(var(--inning-cols), 1fr);
    gap: 2px;
    font-size: 0.72rem;
  }

  .score-mobile-embed .pitchers {
    grid-template-columns: 1fr;
  }
}

/* Tabbed lineup embed */
.lineup-tabs-embed {
  width: 100%;
  margin-top: 16px;
}

.lineup-tabs-embed .tabs-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lineup-tabs-embed .tabs-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.lineup-tabs-embed .tab-label {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #000000;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 2px 0;
  cursor: pointer;
  transition: all 0.15s ease;
}

.lineup-tabs-embed .tabs-input-visitor:checked ~ .tabs-nav .tab-label[data-tab="visitor"],
.lineup-tabs-embed .tabs-input-local:checked ~ .tabs-nav .tab-label[data-tab="local"] {
  color: #dd3333;
}

.lineup-tabs-embed .tab-panel {
  display: none;
}

.lineup-tabs-embed .tabs-input-visitor:checked ~ .tab-panel.visitor,
.lineup-tabs-embed .tabs-input-local:checked ~ .tab-panel.local {
  display: block;
}

.lineup-embed .lineup-events + table.lineup-pitching-table {
  margin-top: 30px;
}

.lineup-embed .cards {
  display: grid;
  gap: 16px;
}

.lineup-tabs-embed .bottom-divider {
  border-top: 1px solid #d9dde3;
  margin-top: 0;
  margin-bottom: 12px;
}

/* Full-bleed mobile dividers */
.score-mobile-embed .game-info,
.score-mobile-embed .inning-card,
.score-mobile-embed .bottom-divider {
  margin-left: -12px;
  margin-right: -12px;
}

.score-mobile-embed .game-info {
  padding-left: 12px;
  padding-right: 12px;
}

.score-mobile-embed .inning-card {
  padding: 12px 12px 10px;
}

@media (max-width: 360px) {
  .score-mobile-embed .game-info,
  .score-mobile-embed .inning-card,
  .score-mobile-embed .bottom-divider {
    margin-left: -10px;
    margin-right: -10px;
  }

  .score-mobile-embed .game-info {
    padding-left: 10px;
    padding-right: 10px;
  }

  .score-mobile-embed .inning-card {
    padding: 12px 10px 10px;
  }
}

/* Center tab labels between top and bottom divider lines */
.lineup-tabs-embed {
  margin-top: 0;
}

.lineup-tabs-embed .tabs-nav {
  align-items: center;
  padding-top: 8px;
  padding-bottom: 14px;
  margin-bottom: 0;
}

.lineup-tabs-embed .tab-label {
  padding: 0;
  line-height: 1.1;
}

.lineup-tabs-embed .bottom-divider {
  margin-top: 0;
  margin-bottom: 12px;
}

/* Lineup glossary */
.lineup-glossary {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #d9dde3;
}

.lineup-glossary-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

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

.lineup-glossary-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.86rem;
  color: #334155;
  line-height: 1.3;
}

.lineup-glossary-key {
  font-weight: 800;
  color: #0f172a;
  min-width: 36px;
}

.lineup-glossary-value {
  color: #475569;
}

@media (max-width: 480px) {
  .lineup-glossary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }
}

/* Force glossary to stay in two columns (desktop + mobile) */
.score-mobile-embed .lineup-glossary-grid,
.lineup-glossary .lineup-glossary-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px 12px !important;
}

@media (max-width: 480px) {
  .score-mobile-embed .lineup-glossary-grid,
  .lineup-glossary .lineup-glossary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px 10px !important;
  }
}


/* Daily boxscores embed */
.daily_boxscores_mobile {
  --bg: #e5e5e5;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --blue: #0b57d0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.daily_boxscores_mobile * {
  box-sizing: border-box;
}

.daily_boxscores_mobile .score-card {
  width: 98%;
  max-width: 390px;
  background: var(--card);
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #dddddd;
}

.daily_boxscores_mobile .topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 14px 14px 10px;
}

.daily_boxscores_mobile .team-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.daily_boxscores_mobile .team-block.right {
  align-items: center;
  text-align: center;
}

.daily_boxscores_mobile .team-name-row {
  display: flex;
  align-items: center;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman", serif;
  min-height: 50px;
}

.daily_boxscores_mobile .team-logo-mini {
  width: 100px;
  max-height: 50px;
  height: auto;
  display: block;
  object-fit: contain;
}

.daily_boxscores_mobile .team-code {
  font-size: 18px;
  letter-spacing: 0.2px;
  font-weight: 700;
  color: #111827;
}

.daily_boxscores_mobile .team-record {
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  display: block;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.daily_boxscores_mobile .score-center {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-top: 2px;
  color: #111827;
}

.daily_boxscores_mobile .score {
  font-size: 20px;
  font-weight: 700;
  min-width: 16px;
  text-align: center;
}

.daily_boxscores_mobile .final {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #4b5563;
}

.daily_boxscores_mobile .divider {
  height: 1px;
  background: var(--line);
  margin: 0 12px;
}

.daily_boxscores_mobile .label {
  text-align: center;
  font-size: 15px;
  color: #666;
  padding: 10px 12px;
  font-weight: 600;
}

.daily_boxscores_mobile .innings-wrap {
  padding: 8px 12px 2px;
}

.daily_boxscores_mobile table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.daily_boxscores_mobile .innings thead th {
  font-size: 13px;
  color: #4b5563;
  font-weight: 700;
  padding: 0 0 8px;
  text-align: center;
}

.daily_boxscores_mobile .innings thead th:first-child {
  width: 58px;
  text-align: center;
}

.daily_boxscores_mobile .innings tbody th {
  width: 58px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  padding: 6px 0;
}

.daily_boxscores_mobile .innings tbody td {
  text-align: center;
  font-size: 16px;
  color: #374151;
  padding: 6px 0;
  font-weight: 500;
}

.daily_boxscores_mobile .innings tbody td.total,
.daily_boxscores_mobile .innings tbody th.total {
  font-weight: 700;
  color: #111827;
}

.daily_boxscores_mobile .decision-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 14px 14px;
  color: #374151;
}

.daily_boxscores_mobile .decision {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-height: 40px;
}

.daily_boxscores_mobile .decision.right {
  align-items: flex-end;
  text-align: right;
}

.daily_boxscores_mobile .decision .name {
  font-size: 15px;
  font-weight: 700;
  color: #4b5563;
}

.daily_boxscores_mobile .decision .stat {
  font-size: 15px;
  color: #4b5563;
  font-weight: 500;
}

.daily_boxscores_mobile .actions {
  display: flex;
  justify-content: center;
  padding: 12px 14px 16px;
  border-top: 1px solid var(--line);
}

.daily_boxscores_mobile .link-btn {
  color: var(--blue);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.daily_boxscores_mobile .empty-state {
  margin: 0;
  width: 100%;
  max-width: 390px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 16px;
  text-align: center;
  color: #4b5563;
}

.daily_boxscores_mobile .link-btn {
    color: #dd3333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}
/* Daily boxscores date tabs */
.daily_boxscores_mobile .date-tabs {
  width: 100%;
  max-width: 390px;
  margin: 0 0 14px;
  display: grid;
  grid-template-columns: 36px repeat(3, minmax(0, 1fr)) 36px;
  background: #ececec;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  overflow: hidden;
}

.daily_boxscores_mobile .tabs-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #dd3333;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  background: transparent;
  user-select: none;
}

.daily_boxscores_mobile .date-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #dd3333;
  background: transparent;
  padding: 7px 3px 8px;
  min-height: 72px;
  font-family: Arial, Helvetica, sans-serif;
}

.daily_boxscores_mobile .date-tab-top {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #dd3333;
}

.daily_boxscores_mobile .date-tab-bottom {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-top: 1px;
  letter-spacing: 0.005em;
}

.daily_boxscores_mobile .date-tab.active {
  color: #dd3333;
}

.daily_boxscores_mobile .date-tab.active .date-tab-top,
.daily_boxscores_mobile .date-tab.active .date-tab-bottom {
  color: #dd3333;
  font-size: 16px;
  font-weight: 900;
}

@media (max-width: 420px) {
  .daily_boxscores_mobile .date-tab-bottom {
    font-size: 15px;
  }

  .daily_boxscores_mobile .tabs-arrow {
    font-size: 28px;
  }

  .daily_boxscores_mobile .date-tab {
    min-height: 62px;
  }
}

/* Daily standings embed */
body.daily-standings-page {
  margin: 0;
}

.daily_standings_mobile {
  width: 100%;
  max-width: 100%;
  align-items: stretch;
  padding: 0 8px 12px;
}

.daily_standings_mobile .date-tabs {
  width: 100%;
  max-width: none;
}

.daily_standings_mobile .standings-panel {
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  overflow: visible;
}

.daily_standings_mobile .innings-wrap {
  width: 98%;
  margin: 0 auto;
  padding: 8px 0 0;
}

.daily_standings_mobile .label {
  font-size: 12px;
}

.daily_standings_mobile .standings-table col.col-pos {
  width: 8%;
}

.daily_standings_mobile .standings-table col.col-team {
  width: 40%;
}

.daily_standings_mobile .standings-table col.col-w {
  width: 10%;
}

.daily_standings_mobile .standings-table col.col-l {
  width: 10%;
}

.daily_standings_mobile .standings-table col.col-pct {
  width: 12%;
}

.daily_standings_mobile .standings-table col.col-gb {
  width: 10%;
}

.daily_standings_mobile .standings-table col.col-l10 {
  width: 10%;
}

.daily_standings_mobile .standings-table thead th {
  font-size: 11px;
  padding: 0 0 6px;
}

.daily_standings_mobile .standings-table thead th:first-child {
  text-align: center;
}

.daily_standings_mobile .standings-table thead th:nth-child(2) {
  text-align: center;
}

.daily_standings_mobile .standings-table tbody th {
  width: auto;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  padding: 5px 4px;
  white-space: nowrap;
}

.daily_standings_mobile .standings-team-logo {
  width: 100px;
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

.daily_standings_mobile .standings-table thead th,
.daily_standings_mobile .standings-table tbody th,
.daily_standings_mobile .standings-table tbody td {
  border-left: 0 !important;
  border-right: 0 !important;
}

.daily_standings_mobile .standings-table tbody td {
  font-size: 12px;
  padding: 5px 2px;
}

.daily_standings_mobile .empty-state {
  width: 100%;
  max-width: none;
  border-radius: 0;
  border: 0;
  margin: 0;
}

.daily_standings_mobile .standings-table thead th[data-sortable="1"] {
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-right: 12px;
}

.daily_standings_mobile .standings-table thead th[data-sortable="1"]::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9px;
  color: #9ca3af;
}

.daily_standings_mobile .standings-table thead th[data-sort-dir="asc"]::after {
  content: "\25B2";
}

.daily_standings_mobile .standings-table thead th[data-sort-dir="desc"]::after {
  content: "\25BC";
}

/* Daily standings header polish */
.daily_standings_mobile .standings-table thead th {
  font-size: 11px;
  padding: 7px 0 8px;
    color: #b91c1c;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  border-bottom: 2px solid #dd3333;
  box-shadow: inset 0 1px 0 #ffffff;
}

.daily_standings_mobile .standings-table thead th[data-sortable="1"] {
  transition: background-color 140ms ease, color 140ms ease;
}

.daily_standings_mobile .standings-table thead th[data-sortable="1"]:hover,
.daily_standings_mobile .standings-table thead th[data-sortable="1"]:focus-visible {
    color: #991b1b;
}

.daily_standings_mobile .standings-table thead th[data-sortable="1"]::after {
  color: #dd3333;
  opacity: 0.9;
}
