:root {
  /* Model black — shared site canvas */
  --bg: #000000;
  --panel: rgba(255, 255, 255, 0.025);
  --stroke: rgba(255, 255, 255, 0.08);
  --text: #f3f4f8;
  --muted: rgba(243, 244, 248, 0.55);
  --accent: #a594ff;
  --accent-dim: rgba(165, 148, 255, 0.14);
  font-family: "Sora", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; color: var(--text); }
body {
  background: var(--bg);
  overflow: hidden;
}

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.app {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 0;
}

.sidebar {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 16px 12px;
  border-right: 1px solid var(--stroke);
  background: #000000;
  overflow: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  padding: 4px 8px 8px;
}
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  background: var(--accent-dim);
  border: 1px solid rgba(165, 148, 255, 0.45);
}
.brand-name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1 1 auto;
  min-height: 0;
}

.side-account {
  margin-top: auto;
  position: relative;
  border-top: 1px solid var(--stroke);
  padding-top: 10px;
}
.side-account-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}
.side-account-btn:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--stroke);
}
.side-account-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 650;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex: 0 0 auto;
}
.side-account-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.side-account-name {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.side-account-tier {
  font-size: 11px;
  color: var(--muted);
  text-transform: lowercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.side-account-menu {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 8px);
  background: rgba(0, 0, 0, 0.98);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  z-index: 20;
}
.side-account-email {
  padding: 10px 12px;
  font-size: 11px;
  color: var(--muted);
  border-bottom: 1px solid var(--stroke);
  overflow: hidden;
  text-overflow: ellipsis;
}
.side-account-action {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: rgba(243, 244, 248, 0.86);
  text-align: left;
  text-decoration: none;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.side-account-action:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.login-page {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
}
.login-card {
  width: min(420px, 100%);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: #000000;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.login-brand { padding: 0; }
.login-card h1 {
  margin: 8px 0 0;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.login-copy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.login-error {
  margin: 0;
  color: #ff8e8e;
  font-size: 13px;
}
.login-google {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 10px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
}
.login-google:hover { filter: brightness(0.96); }
.login-back {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}
.login-back:hover { color: var(--text); }

.nav-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 10px 6px;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 10px;
  color: rgba(243, 244, 248, 0.82);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
}
.nav-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.85;
}
.nav-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}
.nav-item.on {
  background: var(--accent-dim);
  border-color: rgba(165, 148, 255, 0.35);
  color: var(--text);
}
.nav-item.on svg { opacity: 1; color: var(--accent); }

.sheet {
  position: relative;
  height: 100%;
  min-height: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (max-width: 900px) {
  .app { grid-template-columns: 72px minmax(0, 1fr); }
  .brand-name,
  .nav-label,
  .nav-item { font-size: 0; gap: 0; justify-content: center; }
  .nav-item { padding: 10px; }
  .nav-item svg { margin: 0; }
  .brand { justify-content: center; padding-left: 0; padding-right: 0; }
  .nav-label { min-height: 8px; padding-bottom: 0; }
}

.toolbar,
.books-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px 16px;
  flex-shrink: 0;
}
.books-row { padding-top: 0; }
.books-row .pills { flex: 0 0 auto; }
.books-row .books {
  flex: 1 1 auto;
  min-width: 0;
}
.books-row .filters {
  flex: 0 0 auto;
  margin-left: auto;
}
.books { display: flex; gap: 6px; flex-wrap: wrap; flex: 1; min-width: 0; }

.pills, .phase, .books { display: flex; gap: 6px; flex-wrap: wrap; }
.pills button,
.phase button,
.books button,
.ghost {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  padding: 6px 10px;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  border-radius: 8px;
}
.pills button.on,
.phase button.on,
.books button.on {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.search { display: flex; flex: 1; min-width: 180px; }
.search input {
  width: 100%;
  border: 0;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 8px;
}

.filters {
  margin-left: auto;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.filters .ghost {
  align-self: flex-end;
}
.filt {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.filt select {
  appearance: none;
  border: 0;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  padding: 6px 28px 6px 10px;
  margin: 0;
  min-height: 32px;
  border-radius: 8px;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, rgba(243, 244, 248, 0.55) 50%),
    linear-gradient(135deg, rgba(243, 244, 248, 0.55) 50%, transparent 50%);
  background-position: calc(100% - 14px) 14px, calc(100% - 10px) 14px;
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
}
.filt select:focus {
  outline: 1px solid var(--stroke);
}

.sport-ico, .book-ico { display: block; height: 18px; width: auto; }
.sport-ico.invert { filter: invert(1); }

.board {
  flex: 1;
  min-height: 0;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  gap: 16px;
  padding: 4px 16px 24px;
  align-content: start;
}
.board > * {
  min-width: 0;
  max-width: 100%;
}
@media (min-width: 960px) {
  .board { grid-template-columns: 1fr 1fr; }
}

.card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 16px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* overflow:hidden + CSS grid zeroes auto row size to padding (34px). */
  overflow: visible;
  min-width: 0;
  min-height: min-content;
}
.card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}
.card.picked {
  border-color: rgba(165, 148, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(165, 148, 255, 0.28);
}
.card.skel { min-height: 220px; }
body.has-slip .board { padding-bottom: 88px; }

.slip-tray {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.94);
  border: 1px solid var(--stroke);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.slip-tray[hidden] { display: none; }
.slip-tray b { font-size: 18px; }
.slip-book { color: var(--muted); font-size: 13px; }
.slip-go {
  border: 0;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 650;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
}
.slip-go:disabled { opacity: 0.4; cursor: not-allowed; }

.id {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 10px;
  align-items: center;
}
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.avatar .mono {
  display: grid;
  place-items: center;
  height: 100%;
  font-weight: 700;
  color: var(--muted);
}
.avatar .team {
  position: absolute;
  right: 2px;
  bottom: 2px;
  z-index: 2;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: #000000;
  color: var(--text);
  padding: 1px 3px;
  border-radius: 3px;
}
.id {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
}
.who {
  min-width: 0;
  overflow: hidden;
}
.who .name {
  font-weight: 650;
  font-size: 16px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.who a.name { color: inherit; text-decoration: none; }
.who a.name:hover { color: var(--accent, #8E7BFF); }
a.avatar { color: inherit; text-decoration: none; }
.who .meta {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.sport-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 6px;
  padding: 1px 6px 1px 3px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.02em;
}
.sport-pill .sport-ico {
  width: 12px;
  height: 12px;
}
.avatar:has(img) .mono { display: none; }
.market {
  color: var(--muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
}
.market .stat {
  color: var(--text);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fair {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: right;
  flex-shrink: 0;
  max-width: 72px;
}
.fair b {
  display: block;
  color: var(--text);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 2px;
}

.hero {
  display: block;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--accent);
  background: var(--accent-dim);
  border-radius: 12px;
  padding: 12px 14px 12px;
}
.hero .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
}
.hero .book {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 40px;
}
.hero .book .book-ico {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: none;
}
.hero .tag {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}
.hero .open {
  margin-left: auto;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero .pick {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 10px;
  margin-top: 8px;
  color: var(--accent);
}
.hero .side { font-size: 18px; font-weight: 700; }
.hero .arw { font-size: 14px; }
.hero .delta { color: var(--muted); font-size: 12px; margin-top: 4px; }

.avatar .team { display: none; }

.compare { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-size: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 8px;
  border-radius: 999px;
}
.chip b { font-weight: 650; }
.chip.off { color: var(--muted); }
.chip.hero {
  border: 1px solid var(--accent);
  background: var(--accent-dim);
}
.chip .book-ico {
  height: 12px;
  width: auto;
  display: inline-block;
  vertical-align: -2px;
  margin-right: 4px;
}

.trust {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding-top: 2px;
}
.tlabel {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tval { font-weight: 650; font-size: 15px; line-height: 1.2; }
.tsub { color: var(--muted); font-size: 11px; margin-top: 4px; }
.meter { display: flex; gap: 2px; }
.meter i {
  display: block;
  width: 8px;
  height: 10px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
}
.meter i.f { background: var(--accent); }
.spark { width: 72px; height: 22px; color: var(--muted); display: block; }

.empty { margin: 0; padding: 24px 12px; color: var(--muted); }
.error { color: #e8a0a0; padding: 16px 12px; }

.slate-board { grid-template-columns: 1fr; }
@media (min-width: 960px) {
  .slate-board { grid-template-columns: 1fr 1fr; }
}
.card.game { gap: 12px; }
.game-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.game-meta {
  color: var(--muted);
  font-size: 12px;
  min-width: 0;
}
.status {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 4px 8px;
}
.status.live {
  color: var(--text);
  border-color: rgba(165, 148, 255, 0.45);
  background: var(--accent-dim);
}
.status.done { opacity: 0.75; }
.matchup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}
.matchup .team {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.matchup .team:last-child {
  flex-direction: row-reverse;
  text-align: right;
}
.avatar.sm {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.tname {
  font-weight: 650;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vs {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.score {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 18px;
  font-weight: 700;
}
.score span { color: var(--muted); font-weight: 500; font-size: 14px; }

.card.game.can-open { cursor: pointer; }
.card.game.open { border-color: rgba(165, 148, 255, 0.4); }
.game-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.watch-btn {
  appearance: none;
  border: 1px solid rgba(165, 148, 255, 0.45);
  background: var(--accent-dim);
  color: var(--text);
  font: inherit;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 8px;
  cursor: pointer;
}
.watch-btn:hover,
.watch-btn.on { border-color: var(--accent); }

.theater-scrim {
  position: fixed;
  inset: 0;
  z-index: 39;
  background: rgba(2, 4, 10, 0.78);
}
.theater-scrim[hidden],
.pip[hidden] {
  display: none !important;
}
body.theater-open { overflow: hidden; }

.pip {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  width: min(420px, calc(100vw - 32px));
  background: rgba(0, 0, 0, 0.96);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.pip.theater:not([hidden]) {
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  width: min(1520px, calc(100vw - 24px));
  max-height: calc(100vh - 16px);
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.98);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65);
  overflow: hidden;
}
.pip-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  cursor: grab;
  user-select: none;
  border-bottom: 1px solid var(--stroke);
}
.pip.theater .pip-bar {
  flex-shrink: 0;
  padding: 8px 14px 6px;
  border-bottom: 0;
  cursor: default;
}
.pip-bar:active { cursor: grabbing; }
.pip.theater .pip-bar:active { cursor: default; }
.pip-title {
  min-width: 0;
  flex: 1;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pip-actions {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.pip-actions a.ghost { text-decoration: none; }
.pip-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 10px 0;
}
.pip-tabs:empty { display: none; }
.pip.theater .pip-tabs {
  padding: 0 2px 12px;
}
.pip-tab {
  appearance: none;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font: inherit;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  cursor: pointer;
}
.pip-tab.on {
  color: var(--text);
  border-color: rgba(165, 148, 255, 0.45);
  background: var(--accent-dim);
}
.pip-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}
.pip.theater .pip-frame {
  aspect-ratio: auto;
  flex: 0 0 auto;
  width: 100%;
  height: min(900px, calc(100vh - 56px));
  min-height: 560px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: var(--bg, #000000);
}

/* Keep the Model board usable under the scrim — don't collapse the rail. */
.box-map.live {
  border-color: rgba(165, 148, 255, 0.35);
}
.boxscore {
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.box-map {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 10px 12px;
}
.box-map-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.box-map-name {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.box-map-score {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
}
.box-map-score span { color: var(--muted); font-weight: 500; font-size: 13px; }
.box-map-score.win {
  font-size: 12px;
  font-weight: 650;
  color: var(--text);
}
.box-teams {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 900px) {
  .box-teams { grid-template-columns: 1fr; }
}
.box-team {
  font-size: 12px;
  font-weight: 650;
  margin-bottom: 6px;
}
.box-scroll { overflow-x: auto; }
.box-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
  min-width: 320px;
}
.box-table th {
  color: var(--muted);
  font-weight: 650;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: right;
  padding: 0 4px 4px;
  white-space: nowrap;
}
.box-table th:first-child,
.box-table td.pn { text-align: left; }
.box-table td {
  padding: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: right;
  white-space: nowrap;
}
.box-table td.pn {
  font-weight: 650;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.box-table tr.star td.pn { color: var(--accent); }
