  :root {
    --purple: #7c5cff;
    --purple-soft: #251d3d;
    --espn-red: #d0021b;
    --bg: #12121a;
    --card: #1b1b25;
    --line: #2a2a38;
    --ink: #f4f4f8;
    --muted: #8b8b9e;
    --green: #3ddc84;
    --red: #ff5470;
    --amber-bg: #2a2115;
    --amber-border: #4d3a1a;
    --amber-text: #e8b04b;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    padding: 24px 20px 40px;
  }
  .wrap { max-width: 1560px; margin: 0 auto; }
  header {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .logo {
    width: 34px; height: 34px; border-radius: 9px; background: var(--purple);
    color: #fff; font-weight: 800; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
  }
  header h1 { font-size: 20px; font-weight: 700; letter-spacing: -0.2px; }
  .chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--purple-soft); color: var(--purple);
    font-size: 12px; font-weight: 700; border-radius: 999px; padding: 4px 11px;
  }
  .spacer { flex: 1; }
  #updated { font-size: 12px; color: var(--muted); }
  #refreshIcon, #settingsBtn {
    border: 1px solid var(--line); background: var(--card); color: var(--muted);
    width: 33px; height: 33px; border-radius: 9px; cursor: pointer; font-size: 16px; line-height: 1;
    display: inline-flex; align-items: center; justify-content: center; padding: 0; flex: none;
  }
  #refreshIcon:hover { border-color: var(--purple); color: var(--purple); }
  #settingsBtn { color: var(--ink); }
  #settingsBtn:hover { border-color: var(--purple); color: var(--purple); }
  /* Overview / Details tabs in the navbar. */
  .tabs {
    display: inline-flex; gap: 3px; padding: 3px;
    background: var(--card); border: 1px solid var(--line); border-radius: 9px;
  }
  .tab {
    border: none; background: transparent; color: var(--muted); cursor: pointer;
    font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 6px;
    white-space: nowrap; font-family: inherit;
  }
  .tab:hover { color: var(--ink); }
  .tab.active { background: var(--purple); color: #fff; }
  /* Details-only toolbar (shown above the cards on the Details tab): bulk
     collapse / expand of every team's full roster. */
  .details-toolbar { display: none; align-items: center; gap: 8px; margin-bottom: 12px; }
  .details-toolbar.show { display: flex; }
  .details-toolbar-label {
    font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
  }
  .bulk-btn {
    border: 1px solid var(--line); background: var(--card); color: var(--muted);
    font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 8px; cursor: pointer;
    white-space: nowrap; font-family: inherit;
  }
  .bulk-btn:hover { border-color: var(--purple); color: var(--purple); }
  /* Horizontal scroller: cards are fixed-width and scroll left/right instead of
     wrapping into columns. ~3 fit on a normal laptop/desktop (1366px+); on a
     narrower window fewer fit and you scroll to see the rest. Each card's
     content condenses on its own (see the @container rules further down) as it
     narrows, so shrinking the card shrinks the whole panel. x mandatory so the
     strip locks to a card as you scroll. */
  .grid {
    display: flex; flex-direction: row; align-items: flex-start;
    gap: 16px; overflow-x: auto; padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }
  .grid::-webkit-scrollbar { height: 8px; }
  .grid::-webkit-scrollbar-thumb { background: var(--line); border-radius: 8px; }
  .grid::-webkit-scrollbar-thumb:hover { background: var(--muted); }
  .grid::-webkit-scrollbar-track { background: transparent; }
  /* Overview tab: a vertical stack (no horizontal scroll) so every team across
     every league is visible at once — full-width, centered cards. */
  .grid.overview {
    flex-direction: column; align-items: center; overflow-x: visible;
    scroll-snap-type: none; gap: 14px;
  }
  .grid.overview .card {
    flex: 0 0 auto; width: 100%; max-width: 620px; scroll-snap-align: none;
  }
  /* Details tab: keep the horizontal scroll-snap strip. Stretch (not the base
     grid's flex-start) so every card in the row matches the tallest one —
     otherwise a collapsed card shrinks to its compact header height instead
     of staying the same height as its still-expanded neighbors. */
  .grid.details { flex-direction: row; overflow-x: auto; scroll-snap-type: x mandatory; align-items: stretch; }
  /* Every card column holds the full viewport height at all times — not just
     "as tall as the tallest sibling" — so collapsing a card (or a card simply
     having a short roster) never shrinks its column; it just leaves blank
     space below its content instead. */
  .grid.details .card { min-height: 100vh; }
  .card {
    background: var(--card); border: 1px solid var(--line); border-radius: 14px;
    display: flex; flex-direction: column; overflow: hidden;
    flex: 0 0 min(420px, 86vw);
    scroll-snap-align: start;
    /* Own stacking context: keeps this card's internal z-indexes (the VS badge,
       position pills) scoped to the card so they can't float over the header or
       the neighbouring cards. */
    position: relative; z-index: 0;
  }
  .card-top {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    padding: 14px 16px 12px; border-bottom: 1px solid var(--line);
  }
  .card-top .name {
    font-size: 15px; font-weight: 600; flex: 1; min-width: 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  /* Collapsible matchup cards: the chevron toggles .collapsed, which hides the
     body + footer so the card shrinks to a compact header row. */
  .collapse-btn {
    flex-shrink: 0;
    display: inline-flex; align-items: center; gap: 4px;
    border: 1px solid var(--line); background: transparent; color: var(--muted);
    border-radius: 8px; cursor: pointer; padding: 3px 7px;
    font-size: 10px; font-weight: 700; white-space: nowrap; font-family: inherit;
  }
  .collapse-btn:hover { color: var(--ink); border-color: var(--purple); }
  .collapse-btn svg { transition: transform 0.15s ease; }
  /* The roster toggle lives at the top of the roster ("where the starters are"),
     not in the card-top header. Left-aligned pill just above the Starters row. */
  .roster-section { display: flex; flex-direction: column; }
  .roster-section > .collapse-btn {
    align-self: flex-start;
    margin: 16px 0 2px;
    font-size: 11px;
  }
  .card.collapsed .roster-body,
  .card.collapsed .card-foot,
  .card.collapsed .err { display: none; }
  .card.collapsed .card-top { border-bottom: none; }
  .card.collapsed .matchup-panel { margin-bottom: 0; padding-bottom: 1em; }
  /* Collapsed = "who's live" view: hide the row-based matchup rows and show a
     two-column .live-columns block instead — one column per team, each
     stacking that team's in-game players one after the other (home left,
     away right). No stretching: every player keeps its half-width column. */
  .card.collapsed .roster-body { display: block; }
  .card.collapsed .roster-body > .row { display: none; }
  .card.collapsed .roster-body .player-section { display: none; }
  .live-columns { display: none; }
  .card.collapsed .live-columns {
    display: flex; margin-top: 14px;
  }
  /* Each team gets an EXACT half — same width whether it has 1 player or 5,
     no gap between the two columns. (flex:1 + gap let an empty side look
     stretched, so pin each column to a fixed 50%.) */
  .card.collapsed .live-columns .live-col {
    width: 50%; min-width: 0; box-sizing: border-box;
    display: flex; flex-direction: column; gap: 16px;
    align-items: stretch; padding: 0 6px;
  }
  /* playerItem()'s away-side ".row.flip" (face image + name) only gets
     mirrored (image on the right, text hugging the middle) by the
     ".matchup-player-row-container .row.flip" rule further down — but the
     live columns render playerItem() directly, with no
     .matchup-player-row-container wrapper. Without it the image stays
     pinned on the left for both columns, crowding the name into a narrower
     space than it has in the full-roster view and forcing it to wrap. Mirror
     the same reversal here. */
  .card.collapsed .live-columns .live-col .row.flip {
    flex-direction: row-reverse;
  }
  /* .matchup-player-item is shared with the full roster rows, where flex:1
     lets it grow to fill a shared row. In this column it has no row to share,
     so flex:1 instead stretches each player to fill the column's height —
     ballooning the shorter side's boxes whenever the two teams have a
     different number of players on the field. Pin them to their natural size
     and let the column's extra height sit empty below the last player. */
  .card.collapsed .live-columns .live-col .matchup-player-item {
    flex: 0 0 auto;
  }
  /* Collapsed + no live players: hide the (empty) roster and show a "no players
     on the field" note, right under the "Show full team" toggle in the roster. */
  .no-live-note { display: none; }
  .card.collapsed.no-live .roster-body { display: none; }
  .card.collapsed.no-live .no-live-note {
    display: flex; flex-direction: column; align-items: center;
    padding: 14px 16px 16px;
  }
  .no-live-text { font-size: 13px; font-weight: 600; color: var(--muted); }
  /* Overview team rows: avatar + name + score, stacked vertically. "Just the
     scores" — no players, no roster, no win bar / projection. */
  .overview-panel { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
  .overview-teams { display: flex; flex-direction: column; gap: 8px; }
  .ov-team {
    display: flex; align-items: center; gap: 11px;
    padding: 10px 12px; border-radius: 12px;
    background: rgba(163,187,211,0.05); border: 1px solid rgba(58,70,91,0.5);
  }
  .ov-avatar {
    width: 34px; height: 34px; flex: 0 0 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background-color: #293042; color: #a3bbd3; font-weight: 800; font-size: 14px;
    background-size: contain; background-repeat: no-repeat; background-position: center;
  }
  .ov-name { flex: 1; min-width: 0; font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  /* Score column: current score (big white) on top, projection (muted, "proj")
     directly under it, both right-aligned. */
  .ov-score-col { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; flex-shrink: 0; }
  .ov-score { font-size: 17px; font-weight: 800; color: #fff; line-height: 1.15; font-variant-numeric: tabular-nums; }
  .ov-projection { display: inline-flex; align-items: baseline; gap: 3px; font-size: 11px; font-weight: 600; color: var(--muted); font-variant-numeric: tabular-nums; }
  .ov-projection .ov-proj-label { font-size: 10px; font-style: italic; font-weight: 600; color: var(--muted); font-variant-numeric: normal; }
  .overview-card .card-foot { border-top: 1px solid var(--line); }
  .badge {
    font-size: 10px; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase;
    border-radius: 5px; padding: 3px 7px; color: #fff; flex-shrink: 0;
  }
  .badge.sleeper { background: var(--purple); }
  .badge.espn { background: var(--espn-red); }
  .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); display: inline-block; }
  .live-tag {
    font-size: 11px; font-weight: 700; color: var(--green);
    display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0;
  }
  .lineup-toggle {
    width: 100%; border: none; border-top: 1px solid var(--line);
    background: transparent; color: var(--muted); font-size: 12px; font-weight: 700;
    padding: 9px 16px; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  }
  .lineup-toggle:hover { color: var(--ink); }
  .lineup-wrap { border-top: 1px solid var(--line); display: none; padding: 0 4px 8px; }
  .lineup-wrap.open { display: block; }
  .card-foot {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 16px; border-top: 1px solid var(--line);
    font-size: 12px; color: var(--muted); font-weight: 600;
  }
  .card-foot a { color: var(--purple); text-decoration: none; font-weight: 700; }
  .card-foot a:hover { text-decoration: underline; }
  .err {
    margin: 16px; background: var(--amber-bg); border: 1px solid var(--amber-border); border-radius: 10px;
    padding: 14px; font-size: 13px; color: var(--amber-text); line-height: 1.5; flex: 1;
  }
  .err code { background: rgba(255,255,255,0.08); border-radius: 4px; padding: 1px 5px; font-size: 12px; }
  .err .hint { display: block; margin-top: 8px; color: var(--muted); }
  footer {
    position: sticky; bottom: 0; z-index: 20;
    margin-top: 22px; padding: 12px 16px;
    font-size: 12px; color: var(--muted); text-align: center;
    background: var(--bg); border-top: 1px solid var(--line);
  }

  /* ── Settings overlay ── */
  #settings { display: none; position: fixed; inset: 0; background: rgba(8,8,14,.94); z-index: 50; overflow-y: auto; padding: 32px 16px; }
  #settings.open { display: block; }
  .settings-panel { max-width: 740px; margin: 0 auto; background: var(--card); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.5); padding: 20px 22px; }
  .settings-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
  .settings-head h2 { font-size: 17px; font-weight: 700; }
  .settings-close { margin-left: auto; border: 1px solid var(--line); background: transparent; color: var(--muted); border-radius: 8px; width: 30px; height: 30px; cursor: pointer; font-size: 16px; line-height: 1; }
  .settings-close:hover { color: var(--ink); border-color: var(--purple); }
  .settings-section { margin-bottom: 20px; }
  .settings-section h3 { font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin: 0 0 9px; }
  .settings-hint { font-size: 12px; color: var(--muted); margin: 0 0 10px; line-height: 1.55; }
  .league-toggle-row { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 8px; background: rgba(255,255,255,.02); }
  .league-toggle-row .ltg-dot { width: 11px; height: 11px; border-radius: 3px; flex: none; }
  .league-toggle-row .ltg-name { font-weight: 700; font-size: 13.5px; }
  .league-toggle-row .ltg-sub { font-size: 11px; color: var(--muted); margin-top: 1px; }
  .toggle { margin-left: auto; position: relative; width: 42px; height: 23px; flex: none; }
  .toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
  .toggle .slider { position: absolute; inset: 0; background: #3a3a4a; border-radius: 23px; transition: .16s; cursor: pointer; }
  .toggle .slider:before { content: ""; position: absolute; width: 18px; height: 18px; left: 2px; top: 2px; background: #cfcfe0; border-radius: 50%; transition: .16s; }
  .toggle input:checked + .slider { background: var(--purple); }
  .toggle input:checked + .slider:before { transform: translateX(19px); background: #fff; }
  .cfg-toolbar { display: flex; gap: 8px; margin-top: 12px; }
  .cfg-toolbar button { flex: none; border: 1px solid var(--line); background: transparent; color: var(--ink); border-radius: 8px; padding: 7px 15px; font-size: 12px; font-weight: 700; cursor: pointer; }
  .cfg-toolbar button:hover { border-color: var(--purple); color: var(--purple); }
  .cfg-toolbar button:disabled { opacity: .5; cursor: default; }
  .cfg-toolbar #cfgSaveBtn { background: var(--purple); color: #fff; border-color: var(--purple); }
  .cfg-toolbar #cfgSaveBtn:hover { color: #fff; }
  .accts-sub { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin: 14px 0 8px; }
  .field { margin-bottom: 10px; }
  .field .f-label { font-size: 11.5px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
  .field .f-row { display: flex; gap: 8px; align-items: center; }
  .field input, .league-row input, .league-block input {
    flex: 1; min-width: 0; border: 1px solid var(--line); background: rgba(255,255,255,.03); color: var(--ink);
    border-radius: 8px; padding: 7px 9px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11.5px;
  }
  .field input:disabled, .league-row input:disabled { color: var(--muted); background: rgba(255,255,255,.02); }
  .field input:focus { outline: none; border-color: var(--purple); }
  .field input.valid, .league-row input.valid { border-color: var(--green); }
  .field input.invalid, .league-row input.invalid { border-color: var(--red); }
  .field .f-edit { flex: none; border: 1px solid var(--line); background: transparent; color: var(--ink); border-radius: 8px; padding: 6px 12px; font-size: 11.5px; font-weight: 700; cursor: pointer; }
  .field .f-edit:hover { border-color: var(--purple); color: var(--purple); }
  .field .f-edit.editing { background: var(--purple); color: #fff; border-color: var(--purple); }
  .f-status { font-size: 11px; margin-top: 4px; min-height: 13px; line-height: 1.4; }
  .f-status.ok { color: var(--green); }
  .f-status.bad { color: var(--red); }
  .leagues-list { display: flex; flex-direction: column; gap: 8px; }
  .league-block { border: 1px solid var(--line); border-radius: 10px; padding: 9px 11px; background: rgba(255,255,255,.02); }
  .league-row { display: flex; align-items: center; gap: 7px; }
  .league-row .lg-badge { flex: none; font-size: 9px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; }
  .league-row .lg-badge.sleeper { background: var(--purple-soft); color: var(--purple); }
  .league-row .lg-badge.espn { background: rgba(255,84,112,.14); color: var(--espn-red); }
  .league-row input { font-size: 11px; padding: 6px 8px; }
  .league-row .lg-id { flex: 0 0 148px; min-width: 0; }
  .league-row .lg-name { flex: 1 1 auto; min-width: 56px; }
  .league-row .f-reorder { flex: none; border: 1px solid var(--line); background: transparent; color: var(--muted); border-radius: 7px; cursor: pointer; font-size: 9px; line-height: 1; padding: 5px 7px; }
  .league-row .f-reorder:hover { border-color: var(--purple); color: var(--purple); }
  .league-row .toggle { flex: none; margin-left: 0; }
  .league-row .f-remove { flex: none; border: 1px solid var(--line); background: transparent; color: var(--red); border-radius: 7px; cursor: pointer; font-size: 14px; line-height: 1; padding: 3px 7px; }
  .league-row .f-remove:hover { border-color: var(--red); background: rgba(255,84,112,.08); }
  .league-sub { display: flex; align-items: center; gap: 7px; margin-top: 8px; }
  .league-sub .lg-sublabel { font-size: 10px; font-weight: 700; color: var(--muted); flex: none; }
  .league-sub input { font-size: 11px; padding: 6px 8px; width: 78px; }
  .leagues-add { display: flex; gap: 8px; margin-top: 4px; }
  .f-add { border: 1px dashed var(--line); background: transparent; color: var(--muted); border-radius: 8px; padding: 6px 12px; font-size: 11.5px; font-weight: 700; cursor: pointer; margin-top: 2px; }
  .f-add:hover { border-color: var(--purple); color: var(--purple); }
  .cfg-err { color: var(--ink); font-size: 12px; margin-top: 10px; line-height: 1.5; }
  .cfg-err.ok { color: var(--green); }
  .cfg-err.bad { color: var(--red); }

  /* --- real Sleeper matchup-panel CSS, extracted from the production bundle --- */
  /* matchup rules */
.chat-right-icons-panel-container .chat-right-icons-panel-league .league-icon-floating .league-icon-container .avatar-container {
  height: 56px;
  width: 56px;
  border-radius: 56px;
  overflow: hidden;
}
.lol-pick-ban-slider .content .player-name {
  color: #fff;
  size: 18px;
  font-family: 'Poppins', sans-serif;
  margin-top: 12px;
}
.player-card-player-position >.position {
  min-width: 46.5px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Muli';
  font-weight: 800;
  padding-left: 5px;
  padding-right: 5px;
}
.trade-partner-roster-item.selected {
  background-color: rgba(0,206,184,0.15);
}
.trade-partner-roster-item .avatar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  border-radius: 48px;
  background-image: linear-gradient(to left top, #3a465b, #a3bbd3);
  overflow: hidden;
  position: relative;
}
.trade-partner-roster-item .avatar-container .selected-over {
  display: flex;
  height: 100%;
  width: 100%;
  background-color: rgba(0,206,184,0.7);
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  align-items: center;
  justify-content: center;
}
.trade-partner-roster-item .avatar-container .selected-over .selected-text {
  font-size: 12px;
  color: #fff;
  font-family: 'Poppins';
  z-index: 30;
}
.trade-partner-roster-item .display-name.selected {
  color: #00ceb8;
}
.trade-partner-roster-item .scrolled-header.selected {
  background-color: #00ceb8;
  color: #022047;
}
.trade-center-player-box.clickable {
  cursor: pointer;
  min-height: 68px;
  height: 68px;
  max-height: 68px;
  min-width: 140px;
}
.trade-center-player-box .player-name {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  font-family: 'Inter';
  line-height: 20px;
  max-width: 90px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trade-center-player-box .player-name.small {
  font-size: 12px;
  max-width: 80px;
}
.trade-center-player-box .player-name:hover {
  text-decoration: underline;
}
.trade-center-player-box .player-name.selected {
  opacity: 0.2;
}
.best-available-player-container .player-item-container .avatar-container {
  background-color: #181c28;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  width: 42px;
  border-radius: 42px;
  z-index: 10;
}
.trade-center-asset-select-list .avatar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  border-radius: 48px;
  background-image: linear-gradient(#3a465b, #a3bbd3);
  overflow: hidden;
  position: relative;
}
.trade-summary .roster-trade-container .roster-trade-summary .panel .meta {
  display: flex;
  flex-direction: column;
  margin-left: 8px;
}
.trade-summary .roster-trade-container .roster-trade-summary .panel .meta .meta-text-1 {
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  font-family: 'Inter';
  font-weight: 600;
}
.trade-summary .roster-trade-container .roster-trade-summary .panel .meta .meta-text-2 {
  color: #d8e2ed;
  font-size: 10px;
  line-height: 12px;
  font-family: 'Inter';
}
.player-transaction-history-item .transaction-history-waiver .team-name,
.player-transaction-history-item .transaction-history-draft .team-name,
.player-transaction-history-item .transaction-history-fa .team-name,
.player-transaction-history-item .transaction-history-trade .team-name {
  font-weight: 900;
}
.player-card-v2-header .player-image {
  position: absolute;
  width: 156px;
  height: 105px;
  top: 10px;
  left: 20px;
}
.player-card-v2-header .top-row .player-name {
  height: 60px;
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1px;
  text-align: left;
  color: var(--white);
}
.player-card-v2-header .top-row .player-name .player-last-name {
  font-weight: 600;
  margin-left: 8px;
}
.nba-player-gamelog .header-row {
  display: flex;
  flex-direction: row;
  height: 28px;
  padding: 4px 0px 8px 24px;
  background: rgba(163,187,211,0.05);
}
.player-card-v2-history .history-container .header-row {
  display: flex;
  flex-direction: row;
  height: 28px;
  padding: 4px 12px 8px 24px;
  background: rgba(163,187,211,0.05);
}
.draft-board .team-column .team-name {
  font-size: 13px;
  font-weight: 900;
  color: #555;
  height: 40px;
  line-height: 40px;
  text-align: center;
  letter-spacing: 0.5px;
  cursor: pointer;
  padding: 0 7px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 102px;
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
  height: 100%;
}
.draft-board .team-column .team-name.unclaimed {
  color: #bbb;
}
.draft-board .team-column .team-name.picking {
  color: #ffac61;
}
.draft-board .team-column .team-name .claim-btn {
  font-size: 11px;
  color: #fff;
  font-weight: normal;
  border-radius: 20px;
  background: #6e7df5;
  height: 25px;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-top: 10px;
  margin-right: 2px;
  width: 100%;
  text-transform: uppercase;
  font-family: 'Muli';
  font-weight: 700;
  letter-spacing: 1px;
  padding-bottom: 1px;
}
.draft-board .team-column .team-name .claim-btn:hover {
  opacity: 0.75;
}
.draft-board .team-column .team-name .commish {
  height: 12px;
  position: absolute;
}
.draft-board .team-column .team-name .fa-star {
  font-size: 10px;
  padding: 0 3px;
}
.draft-board .team-column .current-roster .cell .player-name {
  color: #444;
}
.draft-board .team-column .current-roster .cell .position {
  color: #444;
}
.draft-board .team-column .current-roster.theme-dark .cell .player-name {
  color: #a3bbd3;
}
.draft-board .team-column .current-roster.theme-dark .cell .position {
  color: #a3bbd3;
}
.draft-board .team-column .keepers .cell .player-name {
  color: #444;
}
.draft-board .team-column .keepers.theme-dark .cell .player-name {
  color: #a3bbd3;
}
.draft-board .cell .player .player-name {
  color: #022047;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 86px;
  overflow: hidden;
  font-family: 'Poppins';
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.25px;
  text-align: left;
}
.full-screen-mode .team-name {
  margin: 0 auto;
  height: 100%;
}
.trade-list-item .assets-container .player-name {
  font-size: 9px;
  color: #fff;
  max-width: 45px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 4px;
  line-height: 10px;
  font-family: 'Inter';
}
.lol-weekly-report-modal .top-player-card .mid-section .player-name {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}
.team-name {
  color: #d8e2ed;
  font-size: 16px;
  line-height: 18px;
  font-family: 'Inter';
  font-weight: 500;
  margin-bottom: 8px;
}
.embed-trade-container >.player-info-container .avatar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 40px;
}
.embed-trade-container >.player-info-container >.player-meta .player-name {
  font-size: 16px;
  line-height: 18px;
  font-weight: bold;
  margin-top: 6px;
  font-family: "Inter";
}
.trade-list-item-dm .avatar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  position: relative;
}
.player-injury-container .text {
  font-size: 10px;
  margin-left: 4px;
}
.lol_matchup_card_container .row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.lol_matchup_card_container .avatar-container {
  position: absolute;
  top: -20px;
  z-index: 10;
}
.lol_matchup_card_container .avatar-container.flip {
  right: 0px;
}
.lol_matchup_card_container .card.flip {
  margin-left: 4px;
}
.lol_matchup_card_container .card-container.flip {
  padding-right: 8px;
  padding-left: 12px;
  margin-left: 4px;
}
.lol_matchup_card_container .bar-percentage.flip {
  margin-left: 0;
  margin-right: 35px;
  flex-direction: row-reverse;
}
.lol_matchup_card_container .content-row.flip {
  flex-direction: row-reverse;
}
.lol_matchup_card_container .record.flip {
  margin-left: 0;
  margin-right: 30px;
}
.lol_matchup_card_container .teamname.flip {
  text-align: right;
}
.roster-matchup-tab-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  font-family: 'Inter', sans-serif;
}
.roster-matchup-tab-wrapper .row {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.roster-matchup-tab-wrapper .playoff-week-selector-wrapper {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
}
.roster-matchup-tab-wrapper .player-section {
  display: flex;
  flex-direction: column;
}
.roster-matchup-tab-wrapper .player-section .title {
  font-size: 18px;
  font-weight: 600px;
  color: #b9c4d4;
}
.matchup-player-row-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
  flex: 1;
  cursor: pointer;
}
.matchup-player-row-container .row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.matchup-player-row-container .row.flip {
  flex-direction: row-reverse;
}
.matchup-player-row-container .spaced-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.matchup-player-row-container .player-image-row {
  display: flex;
  flex: 1;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  box-sizing: border-box;
  min-height: 32px;
}
.matchup-player-row-container .player-image-row .player-image-item {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.matchup-player-row-container .player-image-row .player-image-item.flip {
  flex-direction: row-reverse;
}
.matchup-player-row-container .player-image-row .player-image-item .player-image {
  height: 32px;
  width: 44px;
  object-fit: cover;
}
.matchup-player-row-container .player-image-row .player-image-item .player-name {
  display: flex;
  flex-direction: row;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 8px;
}
.matchup-player-row-container .player-image-row .player-image-item .player-name.flip {
  flex-direction: row-reverse;
}
.matchup-player-row-container .player-image-row .player-image-item .player-pos {
  display: flex;
  flex-direction: row;
  font-size: 10px;
  line-height: 12px;
  color: #7988a1;
  margin: 0 4px;
}
.matchup-player-row-container .player-image-row .player-image-item .player-pos.flip {
  flex-direction: row-reverse;
}
.matchup-player-row-container .player-matchup-body-row {
  position: relative;
  display: flex;
  flex: 1;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  box-sizing: border-box;
}
.matchup-player-row-container .player-matchup-body-row .position {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  background-color: #262e3e;
  position: absolute;
  font-size: 10px;
  z-index: 10;
  top: 12px;
  border: 1px solid rgba(58,70,91,0.5);
}
.matchup-player-row-container .player-matchup-body-row .position .flex {
  justify-content: spacew;
}
.matchup-player-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  position: relative;
}
/* Flashed once per render when this player's points changed on the most
   recent poll (see FLASHED_IDS in app.js) — a brief highlight sweep behind
   the whole player box, not just the score number, so it's easy to spot
   which player just moved even at a glance. */
.matchup-player-item.score-flash {
  animation: score-flash 1.3s ease;
  border-radius: 8px;
}
@keyframes score-flash {
  0% { background: rgba(0,206,184,0.35); box-shadow: 0 0 0 1px rgba(0,206,184,0.5); }
  100% { background: transparent; box-shadow: 0 0 0 1px rgba(0,206,184,0); }
}
.matchup-player-item.empty-player.flip {
  text-align: right;
}
.matchup-player-item.empty-player .matchup-player-body-item {
  display: flex;
  justify-content: center;
}
.matchup-player-item .header-row {
  height: 32px;
  min-height: 32px;
  display: flex;
  align-items: flex-end;
  flex: 1;
  justify-content: space-between;
  margin-right: 20px;
}
.matchup-player-item .header-row .player-pos {
  color: #a3bbd3;
  font-size: 10px;
  font-family: 'Inter';
  padding-left: 5px;
  padding-right: 5px;
}
.matchup-player-item .header-row.flip {
  flex-direction: row-reverse;
  margin-left: 16px;
  margin-right: 0px;
}
.matchup-player-item .header-row.flip .player-name {
  flex-direction: column;
  align-items: flex-end;
}
.matchup-player-item .header-row.flip .nickname-container {
  flex-direction: row-reverse;
}
.matchup-player-item .player-image {
  height: 32px;
  width: 44px;
  object-fit: cover;
}
.matchup-player-item .player-name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  margin: 0 5px;
  min-width: 0;
}
/* The name always sits on its own line; the position + injury marker (grouped
   in .player-sub) sit on the line below and never shrink, so a long name can't
   push them out. The flipped (away) side right-aligns (see the .flip rule). */
.matchup-player-item .player-name-line {
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.matchup-player-item .player-sub {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-top: 1px;
}
.matchup-player-item .header-row .player-pos,
.matchup-player-item .injury-container {
  flex: 0 0 auto;
}
.matchup-player-item .nickname-container {
  display: flex;
  align-items: center;
}
.matchup-player-item .nickname-container .roster-nickname {
  color: #00baff;
  font-size: 10px;
  padding-left: 6px;
  padding-right: 6px;
  margin-bottom: 6px;
}
.matchup-player-item .nickname-container.flip .roster-nickname {
  color: #fff;
}
.matchup-player-item .injury-container {
  margin-left: 4px;
  padding-bottom: 2px;
}
.matchup-player-body-item {
  display: flex;
  flex: 1;
  flex-grow: 1;
  flex-direction: column;
  background-color: rgba(163,187,211,0.05);
  border-radius: 16px;
  padding: 12px;
  box-sizing: border-box;
  min-height: 60px;
  cursor: pointer;
  border: 1px solid rgba(58,70,91,0.5);
  position: relative;
}
.matchup-player-body-item.in-game {
  background-color: rgba(0,206,184,0.15);
}
.matchup-player-body-item.in-game-flip {
  background-color: rgba(255,43,109,0.15);
}
.matchup-player-body-item .possession-indicator-wrapper {
  position: absolute;
  top: 0px;
  flex: 1;
  left: 40px;
  right: 10px;
}
.matchup-player-body-item .possession-indicator-wrapper.flip {
  left: 10px;
  right: 40px;
}
.matchup-player-body-item .container-row {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
}
.matchup-player-body-item .container-row.flip {
  flex-direction: row-reverse;
}
.matchup-player-body-item .row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.matchup-player-body-item .row.flip {
  flex-direction: row-reverse;
}
/* The left side (game info + box-stat line) can be long now that stats are
   comma-separated instead of stacked with a middot; without min-width:0 a
   flex child won't shrink below its content's natural width, so a long line
   pushed the projections column right off the edge instead of wrapping. */
.matchup-player-body-item .container-row > .row {
  min-width: 0; flex: 1 1 auto;
}
/* The score/projection column is the one number that must never get clipped
   — pin it to its own size so the (now possibly-wrapped) stat line never
   crowds it out. */
.matchup-player-body-item .container-row > .column {
  flex: 0 0 auto;
}
.matchup-player-body-item .column {
  display: flex;
  flex-direction: column;
  margin-right: 8px;
}
.matchup-player-body-item .column.flip {
  align-items: flex-end;
}
.matchup-player-body-item .player-stat-text {
  font-size: 10px;
  line-height: 1.25;
  color: #9aa4bd;
  white-space: normal;
  overflow-wrap: break-word;
}
.matchup-player-body-item .column.flip .player-stat-text {
  text-align: right;
}
.possession-indicator-rate {
  display: flex;
  flex: 1;
  align-items: center;
}
.possession-indicator-rate .divider {
  position: relative;
  justify-content: flex-start;
  display: flex;
  height: 4px;
  flex: 1;
  background-color: #3a465b;
}
.possession-indicator-rate .divider.flip {
  justify-content: flex-end;
}
/* Live on-field progress: red-zone (RZ) badge shown at the ball position when
   the ball is inside the opponent's 20. Matches Sleeper's RZ badge. */
.possession-indicator-rate .rz-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 14px;
  padding: 0 4px;
  border-radius: 3px;
  background: #ff2a6d;
  color: #fff;
  font-weight: 800;
  font-size: 8px;
  line-height: 1;
  box-shadow: 0 0 0 2px var(--card);
}
.league-tab-container .league-tab-standings .league-standing-list .team-owner-with-description .avatar-container {
  margin-right: 4px;
}
.league-tab-container .league-tab-standings .league-standing-list .team-owner-with-description .meta {
  display: flex;
  flex: 1;
  flex-direction: row;
  align-items: center;
}
.league-tab-container .league-tab-standings .league-standing-list .team-owner-with-description .meta .team-name {
  margin-left: 4px;
  max-width: 40 !important;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.league-tab-container .league-tab-standings .league-standing-list .team-owner-with-description .meta .name {
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.league-tab-container .league-tab-standings .league-standing-list .team-owner-with-description .meta .name .commish-badge {
  margin: 0;
}
.league-tab-container .league-tab-standings .league-standing-list .team-owner-with-description .meta .description {
  position: absolute;
  color: #fff;
  font-size: 16px;
  right: 0px;
}
.league-members-container .teams-container .meta .team-name {
  margin-left: 4px;
  max-width: 40 !important;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.trade-block-player .avatar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
  border-radius: 24px;
  position: relative;
}
.trade-block-player .avatar-container .heart-container {
  position: absolute;
  top: -3px;
  right: -5px;
}
.trade-block-player .player-name {
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  font-family: 'Inter';
  font-weight: bold;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.lol-starter-card .player-header .player-meta-container .player-name {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100px;
}
.bracket-matchup >.wrapper >.team-item .team-name {
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  white-space: nowrap;
}
.embed-team-name >.team-name {
  font-size: 13px;
  padding: 4px 0px;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.embed-league-transaction .player-image {
  width: 50px;
  height: 40px;
  border-radius: 4px;
  background: #ccc;
  margin-right: 5px;
}
.embed-roster >.roster-header >.roster-header-meta .team-name {
  font-size: 14px;
  font-weight: bold;
}
.embed-roster >.roster-list .roster-row .player-meta .name {
  font-weight: bold;
  font-size: 12px;
  display: flex;
  align-items: center;
}
.embed-roster >.roster-list .roster-row .player-meta .name.empty {
  opacity: 0.7;
  font-weight: normal;
}
.embed-roster >.roster-list .roster-row .player-meta .name .nickname {
  font-size: 10px;
  padding-left: 7px;
  font-weight: normal;
}
.embed-roster >.roster-list .roster-row .player-meta .position {
  font-size: 10px;
  display: flex;
}
.embed-roster >.roster-list .roster-row .player-meta .position .next-game {
  padding-left: 4px;
}
.topic-chat-presence .avatar-container {
  border: 3px solid #41495c;
  border-radius: 50%;
  background: #41495c;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.topic-chat-presence .avatar-container span {
  font-size: 13px;
  font-weight: bold;
  color: #a3bbd3;
}
.draft-rankings .player-rank-item >.name .injury-status {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: bold;
  margin-right: 10px;
  color: #f00;
}
.draft-rankings .player-rank-item >.name .injury-status.probable {
  color: #ffa500;
}
.draft-settings-roster .roster-item .position {
  flex-grow: 1;
  font-size: 14px;
  font-weight: bold;
}
.draftboard-page-unauth .overlay-container .avatar-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid #efefef;
}
.theme-dark .draft-board .team-column .team-name {
  color: #eee;
}
.player-rank-item2 >.name .injury-status {
  font-size: 9px;
  text-transform: uppercase;
  margin-right: 10px;
  color: #f00;
  margin-left: 5px;
}
.player-rank-item2 >.name .injury-status.probable {
  color: #ffa500;
}
.roster-requirement-status .filter-item.selected {
  background: #555;
  color: #fff;
}
.roster-requirement-status .filter-item .name {
  text-align: center;
  font-weight: bold;
}
.roster-requirement-status2 .filter-item.selected {
  background: #00ceb8;
  color: #022047;
}
.roster-requirement-status2 .filter-item.selected.nba {
  background: #ffae58;
}
.roster-requirement-status2 .filter-item .name {
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
}
.game-center-leaderboard >.players-list >.player-item >.player-meta .player-stat-text {
  color: #bbb;
  margin-top: 3px;
}
.game-center-leaderboard2 .game-center-leaderboard-player-item .player-meta .player-stat-text {
  color: #627391;
  padding-top: 5px;
}
.game-ticker-list .game-ticker-item-wrapper.in-game .game-ticker-item {
  background-image: linear-gradient(to right, rgba(0,206,184,0.16), rgba(0,206,184,0));
}
.game-weather-icon {
  height: 16px;
}
.players-in-game >.player-position-groups .position-leaders-section >.player-item .away-player >.player .player-meta .name,
.players-in-game >.player-position-groups .position-leaders-section >.player-item .home-player >.player .player-meta .name {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1366px) {
  .players-in-game >.player-position-groups .position-leaders-section >.player-item .away-player >.player .player-meta .name,
  .players-in-game >.player-position-groups .position-leaders-section >.player-item .home-player >.player .player-meta .name {
    font-size: 12px;
  }}
.players-in-game >.player-position-groups .position-leaders-section >.player-item .away-player >.player .player-meta .player-stat-text,
.players-in-game >.player-position-groups .position-leaders-section >.player-item .home-player >.player .player-meta .player-stat-text {
  padding-top: 6px;
  font-size: 10px;
  color: #a3bbd3;
  line-height: 1.15;
}
.team-score-header .right.in-game .subtext {
  margin-bottom: 10px;
}
.player-list-item .player-meta-container .name-container .game-schedule-live-description {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}
.player-list-item .game-schedule-live-description {
  opacity: 0.6;
  min-height: 11px;
}
.game-schedule-wrapper .game-schedule-live-description {
  color: #a3bbd3;
  font-size: 11px;
}
.integration-players-panel .filter-button .teams-section .team .team-name {
  font-size: 9px;
  color: #b9c4d4;
  margin-top: 4px;
}
.integration-players-panel .filter-button .teams-section .team .avatar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(58,70,91,0.5);
  height: 26px;
  width: 26px;
  border-radius: 26px;
  border: 1px solid rgba(58,70,91,0.5);
  cursor: pointer;
}
.integration-players-panel .clickable {
  cursor: pointer;
}
.integration-players-panel .clickable i {
  font-size: 8px;
  color: #4e5a6e;
}
.trending-list-item .game-schedule-live-description {
  color: #627391;
}
.watchlist-player-item .game-schedule-live-description {
  color: #627391;
}
.watchlist-player-item .player-scoring {
  color: #fff;
  text-align: center;
}
.watchlist-player-item .player-scoring .projections {
  color: #fff;
  opacity: 0.7;
}
.invited-prompt .draftboard-invite .avatar-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid #ddd;
  background: #fff;
}
.add-player-panel .game-schedule-live-description {
  color: #a3bbd3;
}
.commish-edit-matchup-modal .channel-settings-body .rosters-list .roster-nav-item.selected {
  background: #18202f;
}
.commish-lock-roster-modal .channel-settings-body .league-user-row.selected {
  background: #18202f;
}
.commish-lock-roster-modal .channel-settings-body .league-user-row.selected:hover {
  background: #18202f;
}
.draft-queue-player-item .draft-queue-player-item-player .meta-container .position .injury-status {
  font-size: 9px;
  text-transform: uppercase;
  margin-right: 10px;
  color: #f00;
  margin-left: 5px;
}
.draft-queue-player-item .draft-queue-player-item-player .meta-container .position .injury-status.probable {
  color: #ffa500;
}
.draft-roster-list-item .player-data .name {
  font-size: 12px;
  font-weight: 700;
}
.draft-roster .roster-item .player-name-with-position .position {
  padding-left: 0;
}
.draft-roster .roster-item .bye .label {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 10px;
  color: #555;
  line-height: 13px;
}
.draft-roster2 .owner-selector .selected-team .avatar {
  margin-right: 10px;
}
.draft-roster2 .owner-selector .owner-selector-items-container .owner-selector-item .avatar {
  margin-right: 10px;
}
.edit-co-owner-settings .section .section-content .co-owner-row .name {
  font-size: 14px;
  font-weight: bold;
  display: flex;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 8px;
  color: #fff;
}
.edit-matchups-section .edit-matchup-row .edit-roster-item.selected {
  border: 2px solid #ffd900;
}
.game-schedule-live-description {
  display: flex;
  font-size: 11px;
  position: relative;
  color: #7988a1;
  align-items: center;
}
.game-schedule-live-description.flip {
  justify-content: flex-end;
}
.game-schedule-live-description .rz {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border-radius: 3px;
  background: #ff2a6d;
  color: #fff;
  font-weight: bold;
  font-size: 8px;
  margin: 0 3px;
  position: relative;
  top: -1px;
}
.game-schedule-live-description .great {
  color: #ec5556;
}
.game-schedule-live-description .good {
  color: #eb7200;
}
.game-schedule-live-description .avg {
  color: #67c314;
}
.game-schedule-live-description .bad {
  color: #00a300;
}
.game-schedule-wrapper {
  display: flex;
  flex-direction: column;
}
.game-schedule-wrapper.flip {
  align-items: flex-end;
}
.yet-to-play {
  max-width: 60px;
  font-size: 10px;
  color: #7988a1;
}
.injury-status-indicator {
  font-size: 10px;
}
.league-matchups-modal .league-matchups .league-matchup-row-item.selected {
  background: rgba(58,70,91,0.25);
}
.league-matchups-modal .team-owner-matchup-row .user.reverse {
  flex-direction: row-reverse;
}
.league-matchups-modal .team-owner-matchup-row .user.reverse .team-owner-with-description {
  flex-direction: row;
}
.league-matchups-modal .team-owner-matchup-row .user.reverse .avatar-container {
  margin-left: 0;
}
.league-matchups-modal .team-owner-matchup-row .user.reverse .meta .name,
.league-matchups-modal .team-owner-matchup-row .user.reverse .meta .description {
  text-align: left;
}
.league-matchups-modal .team-owner-matchup-row .user .team-owner-matchup-roster {
  margin-bottom: 10px;
}
.league-matchups-modal .team-owner-matchup-row .user .team-owner-matchup-roster:last-child {
  margin-bottom: 0;
}
.league-matchups-modal .matchup-detail .roster-matchup-row .roster-matchup-row-player:first-child .player-meta .player-stat-text {
  align-self: flex-end;
}
.league-players-list .league-players-list-item .player-info .player-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10px;
}
.league-players-list .league-players-list-item .player-info .player-name .meta {
  font-size: 13px;
  font-weight: bold;
  display: flex;
}
.league-players-list .league-players-list-item .player-info .player-name .meta .injury-status {
  font-weight: normal;
  margin-left: 5px;
  font-size: 11px;
  color: #f00;
  align-self: center;
}
.league-players-list .league-players-list-item .player-info .player-name .meta .injury-status.probable {
  color: #ffa500;
}
.league-players-list .league-players-list-item .player-info .player-name .team {
  font-size: 11px;
  font-weight: normal;
  align-self: center;
  margin-left: 5px;
}
.league-players-panel .player-rank-item >.name .injury-status {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: bold;
  margin-right: 10px;
  color: #f00;
}
.league-players-panel .player-rank-item >.name .injury-status.probable {
  color: #ffa500;
}
.league-players-panel .header-row {
  border-bottom: 1px solid #efefef;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
  cursor: pointer;
}
.league-players-panel .header-row:hover {
  font-weight: bold;
}
.league-players-panel .header-row.sorting {
  background: #efefef;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.league-players-panel .header-row .header-cell {
  font-size: 10px;
  box-sizing: border-box;
}
.league-players-panel .player-grid-cell .player-name {
  cursor: pointer;
}
.league-players-panel .player-grid-cell .player-info .player-name {
  -webkit-flex: 0 0 250px;
  -ms-flex: 0 0 250px;
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10px;
}
.league-players-panel .player-grid-cell .player-info .player-name .meta {
  font-size: 13px;
  font-weight: bold;
  display: flex;
}
.league-players-panel .player-grid-cell .player-info .player-name .meta .injury-status {
  font-weight: normal;
  margin-left: 5px;
  font-size: 11px;
  color: #f00;
  align-self: center;
}
.league-players-panel .player-grid-cell .player-info .player-name .meta .injury-status.probable {
  color: #ffa500;
}
.league-players-panel .player-grid-cell .player-info .player-name .team {
  font-size: 11px;
  font-weight: normal;
  align-self: center;
  margin-left: 5px;
}
.league-players-side-panel .game-center-leaderboard >.players-list >.player-item >.player-meta .player-stat-text {
  color: #777;
}
.league-research-panel .leaders-panel .game-center-leaderboard .players-list .player-item .player-meta .player-stat-text {
  color: #555;
}
.league-standings .unowned-team .team-name {
  font-size: 12px;
  font-weight: bold;
}
.league-transaction-item-waiver-container .league-transaction-item-waiver .meta .team-owner-with-description {
  padding-top: 8px;
}
.league-transaction-item-waiver-container .league-transaction-item-waiver .meta .team-owner-with-description .meta .name {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}
.league-transactions-overview-modal .channel-settings-body .rosters-list .roster-nav-item.selected {
  background: rgba(58,70,91,0.25);
}
.matchup-header .matchup-row {
  display: flex;
  flex-direction: row;
  padding-bottom: 8px;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}
.matchup-header .matchup-row .user {
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  width: 0;
  margin-right: 4px;
}
.matchup-header .matchup-row .reverse {
  margin-right: 0px;
  margin-left: 4px;
}
.matchup-header .matchup-owner-item {
  flex-grow: 1;
}
.matchup-header .vs-label {
  display: flex;
  position: absolute;
  height: 32px;
  width: 32px;
  padding: 4px;
  border-radius: 32px;
  align-items: center;
  justify-content: center;
  background-color: #293042;
  z-index: 2;
}
.matchup-header .vs-label .label {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  position: absolute;
  color: #606f8c;
  font-size: 14px;
  font-weight: 800;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}
.matchup-header .win-chance-bar {
  padding-left: 7px;
  padding-right: 7px;
}
.matchup-header .remaining-players-container {
  display: flex;
  flex-direction: row;
  padding-top: 4px;
  padding-left: 7px;
  padding-right: 7px;
}
.matchup-header .remaining-players-container .remaining-players {
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  min-width: 0;
}
.matchup-owner-item {
  display: flex;
  flex-direction: column;
  padding: 14px 10px;
  background: rgba(163,187,211,0.05);
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(58,70,91,0.5);
}
.matchup-owner-item .row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.matchup-owner-item .row.flip {
  flex-direction: row-reverse;
}
.matchup-owner-item .row.space-between {
  justify-content: space-between;
  gap: 8px;
}
/* Bound the [avatar + name] side so the team name truncates (min-width:0) and
   can't run into the score on the opposite side — the two used to overlap on
   the narrow away (flipped) block. */
.matchup-owner-item .row.space-between > .row {
  flex: 1 1 auto; min-width: 0;
}
.matchup-owner-item .bottom-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 48px;
}
.matchup-owner-item .bottom-row.flip {
  flex-direction: row-reverse;
  margin-left: 0 !important;
  margin-right: 48px;
}
.matchup-owner-item .bottom-row.space-between {
  justify-content: space-between;
}
.matchup-owner-item .win-percentage-number {
  font-size: 10px;
  color: #fff;
  font-weight: bold;
}
.matchup-owner-item .win-bar {
  position: absolute;
  display: flex;
  width: 90%;
  background-color: rgba(58,70,91,0.5);
  height: 4px;
  overflow: hidden;
  border-top-right-radius: 4px;
  bottom: 4px;
  left: 32px;
  z-index: 0;
}
.matchup-owner-item .win-bar.flip {
  flex-direction: row-reverse;
  left: auto;
  right: 32px;
}
.matchup-owner-item .owner-container {
  flex-grow: 1;
  position: relative;
}
.matchup-owner-item .owner-container .avatar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Keep this a fixed square: with the owner chain at min-width:0 a narrow card
     used to compress only its width (height stays 44px), turning the 50% radius
     into an ellipse. flex:0 0 auto pins width to the (always-square) avatar so it
     stays a circle at every card width / breakpoint. */
  flex: 0 0 auto;
  border: 2px solid #45e6a7;
  border-radius: 50%;
  overflow: hidden; /* the .avatar child is a square; clip it to the circle */
  z-index: 10;
  background-color: #293042;
}
.matchup-owner-item .owner-container .avatar-container.flip {
  border: 2px solid #f75c8d;
}
.matchup-owner-item .owner-container .meta {
  display: flex;
  flex-direction: column;
  /* Fill the space between the avatar and the score so the name box tracks the
     CARD width (via the flex chain) instead of a fixed viewport-based max-width. */
  flex: 1 1 auto;
  min-width: 0;
  margin-bottom: 12px;
  font-family: 'Inter';
  margin-left: 8px;
}
.matchup-owner-item .owner-container .meta.flip {
  margin-left: auto;
  margin-right: 8px;
}
/* Flipped (away) side: stretch the name box to the full .meta width and right-
   align the text. align-self:flex-end shrank the box to its content width, so a
   long name (e.g. an ESPN team name) overflowed left and ran into the score. */
.matchup-owner-item .owner-container .meta.flip .team-name,
.matchup-owner-item .owner-container .meta.flip .name {
  align-self: stretch;
  text-align: right;
}
/* No fixed max-width: the name fills the (card-sized) .meta box and truncates
   with an ellipsis. This replaces the old viewport-based max-width tiers that
   mis-sized the box whenever the grid produced a narrower card than the
   viewport suggested. */
.matchup-owner-item .owner-container .name {
  font-size: 12px;
  font-weight: bold;
  margin-top: 4px;
  color: #fff;
  line-height: 18px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.matchup-owner-item .owner-container .team-name {
  margin-top: 4px;
  font-size: 10px;
  color: #a3bbd3;
  line-height: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.matchup-owner-item .description {
  font-size: 10px;
  color: #a3bbd3;
  margin: 0 8px;
  white-space: nowrap;
}
.matchup-owner-item .roster-score-and-projection-matchup .score {
  font-size: 12px;
}
.matchup-panel {
  display: flex;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  flex-direction: column;
  width: 100% !important;
  padding: 16px;
  box-sizing: border-box;
  border-radius: 16px;
  padding-top: 32px;
  margin-bottom: 50px;
}
.matchup-panel .renew-league-button-container {
  padding: 16px;
  text-align: center;
  border-radius: 8px;
  padding-top: 0px;
  margin-bottom: 32px;
  padding-top: 0px;
}
.matchup-panel .renew-league-button-container .form-elements button {
  border-radius: 8px;
  color: #022047;
}
.matchup-panel .missing-team-message {
  font-size: 14px;
  text-align: center;
  margin-top: 15px;
}
.matchup-panel .roster-matchup {
  padding-bottom: 45px;
}
.matchup-panel .roster-matchup .matchup-header-container {
  padding: 0 10px;
}
.matchup-panel .roster-matchup.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.matchup-player-item {
  display: flex;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  flex-direction: column;
  position: relative;
}
.matchup-player-item .header-row {
  height: 32px;
  min-height: 32px;
  display: flex;
  align-items: flex-end;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  justify-content: space-between;
  margin-right: 20px;
}
.matchup-player-body-item {
  display: flex;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  flex-grow: 1;
  flex-direction: column;
  background-color: rgba(163,187,211,0.05);
  border-radius: 16px;
  padding: 12px;
  box-sizing: border-box;
  min-height: 60px;
  cursor: pointer;
  border: 1px solid rgba(58,70,91,0.5);
  position: relative;
}
.matchup-player-body-item .possession-indicator-wrapper {
  position: absolute;
  top: 0px;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  left: 40px;
  right: 10px;
}
.matchup-player-body-item .container-row {
  display: flex;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
}
.matchup-player-row-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  cursor: pointer;
}
.matchup-player-row-container .player-image-row {
  display: flex;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  box-sizing: border-box;
  min-height: 32px;
}
.matchup-player-row-container .player-image-row .player-image-item {
  display: flex;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  flex-direction: column;
}
.matchup-player-row-container .player-matchup-body-row {
  position: relative;
  display: flex;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  box-sizing: border-box;
}
.roster-matchup-tab-wrapper {
  display: flex;
  flex-direction: column;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: 'Inter', sans-serif;
}
.possession-indicator-rate {
  display: flex;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}
.possession-indicator-rate .divider {
  position: relative;
  justify-content: flex-start;
  display: flex;
  height: 4px;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #3a465b;
}
.my-trade-transactions .team-owner-with-description .name {
  color: #f5f5f5 !important;
}
.player-name-with-position .position {
  font-weight: normal;
  font-size: 10px;
  padding-left: 10px;
  color: #888;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.player-name-with-position .injury-status-indicator {
  position: relative;
  top: -1px;
  padding: 0 2px;
}
.player-scoring {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  font-family: 'Inter', sans-serif;
}
.player-scoring.clickable {
  cursor: pointer;
}
.player-scoring .projections {
  font-size: 11px;
  font-weight: normal;
  color: #a3bbd3;
}
.player-scoring .score {
  font-size: 12px;
  margin-bottom: 2px;
}
.player-scoring .overperform {
  color: #00ceb8;
}
.player-scoring .underperform {
  color: #ff2a6d;
}
.player-scoring .fa-caret-up,
.player-scoring .fa-caret-down {
  color: #102131;
}
.player-scoring .player-scoring-wrapper {
  position: absolute;
  top: 14px;
  left: 0px;
  z-index: 999;
}
.player-stat-text {
  font-size: 11px;
}
.players-news-modal >.players-nav >.player-nav-scroll-wrapper >.player-nav-item >.player-wrapper >.player-name-with-position >.position {
  padding-left: 0;
  padding-top: 2px;
  font-size: 8px;
  color: #fff;
  opacity: 0.9;
}
.players-news-modal >.players-nav >.player-nav-scroll-wrapper >.player-nav-item >.player-wrapper >.player-name-with-position .injury-status-indicator {
  margin-top: 2px;
}
.league-tab-container .league-tab-standings .league-standing-list .team-owner-with-description .meta {
  display: flex;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  flex-direction: row;
  align-items: center;
}
.remaining-players {
  font-size: 10px;
  color: #a3bbd3;
  text-align: left;
  font-family: 'Muli';
}
.remaining-players.flip {
  text-align: right;
}
.remaining-players.flip .label {
  padding-right: 0px;
  padding-left: 4px;
}
.remaining-players.flip .desc {
  text-align: right;
}
.remaining-players .label {
  font-weight: bold;
  padding-right: 4px;
  overflow-wrap: anywhere;
}
.remaining-players .desc {
  text-align: left;
  margin-top: 4px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.roster-matchup-player-item .roster-nickname {
  max-width: none;
  white-space: pre-wrap;
}
.roster-matchup-player-item .player-meta .player-info .player-name {
  font-family: 'Muli';
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 1040px) {
  .roster-matchup-player-item .player-meta .player-info .player-name {
    font-size: 14px;
  }}
.roster-matchup-player-item .player-meta .game-schedule-live-description {
  color: #a3bbd3;
}
.roster-matchup-player-item .player-scoring {
  flex-basis: 40px;
  text-align: right;
}
.roster-matchup-player-item .player-scoring .score {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}
@media (max-width: 1040px) {
  .roster-matchup-player-item .player-scoring .score {
    font-size: 12px;
  }}
.roster-matchup-player-item .player-scoring .projections {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #a3bbd3;
  padding-top: 2px;
}
@media (max-width: 1040px) {
  .roster-matchup-player-item .player-scoring .projections {
    font-size: 10px;
  }}
.roster-matchup-player-item .player-stat-text {
  text-align: left;
}
.roster-matchup-player-item.flip {
  flex-direction: row-reverse;
}
.roster-matchup-player-item.flip .player-meta {
  text-align: right;
}
.roster-matchup-player-item.flip .player-meta .player-info .player-desc {
  text-align: right;
  flex-direction: row-reverse;
}
.roster-matchup-player-item.flip .player-stat-text {
  text-align: right;
}
.roster-matchup-player-item.flip .player-scoring {
  text-align: left;
}
.roster-matchup .roster-matchup-row .game-schedule-live-description {
  text-align: left;
}
.roster-matchup .roster-matchup-row .roster-matchup-row-player .player-name-with-position .position {
  position: relative;
  top: -1px;
  padding-left: 0;
  padding-right: 10px;
}
.roster-matchup .roster-matchup-row .roster-matchup-row-player .game-schedule-live-description {
  text-align: right;
}
.roster-matchup .roster-matchup-row .roster-matchup-row-player .player-stat-text {
  text-align: right;
  margin-top: 4px;
  color: #777;
  max-width: 131px;
  white-space: normal;
}
.roster-matchup .roster-matchup-row .roster-matchup-row-player .roster-nickname {
  text-align: right;
}
.roster-matchup .roster-matchup-row .roster-matchup-row-player:nth-child(3n+0) .player-name-with-position .position {
  padding-left: 10px;
  padding-right: 0;
}
.roster-matchup .roster-matchup-row .roster-matchup-row-player:nth-child(3n+0) .game-schedule-live-description {
  text-align: left;
}
.roster-matchup .roster-matchup-row .roster-matchup-row-player:nth-child(3n+0) .player-stat-text {
  text-align: left;
}
.roster-matchup .roster-matchup-row .roster-matchup-row-player:nth-child(3n+0) .roster-nickname {
  text-align: left;
}
.roster-matchup .roster-matchup-row .player-scoring {
  text-align: center;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.roster-matchup .roster-matchup-row .player-scoring .projections {
  text-align: center;
}
.roster-matchup2 .matchup-header {
  padding: 0 8px;
  margin-top: 36px;
  font-family: 'Inter', sans-serif;
}
.roster-matchup2 .roster-matchup-row .roster-matchup-row-player2 .player-scoring .score {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}
.roster-matchup2 .roster-matchup-row .roster-matchup-row-player2 .player-scoring .projections {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #a3bbd3;
  padding-top: 2px;
}
.roster-matchup2 .roster-matchup-row .roster-matchup-row-player2.flip {
  flex-direction: row-reverse;
}
.roster-matchup2 .roster-matchup-row .roster-matchup-row-player2.flip .player-meta.empty {
  text-align: right;
  flex-direction: row-reverse;
}
.roster-matchup2 .roster-matchup-row .injury-status-indicator {
  padding: 0 5px;
}
.roster-matchup2 .roster-matchup-row .roster-matchup-player-item .player-stat-text {
  margin-top: 6px;
  color: #edf2f9;
  white-space: normal;
  line-height: 1.18;
}
.roster-matchup2 .roster-matchup-row .roster-matchup-player-item:nth-child(3n+0) .player-name-with-position .position {
  padding-left: 10px;
  padding-right: 0;
}
.roster-matchup2 .roster-matchup-row .roster-matchup-player-item:nth-child(3n+0) .game-schedule-live-description {
  text-align: left;
  font-size: 8px;
}
.roster-matchup2 .roster-matchup-row .roster-matchup-player-item:nth-child(3n+0) .player-stat-text {
  text-align: left;
}
.roster-nickname {
  font-size: 10px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 4px;
}
.roster-position-selector .roster-item .position {
  flex-grow: 1;
  font-size: 14px;
  font-weight: bold;
}
.roster-score-and-projection-matchup {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Inter', sans-serif;
  margin-right: 6px;
}
.roster-score-and-projection-matchup.flip {
  flex-direction: row-reverse;
  margin-right: auto;
  margin-left: 6px;
}
.roster-score-and-projection-matchup.row {
  flex-direction: row;
}
.roster-score-and-projection-matchup .projections {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-size: 11px;
  font-weight: 600;
  color: #cdd8ea;
  white-space: nowrap;
  margin: 0 3px;
  margin-top: 1px;
}
.roster-score-and-projection-matchup .projections .proj-label {
  color: #606f8c;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.selectable-roster .team-roster-item .player-stat-text {
  margin-top: 5px;
}
.selectable-roster .team-roster-item .player-scoring {
  color: #fff;
}
.selectable-roster .team-roster-item .player-scoring .projections {
  color: #a3bbd3;
}
.selectable-roster .team-roster-item.selected {
  background: #18202f !important;
  padding: 0 10px;
  border-radius: 5px;
  border: 1px solid #ffae58;
}
.selectable-roster .team-roster-item.selected .cell-position {
  color: #ffae58;
  font-weight: bold;
}
.set-keepers-panel .channel-settings-body .content .select-keeper-item .player-name {
  font-weight: bold;
  font-size: 13px;
  color: #fff;
  margin-bottom: 2px;
}
.set-trade-player-modal .channel-settings-body .left-column .trade-roster-item-container.selected {
  background: #3a475f;
}
.team-owner-matchup-row .user {
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
  align-items: center;
}
.team-owner-matchup-row .user .team-owner-matchup-roster {
  flex-grow: 1;
}
.team-owner-matchup-row .user .team-owner-matchup-roster .team-owner-with-description .team-name {
  max-width: 60px;
}
.team-owner-matchup-row .user.reverse .team-owner-with-description {
  flex-direction: row-reverse;
}
.team-owner-matchup-row .user.reverse .team-owner-with-description .avatar-container {
  margin-right: 0px;
  margin-left: 10px;
}
.team-owner-matchup-row .user.reverse .team-owner-with-description .avatar {
  margin-right: 0px;
}
.team-owner-matchup-row .user.reverse .team-owner-with-description div {
  text-align: right;
}
.team-owner-matchup-row .user.reverse .team-owner-with-description .meta {
  margin-left: 10px;
  margin-right: 0;
}
.team-owner-matchup-row .player-scoring {
  width: 40px;
  text-align: center;
}
.team-owner-matchup-row-wrapper .remaining-players-container {
  display: flex;
  margin: 0 10px;
}
.team-owner-matchup-row-wrapper .remaining-players-container .remaining-players {
  flex-grow: 1;
  padding: 10px 0;
  flex-basis: 0;
}
.team-owner-with-description .avatar-container {
  margin-right: 10px;
}
.team-owner-with-description >.meta >.name {
  font-weight: bold;
  color: #fff;
  font-size: 12px;
  text-transform: none;
  position: relative;
}
.team-owner-with-description >.meta >.name .commish-badge {
  position: relative;
  top: 3px;
  margin-left: 5px;
}
.team-owner-with-description >.meta >.team-name {
  margin-top: 3px;
  font-weight: normal;
  color: #ccc;
  font-size: 10px;
  line-height: 12px;
  text-transform: none;
  max-width: 110px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.team-owner-with-description >.meta >.description {
  font-size: 11px;
  color: #aaa;
  margin-top: 3px;
  margin-bottom: 1px;
}
.team-panel .team-roster .player-scoring {
  color: #fff;
}
.team-roster .row {
  display: flex;
  align-items: center;
}
.team-roster .team-roster-item.in-game {
  background-color: rgba(0,206,184,0.05);
}
.team-roster .team-roster-item.selected {
  background: #022047 !important;
  border: 1px solid #ffae58;
  color: #fff;
}
.team-roster .team-roster-item.selected .position {
  color: #fff;
}
.team-roster .team-roster-item.selected .cell-position {
  color: #ffae58;
  font-weight: bold;
}
.team-roster .team-roster-item.valid .position {
  color: #fff;
}
.team-roster .player-scoring {
  text-align: right;
}
.team-roster .player-name {
  font-size: 14px;
  color: #fff;
  font-family: 'Inter';
  margin-right: 4px;
}
.team-roster .roster-nickname {
  color: #fff;
  padding-right: 4px;
}
.team-roster .game-schedule-live-description {
  margin: 6px 0;
  display: flex;
  align-items: center;
}
.team-roster .player-stat-text {
  color: #a3bbd3;
}
.trade-modal .rosters-container .roster-item-container .trade-partner-item.selected {
  background: #283245;
}
.trade-modal .rosters-container .roster-item-container .trade-partner-item.selected .trade-partner i {
  color: #00ceb8;
}
.trade-modal .rosters-container .roster-item-container .roster .team-roster-item .game-schedule-live-description {
  color: #fff;
  opacity: 0.7;
}
.trade-modal .trade-state .trade-state-player .player-name {
  font-weight: bold;
}
.trade-preview-roster .team-roster-item .game-schedule-live-description {
  color: #fff;
  opacity: 0.7;
}
.trade-preview-roster .team-roster-item.selected {
  background: #fff !important;
  padding: 0 10px;
  border-radius: 5px;
  border: 1px solid #ffae58;
}
.trade-preview-roster .team-roster-item.selected .cell-position {
  color: #ffae58;
  font-weight: bold;
}
.trade-preview-roster .cell-player-meta .position {
  padding-left: 5px;
  position: relative;
  top: -1px;
}
.trade-selectable-roster .team-roster-item.selected {
  background: #3a475f !important;
  padding: 0 10px;
  border-radius: 5px;
  border: 1px solid #ffae58;
}
.trade-selectable-roster .team-roster-item.selected .cell-position {
  color: #ffae58;
  font-weight: bold;
}
.trade-selectable-roster .cell-player-meta .position {
  padding-left: 5px;
  position: relative;
  top: -1px;
}
.trade-interest-modal .player-meta .player-name {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}
.trade-interest-modal .player-meta .player-pos {
  font-size: 12px;
  color: #a3bbd3;
  margin-top: 4px;
}
.transaction-player .player-name {
  margin-right: 3px;
}
.transaction-trade-item .roster-item .owner-container {
  -webkit-flex: 0 0 150px;
  -ms-flex: 0 0 150px;
  flex: 0 0 150px;
}
.transaction-trade-item .roster-item .owner-container .meta .name {
  width: 100px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.week-selector .label {
  font-weight: 900;
  color: #a3bbd3;
  flex-grow: 1;
}
.week-selector .selected {
  color: #a3bbd3;
  font-weight: 900;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #a3bbd3;
  font-size: 10px;
}
.week-selector .week {
  margin-left: 10px;
  cursor: pointer;
  border-radius: 50%;
}
.week-selector .week:hover {
  opacity: 0.8;
}
.week-selector .week:first-child {
  cursor: pointer;
}
.weekly-report-owner-item .owner-row .owner-meta .team-name {
  font-size: 11px;
  color: #999;
}
.weekly-report-player-item .owner-row .owner-meta .team-name {
  font-size: 11px;
  color: #999;
  margin-top: 3px;
}
.nav-league-item-wrapper .nav-league-item .nav-info-container .score-container .roster-score-and-projection-matchup {
  margin: 0;
}
.player-card-header.team-defense .player-image-container .player-image {
  position: relative;
  left: 40px;
  top: -10px;
}
.player-card-header .player-image-container .player-image {
  height: 206px;
}
.player-card-header .player-info-container .player-name {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  font-family: 'Muli';
  line-height: 1.22;
  display: flex;
  align-items: center;
}
.player-projections-table .header-row {
  padding: 4px;
  border-bottom: 1px solid #ddd;
  font-size: 11px;
  font-weight: 900;
}
.player-projections-table .header-row .cell {
  display: inline-block;
  min-width: 20px;
  padding-right: 5px;
  color: #333;
}
.player-projections-table .header-row .opponent {
  width: 120px;
}
.player-projections-table .header-row .pts {
  width: 40px;
}
.player-projections-table .header-row .proj {
  width: 40px;
}
.player-projections-table .week-row .cell .game-schedule-live-description {
  width: 120px;
}
.player-projections-table .week-row .cell .player-scoring {
  flex-direction: row;
}
.player-projections-table .week-row .cell .player-scoring >.score {
  width: 40px;
  font-size: 11px;
}
.player-projections-table .week-row .cell .player-scoring >.projections {
  width: 40px;
}

  /* --- dashboard-specific additions (not present in the extracted bundle) --- */
  .card .matchup-panel { margin-bottom: 0; }
  .roster-matchup-tab-wrapper .matchup-header-container { padding: 0 10px; }
  .matchup-owner-item .owner-container .meta { margin-left: 8px; }
  .matchup-owner-item .owner-container .meta.flip { margin-left: auto; margin-right: 8px; }
  /* position pill between the two player items. The bundle rule targets this exact
     element: it takes the pill out of flow (position:absolute, top:12px, z-index:10)
     so the row's justify-content:center keeps it perfectly centered regardless of
     the two sides' widths. We keep the bundle's positioning but drop the 32px
     circular chrome for a lighter text pill. */
  .matchup-player-row-container .player-matchup-body-row >.position {
    position: absolute; left: 50%; top: 27px; transform: translateX(-50%); z-index: 10;
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; height: auto; width: auto; min-width: 16px;
    background: none; border: none; border-radius: 0;
    font-size: 11px; font-weight: 800; line-height: 1.15; padding: 0 4px; text-align: center;
  }
  .roster-matchup-tab-wrapper .player-section >.row >div,
  .roster-matchup-tab-wrapper .roster-body >.row >div {
    font-size: 13px; font-weight: 700; color: #a3bbd3; letter-spacing: 0.4px;
  }
  .matchup-player-item .header-row { height: auto; min-height: 36px; }
  .matchup-player-item .empty-player { color: var(--muted); font-size: 12px; }
  .injury-status-indicator { font-size: 10px; font-weight: 800; line-height: 1; }

  /* ---- responsive matchup panel ------------------------------------
     The panel content has a natural floor of ~440px (two 170px name
     columns + score columns), so without help a row overflows and text
     is hard-clipped at the panel edge once the panel drops below that.
     Two-part fix:
       1. min-width:0 + ellipsis through the flex chain, so a row always
          fits its panel and long text truncates gracefully;
       2. container queries on each .card condense the typography as the
          card's OWN width shrinks — panel width is not viewport width
          because the grid reflows 3 -> 2 -> 1 columns. */
  .card { container-type: inline-size; }
  .matchup-panel { min-width: 0; }
  .matchup-player-item { min-width: 0; }
  .matchup-player-item .header-row .row { min-width: 0; }
  /* The name sits in an intermediate <div> with no class; give it min-width:0 so
     the ellipsis chain reaches the .player-name (otherwise the div won't shrink
     below its content and the name spills over onto the score column). */
  .matchup-player-item .header-row .row > div { min-width: 0; }
  .matchup-player-item .player-name { min-width: 0; }
  .matchup-player-body-item .container-row { min-width: 0; }
  .matchup-player-body-item .container-row .row,
  .matchup-player-body-item .container-row .column { min-width: 0; }
  .game-schedule-live-description { min-width: 0; }
  .player-scoring { min-width: 0; overflow: hidden; }
  .matchup-owner-item { min-width: 0; }
  .matchup-owner-item .owner-container { min-width: 0; }
  .matchup-owner-item .owner-container .row { min-width: 0; }
  .matchup-owner-item .meta { min-width: 0; }
  .matchup-owner-item .meta .team-name,
  .matchup-owner-item .meta .name {
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  @container (max-width: 620px) {
    .matchup-player-item .header-row .row { max-width: 150px !important; }
    .matchup-player-item .player-name { font-size: 12px; }
    .player-scoring .score { font-size: 13px; }
    .owner-container .avatar { width: 38px !important; height: 38px !important; flex: 0 0 38px !important; }
  }
  @container (max-width: 480px) {
    .matchup-player-item .header-row .row { max-width: 112px !important; }
    .matchup-player-item .player-name { font-size: 11px; }
    .player-scoring { min-width: 28px; }
    .player-scoring .score { font-size: 11px; }
    .player-scoring .projections { font-size: 9px; }
    .owner-container .avatar { width: 34px !important; height: 34px !important; flex: 0 0 34px !important; }
    .card-top .name { font-size: 14px; }
  }
  @container (max-width: 380px) {
    .matchup-player-item .header-row .row { max-width: 106px !important; }
    .matchup-player-item .player-name { font-size: 10px; }
    .player-scoring { min-width: 24px; }
    .player-scoring .score { font-size: 9px; }
    .player-scoring .projections { font-size: 8px; }
    /* Bottom row (win% / record / proj) collides in the center on a narrow card:
       drop the 48px indent and the record's side margin so it fits this half. */
    .matchup-owner-item .bottom-row { margin-left: 8px; }
    .matchup-owner-item .bottom-row.flip { margin-right: 8px; }
    .matchup-owner-item .description { margin: 0 3px; }
  }
  @container (max-width: 340px) {
    .matchup-player-item .header-row .row { max-width: 100px !important; }
    .matchup-player-item .player-name { font-size: 10px; }
    .player-scoring { min-width: 26px; }
    .player-scoring .score { font-size: 9px; }
    .player-scoring .projections { font-size: 8px; }
    .matchup-owner-item .bottom-row { margin-left: 6px; }
    .matchup-owner-item .bottom-row.flip { margin-right: 6px; }
    .matchup-owner-item .description { margin: 0 3px; }
  }
  /* Roomy cards: give the owner name a bit more type. */
  @container (min-width: 640px) {
    .matchup-owner-item .owner-container .name { font-size: 14px; }
    .matchup-owner-item .owner-container .team-name { font-size: 12px; }
  }

/* Sleeper webfonts: Inter/Poppins/Oswald + Muli (Mulish files) from Google Fonts (latin + latin-ext), Lato @font-face copied from the real Sleeper bundle. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/mulish/v18/1Ptvg83HX_SGhgqk0QotcqA.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/mulish/v18/1Ptvg83HX_SGhgqk3wot.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/mulish/v18/1Ptvg83HX_SGhgqk0QotcqA.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/mulish/v18/1Ptvg83HX_SGhgqk3wot.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/mulish/v18/1Ptvg83HX_SGhgqk0QotcqA.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/mulish/v18/1Ptvg83HX_SGhgqk3wot.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZosUhiZTaR.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/oswald/v57/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZosUZiZQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDD4Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDD4Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLBT5Z1JlFc-K.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLBT5Z1xlFQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 100;
  src: local('Lato Hairline'), local('Lato-Hairline'), url("https://fonts.gstatic.com/s/lato/v13/h3_FseZLI76g1To6meQ4zX-_kf6ByYO6CLYdB4HQE-Y.woff2") format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 100;
  src: local('Lato Hairline'), local('Lato-Hairline'), url("https://fonts.gstatic.com/s/lato/v13/ifRS04pY1nJBsu8-cUFUS-vvDin1pK8aKteLpeZ5c0A.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: local('Lato Light'), local('Lato-Light'), url("https://fonts.gstatic.com/s/lato/v13/IY9HZVvI1cMoAHxvl0w9LVKPGs1ZzpMvnHX-7fPOuAc.woff2") format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: local('Lato Light'), local('Lato-Light'), url("https://fonts.gstatic.com/s/lato/v13/22JRxvfANxSmnAhzbFH8PgLUuEpTyoUstqEm5AMlJo4.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato Regular'), local('Lato-Regular'), url("https://fonts.gstatic.com/s/lato/v13/8qcEw_nrk_5HEcCpYdJu8BTbgVql8nDJpwnrE27mub0.woff2") format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato Regular'), local('Lato-Regular'), url("https://fonts.gstatic.com/s/lato/v13/MDadn8DQ_3oT6kvnUq_2r_esZW2xOQ-xsNqO47m55DA.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: local('Lato Bold'), local('Lato-Bold'), url("https://fonts.gstatic.com/s/lato/v13/rZPI2gHXi8zxUjnybc2ZQFKPGs1ZzpMvnHX-7fPOuAc.woff2") format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: local('Lato Bold'), local('Lato-Bold'), url("https://fonts.gstatic.com/s/lato/v13/MgNNr5y1C_tIEuLEmicLmwLUuEpTyoUstqEm5AMlJo4.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  src: local('Lato Black'), local('Lato-Black'), url("https://fonts.gstatic.com/s/lato/v13/t85RP2zhSdDjt5PhsT_SnlKPGs1ZzpMvnHX-7fPOuAc.woff2") format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  src: local('Lato Black'), local('Lato-Black'), url("https://fonts.gstatic.com/s/lato/v13/lEjOv129Q3iN1tuqWOeRBgLUuEpTyoUstqEm5AMlJo4.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}

/* Details: show exactly 3 team cards across the screen. Each card takes a third
   of the grid width (minus the two 16px gaps), so it scales up as the screen gets
   wider. The threshold is the breakeven where a third of the grid equals the card's
   natural 420px width (~1340px viewport incl. 40px body padding + 32px gaps): below
   it the cards keep their 420px size and the grid scrolls horizontally instead of
   squishing the text; above it exactly 3 fit. */
@media (min-width: 1340px) {
  .grid.details .card {
    flex: 0 0 calc((100% - 32px) / 3);
  }
}
