/* ============================================================
   104 GAMES LATER — app-specific additions for the live pool app
   Built on the same design tokens; kept separate from the
   vendored design-system app.css.
   ============================================================ */

/* the [hidden] attribute must win over components that set `display`
   (e.g. .topbar/.toast use display:flex). */
[hidden] { display: none !important; }

/* ---------- auth ---------- */
.auth-wrap { min-height: calc(100vh - 64px); display: grid; place-items: center; padding: 24px; }
.auth-card { width: 100%; max-width: 420px; }
.auth-card .card__head { display: block; }
.auth-card__body { padding: 22px; display: grid; gap: 16px; }
.auth-card h2 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; letter-spacing: -.01em; font-size: 30px; line-height: 1; }
.field { display: grid; gap: 7px; }
.field > label { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; color: var(--text-muted); }
.field input {
  width: 100%; height: 48px; padding: 0 14px; border-radius: var(--radius-md);
  border: 2px solid var(--border-strong); background: var(--surface-2); color: var(--text);
  font-family: var(--font-sans); font-size: 16px; font-variant-numeric: tabular-nums;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.field input:focus { outline: none; border-color: var(--primary); box-shadow: var(--glow-pitch); }
.formError { color: var(--danger-fg); font-size: 13px; min-height: 18px; margin: 0; font-weight: 600; }
.switcher { text-align: center; font-size: 13px; color: var(--text-muted); margin: 4px 0 0; }
.switcher a { color: var(--primary); text-decoration: none; font-weight: 700; cursor: pointer; }
.auth-hero { display: grid; justify-items: center; gap: 14px; text-align: center; margin-bottom: 22px; }
.auth-hero .brand__mark { width: 60px; height: 60px; border-radius: var(--radius-lg); font-size: 28px; }
.auth-hero .kick { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; color: var(--primary); }

/* ---------- score banner (your standings strip) ---------- */
.banner { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: clip; margin-bottom: 22px; }
.banner__cell { background: var(--surface); padding: 16px 18px; display: grid; gap: 3px; }
.banner__v { font-family: var(--font-display); font-weight: 900; font-size: 30px; line-height: 1; font-variant-numeric: tabular-nums; color: var(--text); }
.banner__cell--pts .banner__v { color: var(--primary); }
.banner__k { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-subtle); font-weight: 700; }

/* ---------- predict: group card additions ---------- */
.group__sub { font-size: 11px; color: var(--text-subtle); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; padding: 0 16px 12px; }

/* nudge controls inside compact standings */
.gstand__row--edit { grid-template-columns: 22px 1fr 24px 38px auto; }
.gstand__moves { display: inline-flex; gap: 3px; }
.gstand__moves button { width: 22px; height: 22px; border-radius: var(--radius-xs); border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text-muted); cursor: pointer; display: grid; place-items: center;
  font-size: 11px; line-height: 1; transition: color var(--dur-fast), border-color var(--dur-fast); }
.gstand__moves button:hover:not([disabled]) { color: var(--primary); border-color: var(--primary); }
.gstand__moves button[disabled] { opacity: .3; cursor: default; }
.gstand__reset { background: none; border: 0; cursor: pointer; font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; font-size: 10px; color: var(--text-subtle); display: inline-flex; align-items: center; gap: 4px; }
.gstand__reset:hover { color: var(--primary); }
.gstand__reset svg { width: 12px; height: 12px; }

/* the 6 fixtures with W/D/L picks */
.gpicks { padding: 12px 16px 16px; background: var(--surface-2); border-top: 1px solid var(--border); display: grid; gap: 10px; }
.gpicks .cap { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 10px; color: var(--text-subtle); }
.gfix { display: grid; gap: 7px; }
.gfix__meta { font-size: 10px; color: var(--text-subtle); text-transform: uppercase; letter-spacing: .05em; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.gfix__meta svg { width: 11px; height: 11px; }
.gfix__teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.gfix__t { display: inline-flex; align-items: center; gap: 6px; min-width: 0; }
.gfix__t img { width: 20px; height: 13px; object-fit: cover; border-radius: 2px; box-shadow: inset 0 0 0 1px var(--border-hair); flex: none; }
.gfix__t--h { justify-content: flex-end; } .gfix__t--h img { order: 2; }
.gfix__t .nm { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gfix__v { color: var(--text-subtle); font-size: 11px; }
.gpick-btns { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 5px; }
.gpick {
  appearance: none; cursor: pointer; border: 1px solid var(--border); background: var(--surface);
  color: var(--text-muted); border-radius: var(--radius-sm); padding: 7px 4px; text-align: center;
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .03em; font-size: 11px;
  transition: all var(--dur-fast) var(--ease-out);
}
.gpick:hover:not(:disabled) { border-color: var(--border-strong); color: var(--text); }
.gpick:active:not(:disabled) { transform: scale(var(--press-scale)); }
.gpick.on { background: var(--primary); color: var(--on-primary); border-color: var(--primary); box-shadow: var(--shadow-sm); }
.gfix--locked .gpick-btns { opacity: .55; }
.gfix--locked .gpick:disabled { cursor: default; }
.gfix__final { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--primary); text-align: center; }
.gfix__final.miss { color: var(--text-subtle); }

/* empty / loading states */
.empty { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty svg { width: 40px; height: 40px; color: var(--text-subtle); margin-bottom: 12px; }

/* ---------- pool / leaderboard selector ---------- */
.poolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 16px; }
.poolbar .seg { flex-wrap: wrap; }
.poolbar__actions { margin-left: auto; display: flex; gap: 8px; }
.poolbar__actions .btn { height: 38px; padding: 0 16px; font-size: 13px; }
.poolform { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.poolform input { flex: 1; min-width: 180px; height: 42px; padding: 0 13px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-strong); background: var(--surface-2); color: var(--text); font: inherit; font-size: 15px; }
.poolform input:focus { outline: none; border-color: var(--primary); }
.poolform .btn { height: 42px; }
.poolform__err { width: 100%; color: var(--danger-fg); font-size: 12.5px; font-weight: 600; margin: 0; }
.poolcode { display: inline-flex; align-items: center; gap: 7px; cursor: pointer; font-family: var(--font-display);
  font-weight: 800; letter-spacing: .06em; background: var(--surface-3); color: var(--text); border: 0;
  border-radius: var(--radius-pill); padding: 5px 11px; font-size: 13px; }
.poolcode:hover { background: var(--surface-2); box-shadow: inset 0 0 0 1px var(--border-strong); }
.poolcode small { color: var(--text-subtle); font-weight: 700; letter-spacing: .12em; font-size: 9px; text-transform: uppercase; }
.poolcode svg { width: 13px; height: 13px; color: var(--text-subtle); }

/* progress chip in group head */
.prog { font-family: var(--font-display); font-weight: 800; font-variant-numeric: tabular-nums; }

/* ============================================================
   PREDICTOR v2 — standings hero + rich match cards
   ============================================================ */
#groups.groups-grid { grid-template-columns: repeat(auto-fill, minmax(470px, 1fr)); }
@media (max-width: 540px) { #groups.groups-grid { grid-template-columns: 1fr; } }

.group--predict .group__head { align-items: flex-start; }
.group__q { display: block; font-size: 11px; color: var(--text-subtle); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; margin-top: 3px; }
.group--locked { opacity: .92; }
.group--locked .group__head { border-bottom-color: color-mix(in oklab, var(--text-subtle) 30%, var(--border)); }
.badge--final svg { width: 12px; height: 12px; }

/* --- standings hero --- */
.pstand { padding: 4px 0; }
.pstand__row { display: grid; grid-template-columns: 30px 1fr auto auto auto; align-items: center; gap: 12px;
  padding: 12px 16px; border-top: 1px solid var(--border); transition: background var(--dur-fast); }
.pstand__row:first-child { border-top: 0; }
.pstand__pos { display: inline-grid; place-items: center; width: 25px; height: 25px; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--text-muted); background: var(--surface-3); }
.pstand__row--q { background: var(--primary-soft); box-shadow: inset 3px 0 0 var(--primary); }
.pstand__row--q .pstand__pos { background: var(--primary); color: var(--on-primary); }
/* 3rd place: in the best-8-thirds race (8 of 12 advance) */
.pstand__row--third { background: var(--warning-bg); box-shadow: inset 3px 0 0 var(--yellow-card); }
.pstand__row--third .pstand__pos { background: var(--yellow-card); color: var(--yellow-card-ink); }
.pstand__third { display: inline-grid; place-items: center; height: 21px; padding: 0 8px; border-radius: var(--radius-pill);
  background: var(--yellow-card); color: var(--yellow-card-ink); font-family: var(--font-display); font-weight: 800;
  text-transform: uppercase; letter-spacing: .04em; font-size: 9px; white-space: nowrap; }
.pstand__team { display: flex; align-items: center; gap: 11px; min-width: 0;
  font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: .01em; }
.pstand__team img { width: 30px; height: 20px; object-fit: cover; border-radius: 3px; box-shadow: var(--shadow-xs), inset 0 0 0 1px var(--border-hair); flex: none; background: var(--surface-3); }
.pstand__team .nm { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pstand__q { display: inline-grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; background: var(--primary); color: var(--on-primary); box-shadow: var(--glow-pitch); }
.pstand__q svg { width: 13px; height: 13px; }
.pstand__pts { font-family: var(--font-display); font-weight: 900; font-size: 19px; font-variant-numeric: tabular-nums; min-width: 38px; text-align: right; }
.pstand__pts small { font-size: 10px; font-weight: 700; color: var(--text-subtle); margin-left: 2px; }
.pstand__moves { display: inline-flex; gap: 3px; }
.pstand__moves button { width: 25px; height: 25px; border-radius: var(--radius-xs); border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text-muted); cursor: pointer; font-size: 11px; line-height: 1; transition: color var(--dur-fast), border-color var(--dur-fast); }
.pstand__moves button:hover:not([disabled]) { color: var(--primary); border-color: var(--primary); }
.pstand__moves button[disabled] { opacity: .3; cursor: default; }
.pstand__cut { display: flex; align-items: center; gap: 9px; padding: 5px 16px; }
.pstand__cut span { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 9.5px; color: var(--primary); white-space: nowrap; }
.pstand__cut::before, .pstand__cut::after { content: ""; flex: 1; height: 2px; opacity: .55;
  background: repeating-linear-gradient(90deg, var(--primary) 0 5px, transparent 5px 9px); }
.pstand__foot { display: flex; justify-content: flex-end; padding: 4px 14px 12px; }

/* --- compact prediction rows — "split tap-bar" (design: Compact Prediction Options, Direction A) ---
   Each game is one ~54px row: a date rail, a tap-bar pill (back a team's half, draw notch
   in the middle), and a verdict disc. Your call shows BLUE; once final the actual winner
   tints green when you nailed it, and on a miss the CORRECT result is shown in RED while your
   wrong pick stays blue. Markup keeps .ppick + data-r="H|D|A" so pick() works unchanged. */
.pgames { padding: 0; background: var(--surface-2); border-top: 1px solid var(--border); }
.pgames .cap { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  font-size: 10px; color: var(--text-subtle); padding: 11px 14px 9px; }

/* one game = one divided row */
.pmatch { border-top: 1px solid var(--border); transition: background var(--dur-fast); }
.pmatch:hover { background: color-mix(in oklab, var(--primary) 4%, transparent); }

.pa { display: grid; grid-template-columns: 42px 1fr 26px; align-items: center; gap: 9px; padding: 7px 12px; }
.pa__date { display: flex; flex-direction: column; align-items: center; gap: 1px; text-align: center; line-height: 1.2;
  font-family: var(--font-display); font-weight: 700; font-size: 9px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--text-subtle); }
.pa__date svg { width: 12px; height: 12px; }
.pa__date .dm { white-space: nowrap; }

.pa__bar { display: grid; grid-template-columns: 1fr 44px 1fr; height: 40px; background: var(--surface);
  border: 1.5px solid var(--border); border-radius: var(--radius-pill); overflow: clip; }

/* a team half (tap to back them) */
.pa__side { display: flex; align-items: center; gap: 8px; padding: 0 13px; cursor: pointer; border: 0; min-width: 0;
  background: transparent; font: inherit; color: var(--text);
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base); }
.pa__side--h { justify-content: flex-start; }
.pa__side--a { justify-content: flex-end; }
.pa__side .flagimg { width: 24px; height: 16px; object-fit: cover; border-radius: 2.5px;
  box-shadow: inset 0 0 0 1px var(--border-hair); flex: none; display: block; }
.pa__side .code { font-family: var(--font-display); font-weight: 900; font-size: 15px; letter-spacing: .01em; }
.pa__side:hover:not(:disabled) { background: color-mix(in oklab, var(--primary) 9%, transparent); }

/* the draw notch */
.pa__draw { display: grid; place-items: center; cursor: pointer; border: 0; background: transparent;
  border-left: 1px dashed var(--border); border-right: 1px dashed var(--border);
  font-family: var(--font-display); font-weight: 800; font-size: 8px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-subtle); transition: background var(--dur-base), color var(--dur-base); }
.pa__draw:hover:not(:disabled) { background: var(--surface-3); color: var(--text); }

/* OPEN — your call floods BLUE */
.pa__bar:not(.is-final) .pa__side.on,
.pa__bar:not(.is-final) .pa__draw.on {
  background: linear-gradient(170deg, var(--info-blue), #1b5fd0); color: #fff; border-color: transparent; }

/* GRADED */
.pa__bar.is-final .pa__side, .pa__bar.is-final .pa__draw { cursor: default; }
/* the actual winner, unpicked — calm green "this is what happened" */
.pa__bar.is-final .win { background: var(--primary-soft); color: var(--primary-soft-ink); }
/* you nailed it — solid green */
.pa__bar.is-final .youwin { background: linear-gradient(170deg, var(--primary), var(--primary-press));
  color: var(--on-primary); box-shadow: var(--glow-pitch); }
.pa__bar.is-final .youwin .code { color: var(--on-primary); }
/* a wrong call — your pick stays BLUE... */
.pa__bar.is-final .yourmiss { background: linear-gradient(170deg, var(--info-blue), #1b5fd0); color: #fff; }
.pa__bar.is-final .yourmiss .code { color: #fff; }
/* ...and the CORRECT result is shown in RED */
.pa__bar.is-final.is-wrong .win { background: linear-gradient(170deg, var(--result-loss), #a31616);
  color: #fff; box-shadow: none; }
.pa__bar.is-final.is-wrong .win .code { color: #fff; }

/* verdict disc */
.pa__v { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%;
  background: var(--surface-3); color: var(--text-subtle); }
.pa__v svg { width: 15px; height: 15px; }
.pa__v.right { background: var(--result-win); color: #fff; }
.pa__v.wrong { background: var(--result-loss); color: #fff; }

/* locked (group kicked off, picks frozen) — keep graded colour, gently mute the rest */
.pmatch--locked .pa__bar:not(.is-final) .ppick { opacity: .7; }
.pmatch--locked .pa__side, .pmatch--locked .pa__draw { cursor: default; }

@media (max-width: 380px) {
  .pa { grid-template-columns: 36px 1fr 24px; gap: 7px; padding: 7px 9px; }
  .pa__side { padding: 0 10px; gap: 6px; }
  .pa__side .code { font-size: 13px; }
  .pa__bar { grid-template-columns: 1fr 38px 1fr; }
}

/* --- best 3rd-place picker --- */
.thirds { padding: 6px 18px 18px; }
.thirds__hint { font-size: 13px; color: var(--text-muted); margin: 4px 0 14px; line-height: 1.5; }
.thirds__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 10px; }
.third-row { display: flex; align-items: center; gap: 10px; width: 100%; text-align: left; cursor: pointer;
  padding: 9px 11px; border: 1.5px solid var(--border); border-radius: var(--radius-md); background: var(--surface-2);
  transition: border-color var(--dur-fast), background var(--dur-fast); font: inherit; color: var(--text); }
.third-row:hover { border-color: var(--border-strong); }
.third-row--on { background: var(--primary-soft); border-color: color-mix(in oklab, var(--primary) 45%, transparent); }
.third-row__g { display: inline-grid; place-items: center; width: 25px; height: 25px; border-radius: var(--radius-sm);
  background: var(--surface-3); font-family: var(--font-display); font-weight: 800; font-size: 13px; color: var(--text-muted); flex: none; }
.third-row--on .third-row__g { background: var(--primary); color: var(--on-primary); }
.third-row__team { display: flex; align-items: center; gap: 8px; min-width: 0; flex: 1;
  font-family: var(--font-display); font-weight: 700; font-size: 14.5px; }
.third-row__team img { width: 25px; height: 17px; object-fit: cover; border-radius: 2px; box-shadow: inset 0 0 0 1px var(--border-hair); flex: none; background: var(--surface-3); }
.third-row__team .nm { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.third-toggle { flex: none; border: 1.5px solid var(--border-strong); background: transparent; color: var(--text-subtle);
  border-radius: var(--radius-pill); padding: 4px 11px; font-family: var(--font-display); font-weight: 800;
  text-transform: uppercase; letter-spacing: .05em; font-size: 10px; }
.third-row--on .third-toggle { background: var(--primary); color: var(--on-primary); border-color: var(--primary); }

/* locked state — shown until every group game is called */
.thirds-lock { display: grid; justify-items: center; gap: 12px; text-align: center; padding: 28px 20px 32px; }
.thirds-lock .lock__badge { width: 56px; height: 56px; }
.thirds-lock .lock__badge svg { width: 25px; height: 25px; }
.thirds-lock__title { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; letter-spacing: -.01em; font-size: 24px; }
.thirds-lock__msg { font-size: 14px; color: var(--text-muted); max-width: 48ch; line-height: 1.5; margin: 0; }
.thirds-prog { display: grid; gap: 8px; width: min(440px, 100%); margin-top: 6px; }
.thirds-prog__bar { height: 10px; border-radius: var(--radius-pill); background: var(--surface-3); overflow: hidden; }
.thirds-prog__bar > i { display: block; height: 100%; background: var(--primary); border-radius: var(--radius-pill); transition: width var(--dur-base) var(--ease-out); }
.thirds-prog span { font-family: var(--font-display); font-weight: 700; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }

/* leaderboard row → click to view a pool member's predictions */
.lead__row--link { cursor: pointer; transition: background var(--dur-fast); }
.lead__row--link:hover { background: var(--surface-2); }
.lead__row--link:focus-visible { outline: 2px solid var(--primary); outline-offset: -2px; }

/* member-predictions modal */
.mmodal { position: fixed; inset: 0; z-index: var(--z-modal); display: grid; place-items: center; padding: 20px; }
.mmodal__scrim { position: absolute; inset: 0; background: var(--scrim); backdrop-filter: blur(3px); animation: mmFade var(--dur-fast) var(--ease-out); }
.mmodal__panel { position: relative; z-index: 1; width: min(960px, 100%); max-height: calc(100vh - 40px); display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); overflow: hidden;
  animation: mmIn var(--dur-base) var(--ease-spring); }
@keyframes mmFade { from { opacity: 0; } }
@keyframes mmIn { from { opacity: 0; transform: translateY(14px) scale(.98); } }
.mmodal__head { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg) 60%, transparent); position: sticky; top: 0; }
.mmodal__who { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.mmodal__name { font-family: var(--font-display); font-weight: 900; font-size: 19px; line-height: 1.1; }
.mmodal__sub { font-size: 12px; color: var(--text-subtle); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.mmodal__body { padding: 18px; overflow-y: auto; }
.mmodal__empty { display: grid; justify-items: center; gap: 12px; text-align: center; padding: 40px 20px; }
.mmodal__empty .lock__badge { width: 56px; height: 56px; }
.mmodal__empty .lock__badge svg { width: 25px; height: 25px; }

/* backed-thirds summary chips */
.mthirds { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px 14px; margin-bottom: 18px; background: var(--surface-2); }
.mthirds__head { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .07em; font-size: 10.5px; color: var(--text-subtle); margin-bottom: 10px; }
.mthirds__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.mthirds__chip { display: inline-flex; align-items: center; gap: 7px; padding: 5px 11px 5px 7px; border-radius: var(--radius-pill);
  background: var(--primary-soft); border: 1px solid color-mix(in oklab, var(--primary) 35%, transparent);
  font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.mthirds__chip img { width: 22px; height: 15px; object-fit: cover; border-radius: 2px; box-shadow: inset 0 0 0 1px var(--border-hair); }

/* read-only group cards inside the modal */
.mgroups { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 720px) { .mgroups { grid-template-columns: 1fr 1fr; } }
.mgroup { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 6px 14px 14px; background: var(--surface); }
.mgroup__head { padding: 10px 2px 4px; }
.mgroup__games { display: grid; gap: 8px; margin-top: 10px; }
.mgroup__games .cap { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 10px; color: var(--text-subtle); }
.mgroup .ppick { cursor: default; }
