/* /Components/StatCell.razor.rz.scp.css */
.stat-cell[b-euk4bmco1r] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
    padding: 4px 2px;
    border-radius: 6px;
    background: #1e2a3a;
    border: 1px solid #2e4060;
    cursor: pointer;
    user-select: none;
    touch-action: none;
    gap: 1px;
    transition: background 0.1s;
}

.stat-cell:not(.stat-readonly):active[b-euk4bmco1r] {
    background: #2e4a6e;
}

.stat-readonly[b-euk4bmco1r] {
    cursor: default;
    opacity: 0.7;
    border-style: dashed;
}

.stat-label[b-euk4bmco1r] {
    font-size: 0.6rem;
    color: #8aafd4;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.stat-val[b-euk4bmco1r] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e8f0ff;
    line-height: 1;
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* ── Shell ── */
.app-shell[b-pj6oycxk69] {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: var(--sa-bg);
    color: var(--sa-text);
    font-family: var(--sa-font);
    outline: none;
}

/* ── Topbar ── */
.app-topbar[b-pj6oycxk69] {
    display: grid;
    grid-template-columns: 1fr minmax(0, 720px) 1fr;
    align-items: center;
    height: 48px;
    background: #0a0a0a;
    border-bottom: 1px solid #1f1f1f;
    position: sticky;
    top: 0;
    z-index: 50;
}

.topbar-left[b-pj6oycxk69] {
    display: flex;
    align-items: center;
    height: 100%;
    min-width: 0;
    justify-self: start;
}

.topbar-center[b-pj6oycxk69] {
    display: flex;
    align-items: center;
    justify-self: stretch;
    min-width: 0;
    padding: 0 1rem;
}

.topbar-right[b-pj6oycxk69] {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    height: 100%;
    min-width: 0;
    justify-self: end;
    padding-right: 0.5rem;
}

.topbar-btn[b-pj6oycxk69] {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: transparent;
    border: none;
    color: #d8d8d8;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.12s ease, color 0.12s ease;
    padding: 0;
}

.topbar-btn:hover[b-pj6oycxk69] { background: #1a1a1a; color: #fff; }
.topbar-btn.is-open[b-pj6oycxk69] { background: #1f1f1f; color: #fff; }

/* SVG-sizing voor topbar-buttons en chevrons staat in wwwroot/css/app.css —
   scoped CSS kan op SVGs niet betrouwbaar het [b-xxxxxx]-attribuut leveren
   waardoor de iconen soms tot viewport-grootte uitbreiden. */

/* ── Brand ── */
.topbar-brand[b-pj6oycxk69] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f3f3f3;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0 0.5rem;
    height: 100%;
    flex-shrink: 0;
}

.topbar-brand:hover[b-pj6oycxk69] { color: #fff; }

/* .brand-logo styles staan in wwwroot/css/app.css zodat ze ook gelden voor
   SVG-children die via render-quirks geen scoped attribuut krijgen — anders
   blaast de SVG soms uit naar viewport-grootte (zelfde issue als .club-logo). */

/* ── Search ── */
.topbar-search[b-pj6oycxk69] {
    width: 100%;
    height: 32px;
    background: #1c1c1c;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 0.5rem 0 0.6rem;
    gap: 0.45rem;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.topbar-search:focus-within[b-pj6oycxk69] {
    background: #1f1f1f;
    border-color: #4a4a4a;
}

.search-icon[b-pj6oycxk69] {
    width: 14px;
    height: 14px;
    color: #9a9a9a;
    flex-shrink: 0;
}

.search-input[b-pj6oycxk69] {
    flex: 1;
    background: none;
    border: none;
    color: #ececec;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    min-width: 0;
}

.search-input[b-pj6oycxk69]::placeholder { color: #888; }

.search-kbd[b-pj6oycxk69] {
    flex-shrink: 0;
    border: 1px solid #3a3a3a;
    background: #161616;
    color: #999;
    font-size: 0.7rem;
    line-height: 1;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: inherit;
}

@media (max-width: 720px) {
    .search-kbd[b-pj6oycxk69] { display: none; }
    .topbar-center[b-pj6oycxk69] { padding: 0 0.5rem; }
    .topbar-brand .brand-name[b-pj6oycxk69] { display: none; }
}

.user-pill[b-pj6oycxk69] {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    height: 36px;
    padding: 0 0.6rem 0 0.4rem;
    margin-left: 0.25rem;
    background: transparent;
    border: none;
    color: #ececec;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.12s ease;
}

.user-pill:hover[b-pj6oycxk69] { background: #1a1a1a; }
.user-pill.is-open[b-pj6oycxk69] { background: #1f1f1f; }

/* ── Club pill (actieve club, altijd zichtbaar in topbar) ── */
.club-pill[b-pj6oycxk69] {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    height: 32px;
    padding: 0 0.55rem 0 0.4rem;
    margin-left: 0.5rem;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #ececec;
    cursor: pointer;
    border-radius: 4px;
    font-family: inherit;
    transition: background 0.12s ease, border-color 0.12s ease;
}

.club-pill:hover:not(:disabled):not(.is-static)[b-pj6oycxk69] { background: #1f1f1f; border-color: #3a3a3a; }
.club-pill.is-open[b-pj6oycxk69] { background: #1f1f1f; border-color: #3a3a3a; }
.club-pill.is-static[b-pj6oycxk69] { cursor: default; opacity: 0.95; }
.club-pill:disabled[b-pj6oycxk69] { cursor: default; }

/* .club-logo styles staan in wwwroot/css/app.css (globaal) — Blazor scoped CSS
   matcht niet altijd op img-elementen die via RenderTreeBuilder gebouwd zijn. */

.club-pill-meta[b-pj6oycxk69] {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: 0;
}
.club-pill-label[b-pj6oycxk69] {
    font-size: 0.65rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.club-pill-name[b-pj6oycxk69] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f3f3f3;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.club-pill .chevron[b-pj6oycxk69] {
    width: 14px;
    height: 14px;
    color: #888;
    flex-shrink: 0;
}

/* ── Club switcher dropdown ── */
.club-panel[b-pj6oycxk69] {
    left: 0.5rem;
    right: auto;
    width: 280px;
}

.dropdown-item.is-active[b-pj6oycxk69] {
    background: #1c1c1c;
    border-color: var(--sa-accent-soft);
}

@media (max-width: 720px) {
    .club-pill-label[b-pj6oycxk69] { display: none; }
    .club-pill-name[b-pj6oycxk69] { max-width: 120px; }
}

.user-avatar[b-pj6oycxk69] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sa-accent-soft);
    color: var(--sa-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-avatar svg[b-pj6oycxk69] { width: 16px; height: 16px; display: block; }
.user-avatar.lg[b-pj6oycxk69] { width: 40px; height: 40px; }
.user-avatar.lg svg[b-pj6oycxk69] { width: 22px; height: 22px; }

.user-meta[b-pj6oycxk69] {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-align: left;
}

.user-name[b-pj6oycxk69] { font-size: 0.82rem; font-weight: 600; color: #f3f3f3; }
.user-tenant[b-pj6oycxk69] { font-size: 0.7rem; color: #909090; }

/* .chevron staat in wwwroot/css/app.css (zelfde reden als .brand-logo) */

@media (max-width: 540px) {
    .user-meta[b-pj6oycxk69] { display: none; }
}

/* ── Backdrop ── */
.panel-backdrop[b-pj6oycxk69] {
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.35);
    z-index: 40;
    backdrop-filter: blur(1px);
    animation: fade-in-b-pj6oycxk69 0.12s ease;
}

@keyframes fade-in-b-pj6oycxk69 { from { opacity: 0; } to { opacity: 1; } }
@keyframes slide-down-b-pj6oycxk69 { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* ── Mega menu ── */
.mega-panel[b-pj6oycxk69] {
    position: fixed;
    top: 48px;
    left: 0;
    width: min(820px, 100vw);
    max-height: calc(100dvh - 48px);
    background: #161616;
    border: 1px solid #2a2a2a;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 18px 38px rgba(0,0,0,0.55);
    display: flex;
    z-index: 60;
    animation: slide-down-b-pj6oycxk69 0.15s ease;
    overflow: hidden;
}

.mega-rail[b-pj6oycxk69] {
    width: 200px;
    flex-shrink: 0;
    background: #121212;
    border-right: 1px solid #232323;
    padding: 0.7rem 0.45rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-cat[b-pj6oycxk69] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    color: #b8b8b8;
    cursor: pointer;
    padding: 0.55rem 0.7rem;
    border-radius: 5px;
    text-align: left;
    font-size: 0.86rem;
    font-weight: 500;
    transition: background 0.12s ease, color 0.12s ease;
}

.mega-cat svg[b-pj6oycxk69] { width: 14px; height: 14px; opacity: 0.5; }
.mega-cat:hover[b-pj6oycxk69] { background: #1d1d1d; color: #fff; }
.mega-cat.is-active[b-pj6oycxk69] { background: var(--sa-accent-soft); color: var(--sa-accent); }
.mega-cat.is-active svg[b-pj6oycxk69] { opacity: 0.9; }

.mega-tiles[b-pj6oycxk69] {
    flex: 1;
    padding: 1.1rem 1.25rem 1.25rem;
    overflow-y: auto;
}

.mega-tiles-head[b-pj6oycxk69] { margin-bottom: 0.85rem; }
.mega-tiles-head h3[b-pj6oycxk69] {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #f5f5f5;
    letter-spacing: -0.01em;
}
.mega-tiles-head p[b-pj6oycxk69] {
    margin: 0.15rem 0 0;
    font-size: 0.82rem;
    color: #888;
}

.mega-grid[b-pj6oycxk69] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
    gap: 0.6rem;
}

.mega-tile[b-pj6oycxk69] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1rem 0.85rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    text-decoration: none;
    color: #ececec;
    min-height: 110px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.mega-tile:hover[b-pj6oycxk69] {
    border-color: #3a3a3a;
    background: #1c1c1c;
}

.mega-tile:active[b-pj6oycxk69] { transform: scale(0.98); }

.tile-icon[b-pj6oycxk69] {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--sa-accent-soft);
    color: var(--sa-accent);
    flex-shrink: 0;
}

.tile-icon svg[b-pj6oycxk69] { width: 22px; height: 22px; display: block; }

.tile-label[b-pj6oycxk69] {
    font-size: 0.86rem;
    font-weight: 500;
    color: #ececec;
    line-height: 1.25;
    text-align: center;
}

@media (max-width: 640px) {
    .mega-panel[b-pj6oycxk69] { width: 100vw; flex-direction: column; max-height: calc(100dvh - 48px); }
    .mega-rail[b-pj6oycxk69] { width: 100%; flex-direction: row; overflow-x: auto; padding: 0.5rem; gap: 4px; border-right: none; border-bottom: 1px solid #232323; }
    .mega-cat[b-pj6oycxk69] { flex-shrink: 0; padding: 0.45rem 0.7rem; }
    .mega-cat svg[b-pj6oycxk69] { display: none; }
}

/* ── Generic dropdown panel (gear, user) ── */
.dropdown-panel[b-pj6oycxk69] {
    position: fixed;
    top: 48px;
    right: 0.5rem;
    width: 320px;
    max-width: calc(100vw - 1rem);
    background: #161616;
    border: 1px solid #2a2a2a;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 18px 38px rgba(0,0,0,0.55);
    z-index: 60;
    overflow: hidden;
    animation: slide-down-b-pj6oycxk69 0.15s ease;
}

.dropdown-head[b-pj6oycxk69] {
    padding: 0.85rem 1rem 0.6rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    border-bottom: 1px solid #232323;
}

.dropdown-list[b-pj6oycxk69] {
    list-style: none;
    margin: 0;
    padding: 0.4rem;
}

.dropdown-foot[b-pj6oycxk69] {
    border-top: 1px solid #1f1f1f;
    padding: 0.55rem 0.85rem;
}

.dropdown-link[b-pj6oycxk69] {
    color: var(--sa-accent);
    text-decoration: none;
    font-size: 0.82rem;
}
.dropdown-link:hover[b-pj6oycxk69] { text-decoration: underline; }

.dropdown-item[b-pj6oycxk69] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.55rem 0.6rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #ececec;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
    font-size: 0.875rem;
    font-family: inherit;
    transition: background 0.12s, border-color 0.12s;
}

.dropdown-item:hover[b-pj6oycxk69] {
    background: #1c1c1c;
    border-color: #2e2e2e;
}

.dropdown-icon[b-pj6oycxk69] {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: var(--sa-accent-soft);
    color: var(--sa-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-icon svg[b-pj6oycxk69] { width: 16px; height: 16px; display: block; }

.dropdown-label[b-pj6oycxk69] {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    flex: 1;
    min-width: 0;
}

.dropdown-title[b-pj6oycxk69] {
    font-weight: 500;
    color: #ececec;
}

.dropdown-sub[b-pj6oycxk69] {
    font-size: 0.75rem;
    color: #888;
    margin-top: 1px;
}

/* User panel head */
.user-head[b-pj6oycxk69] {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #232323;
}

.user-head-meta[b-pj6oycxk69] { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.user-head-meta strong[b-pj6oycxk69] { color: #f3f3f3; font-size: 0.92rem; }
.user-head-meta span[b-pj6oycxk69] { color: #909090; font-size: 0.78rem; }

/* ── Main content area ── */
.app-main[b-pj6oycxk69] {
    flex: 1;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 1.75rem;
    min-width: 0;
    min-height: 0;
}

@media (max-width: 720px) {
    .app-main[b-pj6oycxk69] { padding: 1rem 0.85rem; }
}
/* /Pages/Coach.razor.rz.scp.css */
.coach-root[b-r13da2tq4s] {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    background: #111;
    color: #eee;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

/* ── Top bar ── */
.coach-topbar[b-r13da2tq4s] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: #1c1c1c;
    border-bottom: 1px solid #333;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.live-badge[b-r13da2tq4s] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.live-on[b-r13da2tq4s]       { background: #c62828; color: #fff; animation: pulse-b-r13da2tq4s 1.5s infinite; }
.live-off[b-r13da2tq4s]      { background: #444;    color: #aaa; }
.live-finished[b-r13da2tq4s] { background: #37474f; color: #cfd8dc; }

@keyframes pulse-b-r13da2tq4s {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

.match-block[b-r13da2tq4s] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}
.match-name[b-r13da2tq4s] { font-size: 0.9rem; font-weight: 600; text-align: center; color: #c9d4e0; }
.score[b-r13da2tq4s] {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: 1.7rem;
    font-weight: 800;
    color: #ffb300;
    line-height: 1;
}
.score-num[b-r13da2tq4s] { min-width: 1.4em; text-align: center; font-variant-numeric: tabular-nums; }
.score-sep[b-r13da2tq4s] { color: #6e5a18; font-weight: 600; }
.score-logo[b-r13da2tq4s] {
    width: 38px;
    height: 38px;
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
    padding: 2px;
    display: block;
    flex-shrink: 0;
}
.quarter[b-r13da2tq4s]    { font-size: 0.85rem; color: #aaa; white-space: nowrap; }

/* ── Totals bar ── */
.totals-bar[b-r13da2tq4s] {
    display: flex;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    background: #1c1c1c;
    border-bottom: 1px solid #333;
    flex-shrink: 0;
    overflow-x: auto;
}

.total-card[b-r13da2tq4s] {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #252525;
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
    min-width: 4.5rem;
    flex-shrink: 0;
}

.total-label[b-r13da2tq4s] { font-size: 0.65rem; color: #888; text-transform: uppercase; }
.total-value[b-r13da2tq4s] { font-size: 1.1rem; font-weight: 700; color: #fff; }

/* ════════════════════════════════════════════════════════════════════
   Coach overview-tabel — alle spelers in 1 oogopslag
   ════════════════════════════════════════════════════════════════════ */

/* Twee-kolom layout: tabel links groeit mee, charts rechts hebben een vaste
   breedte (340px) zodat alle cards mooi opgelijnd staan met de shotmap erbinnen.
   Op smaller dan 1100px stapelt naar één kolom. */
.coach-grid[b-r13da2tq4s] {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 1rem;
    padding: .5rem 1rem 1rem;
    align-items: start;
}
@media (max-width: 1100px) {
    .coach-grid[b-r13da2tq4s] { grid-template-columns: 1fr; }
}

.coach-table-wrap[b-r13da2tq4s] {
    overflow-x: auto;
}

.coach-table[b-r13da2tq4s] {
    width: 100%;
    border-collapse: collapse;
    font-size: .95rem;
    color: #e6edf3;
    font-variant-numeric: tabular-nums;
}

.coach-table th[b-r13da2tq4s] {
    text-align: center;
    font-weight: 700;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #8aafd4;
    padding: .55rem .4rem;
    border-bottom: 1px solid #1f2733;
    background: #0d141d;
    position: sticky;
    top: 0;
    z-index: 1;
}

.coach-table th.col-name[b-r13da2tq4s] { text-align: left; padding-left: .8rem; }
.coach-table th.col-num[b-r13da2tq4s],
.coach-table th.col-fouls[b-r13da2tq4s] { width: 1%; white-space: nowrap; }

.coach-table td[b-r13da2tq4s] {
    padding: .65rem .4rem;
    text-align: center;
    border-bottom: 1px solid #161e28;
}

.coach-table td.col-num[b-r13da2tq4s] { width: 1%; }
.coach-table td.col-name[b-r13da2tq4s] {
    text-align: left;
    padding-left: .8rem;
    font-weight: 600;
}

.row-jersey[b-r13da2tq4s] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1c2632;
    color: #58a6ff;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1;
}

/* Section-rij (Veldspelers / Bank) */
.section-row td[b-r13da2tq4s] {
    background: #0a1018;
    color: #6b829c;
    font-weight: 700;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .65rem .8rem;
    text-align: left;
    border-bottom: 1px solid #1f2733;
}

/* Veldspelers iets opvallender dan bank */
.row-active[b-r13da2tq4s] { background: #0f1620; }
.row-bench[b-r13da2tq4s]  { background: transparent; }
.row-bench:not(.row-no-stats) td[b-r13da2tq4s] { color: #c9d4e0; }
.row-no-stats td[b-r13da2tq4s] { color: #5c6773; }

/* EFF kolom-accent */
.col-eff[b-r13da2tq4s] { font-weight: 700; }
.eff-good[b-r13da2tq4s] { color: #a5d6a7; }
.eff-bad[b-r13da2tq4s]  { color: #ef9a9a; }

/* Foul-warning kleurcodering — coach moet vanaf de zijlijn binnen 1 seconde
   zien wie in de gevarenzone zit. Felle tinten + linker-accent voor extra cue. */
.row-foul-soft[b-r13da2tq4s]  { background: rgba(255, 213, 0,  .18); box-shadow: inset 4px 0 0 #ffd500; }
.row-foul-warn[b-r13da2tq4s]  { background: rgba(255, 152, 0,  .30); box-shadow: inset 4px 0 0 #ff9800; }
.row-foul-out[b-r13da2tq4s]   { background: rgba(244, 67,  54, .42); box-shadow: inset 4px 0 0 #ef5350; }
.row-foul-out td[b-r13da2tq4s] { color: #fff; font-weight: 700; }

/* Foul-pips — compacte visualisatie */
.foul-pips[b-r13da2tq4s] { display: inline-flex; gap: 3px; align-items: center; }
.pip[b-r13da2tq4s] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2a3540;
    border: 1px solid #3a4754;
}
.pip-filled[b-r13da2tq4s] { background: #ff6b6b; border-color: #ff6b6b; }

/* ── Section label ── */
.section-label[b-r13da2tq4s] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    padding: 0.35rem 1rem 0.2rem;
    flex-shrink: 0;
}

/* ── Cards scroll (shared) ── */
.cards-scroll[b-r13da2tq4s] {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    flex: 1;
    min-height: 0;
}

.cards-scroll[b-r13da2tq4s]::-webkit-scrollbar { display: none; }
.cards-scroll[b-r13da2tq4s] { scrollbar-width: none; }

/* On wide screens show all cards without snap */
@media (min-width: 1100px) {
    .cards-scroll[b-r13da2tq4s] {
        scroll-snap-type: none;
        flex-wrap: nowrap;
    }
}

/* ── Individual player card ── */
.player-card[b-r13da2tq4s] {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: calc(100vw - 1.5rem);
    max-width: 340px;
    background: #1e1e1e;
    border-radius: 10px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media (min-width: 1100px) {
    .player-card[b-r13da2tq4s] { width: 260px; }
}

/* ── Card header ── */
.card-header[b-r13da2tq4s] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: #252525;
    border-bottom: 1px solid #333;
}

.jersey[b-r13da2tq4s]      { font-size: 0.85rem; font-weight: 700; color: #ffb300; min-width: 2.2rem; }
.player-name[b-r13da2tq4s] { font-size: 0.9rem; font-weight: 600; flex: 1; }

/* ── Shot map ── */
.shot-map-wrap[b-r13da2tq4s] {
    padding: 0.4rem 0.75rem 0;
}

.shot-map[b-r13da2tq4s] {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    border: 1px solid #2e4a2e;
}

/* ── Stats grid ── */
.stats-grid[b-r13da2tq4s] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.3rem;
    padding: 0.4rem 0.75rem;
}

/* ── Foul row ── */
.foul-row[b-r13da2tq4s] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem 0.5rem;
}

.foul-dot[b-r13da2tq4s] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #e53935;
    background: transparent;
    transition: background 0.2s;
}

.foul-filled[b-r13da2tq4s] { background: #e53935; }

.foul-label[b-r13da2tq4s] { font-size: 0.7rem; color: #888; margin-left: 0.25rem; }

/* ── Scroll dots ── */
.scroll-dots[b-r13da2tq4s] {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 0.3rem 0 0.25rem;
    flex-shrink: 0;
}

@media (min-width: 1100px) {
    .scroll-dots[b-r13da2tq4s] { display: none; }
}

.dot[b-r13da2tq4s] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #444;
    transition: background 0.2s;
}

.dot-active[b-r13da2tq4s] { background: #ffb300; }

/* ── Bench section ── */
.bench-scroll[b-r13da2tq4s] {
    flex: 0 0 auto;
    max-height: 220px;
}

.bench-card[b-r13da2tq4s] { opacity: 0.6; }
.bench-card:has(.bench-badge)[b-r13da2tq4s] { opacity: 0.45; }

.bench-badge[b-r13da2tq4s] {
    font-size: 0.65rem;
    color: #888;
    background: #2a2a2a;
    border-radius: 4px;
    padding: 0.15rem 0.4rem;
    margin-left: auto;
}

/* ════════════════════════════════════════════════════════════════════
   Charts-kolom — live wedstrijd-aggregaten
   ════════════════════════════════════════════════════════════════════ */
.coach-charts[b-r13da2tq4s] {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    min-width: 0;
}

.chart-card[b-r13da2tq4s] {
    background: #0d141d;
    border: 1px solid #1d2733;
    border-radius: 10px;
    padding: .85rem 1rem 1rem;
}

.chart-card-title[b-r13da2tq4s] {
    margin: 0 0 .55rem;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #8aafd4;
}

/* Shotmap vult de card-breedte (= rechter-kolom-breedte minus card-padding).
   Card is 340px, padding 1rem aan beide kanten → svg-content ~ 300px breed.
   Alle andere chart-cards hebben dezelfde card-breedte, dus alles lijnt op. */
[b-r13da2tq4s] .court-svg.chart-shotmap {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}
.chart-card-foot[b-r13da2tq4s] {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-top: .5rem;
    font-size: .75rem;
    color: #8aafd4;
}
.legend[b-r13da2tq4s] { display: inline-flex; align-items: center; gap: .35rem; }
.legend-pip[b-r13da2tq4s] { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.legend-make[b-r13da2tq4s] { background: #4caf50; }
.legend-miss[b-r13da2tq4s] { background: #f44336; }
.legend-hot[b-r13da2tq4s]  { background: #4caf50; }
.legend-mid[b-r13da2tq4s]  { background: #ff9800; }
.legend-cold[b-r13da2tq4s] { background: #ef5350; }
.legend-count[b-r13da2tq4s] { margin-left: auto; color: #6b829c; }

/* Quarter-cards: vier compacte blokken met punten + EFF + FG% + trend-marker */
.quarter-cards[b-r13da2tq4s] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .5rem;
}
.quarter-card[b-r13da2tq4s] {
    background: #131c28;
    border: 1px solid #1f2a38;
    border-radius: 8px;
    padding: .5rem .55rem .55rem;
    text-align: center;
    font-variant-numeric: tabular-nums;
    transition: opacity .15s, border-color .15s;
}
.quarter-card.is-empty[b-r13da2tq4s] { opacity: .45; }

.qc-head[b-r13da2tq4s] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .3rem;
    margin-bottom: .15rem;
}
.qc-label[b-r13da2tq4s] {
    font-size: .72rem;
    font-weight: 800;
    color: #8aafd4;
    letter-spacing: .05em;
}
.qc-trend[b-r13da2tq4s] {
    font-size: .9rem;
    font-weight: 800;
    line-height: 1;
}
.qc-trend.trend-up[b-r13da2tq4s]   { color: #4caf50; }
.qc-trend.trend-down[b-r13da2tq4s] { color: #ef5350; }
.qc-trend.trend-flat[b-r13da2tq4s] { color: #777; }

.qc-points[b-r13da2tq4s] {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: .3rem;
}
.qc-own[b-r13da2tq4s] { color: #fff; }
.qc-sep[b-r13da2tq4s] { color: #4a5562; font-weight: 600; font-size: 1.1rem; }
.qc-opp[b-r13da2tq4s] { color: #ef9a9a; }

.qc-sub[b-r13da2tq4s] {
    display: flex;
    justify-content: space-between;
    margin-top: .25rem;
    font-size: .72rem;
    color: #8aafd4;
    font-weight: 600;
}

/* Top scorers */
.chart-empty[b-r13da2tq4s] {
    margin: .25rem 0;
    font-size: .82rem;
    color: #6b829c;
    font-style: italic;
}
.top-scorers[b-r13da2tq4s] { display: flex; flex-direction: column; gap: .5rem; }
.top-scorer-row[b-r13da2tq4s] {
    display: grid;
    grid-template-columns: 32px 1fr 2fr auto;
    align-items: center;
    gap: .55rem;
    font-size: .85rem;
}
.ts-jersey[b-r13da2tq4s] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1c2632;
    color: #58a6ff;
    font-weight: 800;
    font-size: .78rem;
}
.ts-name[b-r13da2tq4s] { font-weight: 600; color: #c9d4e0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ts-bar[b-r13da2tq4s] { background: #1a2530; border-radius: 4px; height: 10px; overflow: hidden; }
.ts-bar-fill[b-r13da2tq4s] { display: block; height: 100%; background: linear-gradient(90deg, #58a6ff, #1976d2); transition: width .25s ease-out; }
.ts-pts[b-r13da2tq4s] { font-weight: 800; color: #fff; font-variant-numeric: tabular-nums; min-width: 26px; text-align: right; }

/* Top-3 tabs (EFF / Pts / Ast) */
.chart-card-head-row[b-r13da2tq4s] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    margin-bottom: .55rem;
}
.chart-card-head-row .chart-card-title[b-r13da2tq4s] { margin: 0; }

.top-mode-tabs[b-r13da2tq4s] {
    display: inline-flex;
    background: #131c28;
    border: 1px solid #1f2a38;
    border-radius: 6px;
    overflow: hidden;
}
.top-mode-tab[b-r13da2tq4s] {
    background: transparent;
    border: none;
    color: #8aafd4;
    font: inherit;
    font-size: .72rem;
    font-weight: 700;
    padding: .3rem .55rem;
    cursor: pointer;
    transition: background .12s, color .12s;
}
.top-mode-tab:hover[b-r13da2tq4s] { background: #1a2530; color: #c9d4e0; }
.top-mode-tab.is-active[b-r13da2tq4s] {
    background: #1f3a52;
    color: #fff;
}

/* Man of the Match */
.motm-card[b-r13da2tq4s] {
    background: linear-gradient(135deg, #2a1f00, #1a1810);
    border-color: #6e5a18;
}
.motm-card .chart-card-title[b-r13da2tq4s] { color: #ffd54f; }

.motm-body[b-r13da2tq4s] {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.motm-jersey[b-r13da2tq4s] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffd54f;
    color: #2a1f00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    flex-shrink: 0;
}
.motm-name[b-r13da2tq4s] {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}
.motm-stats[b-r13da2tq4s] {
    display: flex;
    gap: .9rem;
}
.motm-stats > div[b-r13da2tq4s] {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}
.motm-num[b-r13da2tq4s] { font-size: 1.3rem; font-weight: 800; color: #ffd54f; font-variant-numeric: tabular-nums; }
.motm-lbl[b-r13da2tq4s] { font-size: .68rem; color: #c9b46f; margin-top: .15rem; letter-spacing: .05em; font-weight: 700; }
/* /Pages/Home.razor.rz.scp.css */
.home-hero[b-31za15ps0z] {
    padding: 2rem 0 1.25rem;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.hero-title[b-31za15ps0z] {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
    letter-spacing: -0.01em;
}

.hero-tag[b-31za15ps0z] {
    margin: 0;
    color: var(--sa-text-muted);
    font-size: 1rem;
}

.home-grid[b-31za15ps0z] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.85rem;
    padding: 0.5rem 0 2rem;
    width: 100%;
}

.home-card[b-31za15ps0z] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.1rem;
    background: var(--sa-surface);
    border: 1px solid var(--sa-border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--sa-text);
    transition: border-color 0.15s, transform 0.15s, background 0.15s;
}

.home-card:hover[b-31za15ps0z] {
    border-color: var(--sa-accent);
    background: var(--sa-surface-hover);
    transform: translateY(-1px);
}

.card-icon[b-31za15ps0z] { font-size: 1.5rem; }
.card-title[b-31za15ps0z] { font-weight: 700; font-size: 1rem; }
.card-sub[b-31za15ps0z] { color: var(--sa-text-muted); font-size: 0.82rem; }
/* /Pages/Login.razor.rz.scp.css */
.login-page[b-0ikld3hs3x] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 2rem 1rem;
}

.login-card[b-0ikld3hs3x] {
    background: var(--sa-surface, #1a1a1a);
    border: 1px solid var(--sa-border, #2e2e2e);
    border-radius: 14px;
    padding: 2.25rem 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .45);
}

.login-card h1[b-0ikld3hs3x] {
    margin: 0 0 .75rem;
    font-size: 1.55rem;
    color: #fff;
}

.login-card .muted[b-0ikld3hs3x] {
    color: #a0a8b1;
    font-size: .9rem;
    margin: 0 0 1.5rem;
}

.login-buttons[b-0ikld3hs3x] {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin: 1.5rem 0;
}

.login-btn[b-0ikld3hs3x] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    padding: .7rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    transition: transform .08s, border-color .15s, background .15s;
    border: 1px solid transparent;
}
.login-btn:hover[b-0ikld3hs3x]  { transform: translateY(-1px); }
.login-btn:active[b-0ikld3hs3x] { transform: translateY(0); }

.login-btn-microsoft[b-0ikld3hs3x] {
    background: #fff;
    color: #1a1a1a;
    border-color: #ddd;
}
.login-btn-microsoft:hover[b-0ikld3hs3x] { background: #f6f6f6; }

.login-btn-google[b-0ikld3hs3x] {
    background: #fff;
    color: #1a1a1a;
    border-color: #ddd;
}
.login-btn-google:hover[b-0ikld3hs3x] { background: #f6f6f6; }

.login-foot[b-0ikld3hs3x] {
    font-size: .78rem !important;
    color: #6b7480 !important;
    margin: 1rem 0 0 !important;
}
/* /Pages/PlayerProfile.razor.rz.scp.css */
.profile-root[b-0wp3s13foq] {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    background: #111;
    color: #eee;
    font-family: 'Segoe UI', sans-serif;
    padding-bottom: 2rem;
}

.not-found[b-0wp3s13foq], .page-loading[b-0wp3s13foq], .section-loading[b-0wp3s13foq] {
    padding: 3rem;
    text-align: center;
    color: #666;
    font-size: 1rem;
}

/* ── Header ── */
.profile-header[b-0wp3s13foq] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    margin: 0.75rem 1.25rem 0;
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-radius: 10px;
    flex-wrap: wrap;
    position: sticky;
    /* App-topbar is 48px hoog en sticky met top:0 — laat onze header daaronder
       plakken met een kleine gap. */
    top: calc(48px + 0.5rem);
    z-index: 20;
}

.avatar[b-0wp3s13foq] {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: -0.5px;
    object-fit: cover;
}

.player-info[b-0wp3s13foq]   { flex: 1; min-width: 0; }
.player-name[b-0wp3s13foq]   { font-size: 1.3rem; font-weight: 800; margin: 0 0 0.3rem; }
.player-meta[b-0wp3s13foq]   { display: flex; gap: 0.4rem; flex-wrap: wrap; align-items: center; }

.meta-tag[b-0wp3s13foq] {
    font-size: 0.75rem;
    background: #252525;
    border: 1px solid #3a3a3a;
    border-radius: 4px;
    padding: 0.15rem 0.5rem;
    color: #bbb;
}

.dd-badge[b-0wp3s13foq] {
    font-size: 0.72rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    color: #a5d6a7;
    border-radius: 4px;
    padding: 0.15rem 0.55rem;
    letter-spacing: 0.03em;
}

.season-selector[b-0wp3s13foq] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex-shrink: 0;
}

.season-selector label[b-0wp3s13foq] { font-size: 0.68rem; color: #888; }

.season-select[b-0wp3s13foq] {
    background: #252525;
    border: 1px solid #3a3a3a;
    color: #eee;
    border-radius: 6px;
    padding: 0.35rem 0.65rem;
    font-size: 0.85rem;
    cursor: pointer;
}

/* ── Metric cards ── */
.metric-cards[b-0wp3s13foq] {
    display: flex;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    overflow-x: auto;
    flex-shrink: 0;
}

.metric-cards[b-0wp3s13foq]::-webkit-scrollbar { display: none; }
.metric-cards[b-0wp3s13foq] { scrollbar-width: none; }

.metric-card[b-0wp3s13foq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    min-width: 150px;
    flex-shrink: 0;
    gap: 0.25rem;
}

/* Feature-card — accent op de hoofd-KPI (Efficiency). Subtiel om de zijaccents
   niet te overschaduwen: net iets bredere kaart, kleine border-glow. */
.metric-card-feature[b-0wp3s13foq] {
    min-width: 180px;
    background: linear-gradient(180deg, #1e2a1a, #16201a);
    border-color: #2e6a2e;
}
.metric-card-feature .mc-value[b-0wp3s13foq] { color: #c8f0c8; }
.metric-card-feature .mc-label[b-0wp3s13foq] { color: #a5d6a7; }

.mc-label[b-0wp3s13foq] {
    font-size: 0.75rem;
    color: #9aa3ad;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.mc-value[b-0wp3s13foq] {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    font-variant-numeric: tabular-nums;
}

.mc-sub[b-0wp3s13foq], .mc-games[b-0wp3s13foq] {
    font-size: 0.78rem;
    color: #8c95a0;
    font-variant-numeric: tabular-nums;
}

.trend-badge[b-0wp3s13foq] {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    margin-top: 0.15rem;
}

.trend-up[b-0wp3s13foq]   { background: #1b3a1b; color: #69f0ae; }
.trend-down[b-0wp3s13foq] { background: #3a1b1b; color: #ff6e6e; }
.trend-flat[b-0wp3s13foq] { background: #2a2a1a; color: #ffe57f; }

/* ── Section label ── */
.section-label[b-0wp3s13foq] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666;
    padding: 0.75rem 1.25rem 0.25rem;
}

/* ── Chart cards ── */
.charts-row[b-0wp3s13foq], .analysis-row[b-0wp3s13foq], .rankings-row[b-0wp3s13foq] {
    display: grid;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
}

.charts-row[b-0wp3s13foq]   { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.charts-row.charts-row-single[b-0wp3s13foq] { grid-template-columns: minmax(0, 1fr); }
.analysis-row[b-0wp3s13foq] { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.rankings-row[b-0wp3s13foq] { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 900px) {
    .charts-row[b-0wp3s13foq], .analysis-row[b-0wp3s13foq], .rankings-row[b-0wp3s13foq] {
        grid-template-columns: 1fr;
    }
}

.chart-card[b-0wp3s13foq] {
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-radius: 10px;
    padding: 0.875rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chart-title[b-0wp3s13foq] {
    font-size: 0.82rem;
    font-weight: 600;
    color: #bbb;
    margin: 0;
    letter-spacing: 0.02em;
}

.chart-title small[b-0wp3s13foq] { font-weight: 400; color: #666; }

/* ── Chart canvas containers ── */
.chart-container[b-0wp3s13foq] { position: relative; height: 220px; }
.radar-container[b-0wp3s13foq] { position: relative; height: 300px; }
.bar-container[b-0wp3s13foq]   { position: relative; min-height: 120px; }

/* ── Heatmap ── */
.heatmap-card[b-0wp3s13foq] { gap: 0.5rem; }

.heatmap-wrap[b-0wp3s13foq] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.heatmap-svg[b-0wp3s13foq] {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    border: 1px solid #2e4a2e;
}

.shot-zone-dot[b-0wp3s13foq] { cursor: default; transition: opacity 0.15s; }
.shot-zone-dot:hover[b-0wp3s13foq] { opacity: 1 !important; }

.shot-hex[b-0wp3s13foq] { cursor: default; transition: fill-opacity 0.15s, stroke-width 0.15s; }
.shot-hex:hover[b-0wp3s13foq] { fill-opacity: 1 !important; stroke-width: 1.2; }

.heatmap-header[b-0wp3s13foq] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.shotmap-toggle[b-0wp3s13foq] {
    display: inline-flex;
    border: 1px solid #2e4a2e;
    border-radius: 6px;
    overflow: hidden;
    background: #1b2a1b;
}

.shotmap-toggle-btn[b-0wp3s13foq] {
    background: transparent;
    color: #aaa;
    border: 0;
    padding: 0.25rem 0.7rem;
    font-size: 0.78rem;
    cursor: pointer;
    transition: background 0.12s, color 0.12s;
}

.shotmap-toggle-btn:hover[b-0wp3s13foq] { color: #fff; }
.shotmap-toggle-btn.active[b-0wp3s13foq] {
    background: #2e4a2e;
    color: #fff;
}

.heatmap-legend[b-0wp3s13foq] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    font-size: 0.72rem;
    color: #888;
    padding: 0 0.25rem;
}

.legend-item[b-0wp3s13foq] { display: flex; align-items: center; gap: 0.3rem; }

.legend-dot[b-0wp3s13foq] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-size[b-0wp3s13foq] { color: #555; font-style: italic; }

/* ── Rankings ── */
.ranking-card[b-0wp3s13foq] { min-height: 160px; }

/* ── Loopbaan-tijdlijn ── */
.career-timeline[b-0wp3s13foq] {
    padding: 0.5rem 1.25rem 1.25rem;
    position: relative;
}

.career-season[b-0wp3s13foq] {
    position: relative;
    padding: 0 0 1rem 1.5rem;
    border-left: 2px solid #2e2e2e;
}

.career-season:last-child[b-0wp3s13foq] { padding-bottom: 0; }

.career-dot[b-0wp3s13foq] {
    position: absolute;
    left: -7px;
    top: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3a3a3a;
    border: 2px solid #111;
}

.career-current[b-0wp3s13foq] { border-left-color: #2e7d32; }
.career-current .career-dot[b-0wp3s13foq] { background: #4caf50; }

.career-head[b-0wp3s13foq] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.career-year[b-0wp3s13foq] { font-size: 1rem; font-weight: 700; color: #eee; }

.career-badge[b-0wp3s13foq] {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    background: #1b3a1b;
    color: #69f0ae;
}

.career-stat[b-0wp3s13foq] { font-size: 0.8rem; color: #999; }

.career-teams[b-0wp3s13foq] { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.career-team[b-0wp3s13foq] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    text-decoration: none;
    transition: border-color 0.12s, background 0.12s;
}

.career-team:hover[b-0wp3s13foq] { border-color: #4caf50; background: #1b2a1b; }

.career-team-jersey[b-0wp3s13foq] { font-weight: 700; color: #4caf50; font-size: 0.85rem; }
.career-team-name[b-0wp3s13foq]   { color: #ddd; font-size: 0.85rem; }

.career-team-inactive[b-0wp3s13foq] { opacity: 0.65; }
.career-team-inactive .career-team-jersey[b-0wp3s13foq] { color: #888; }

.career-team-tag[b-0wp3s13foq] {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffb300;
    background: #2a2410;
    padding: 0.05rem 0.3rem;
    border-radius: 3px;
}
/* /Pages/Profile.razor.rz.scp.css */
.form-card-title[b-9ey9rkk5dv] {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    color: #f3f3f3;
}
.form-card-sub[b-9ey9rkk5dv] {
    margin: 0 0 1rem;
    font-size: 0.85rem;
}

.pref-options[b-9ey9rkk5dv] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pref-option[b-9ey9rkk5dv] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.7rem 0.85rem;
    background: #181818;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.12s ease, background 0.12s ease;
}
.pref-option:hover[b-9ey9rkk5dv] { background: #1c1c1c; border-color: #3a3a3a; }
.pref-option.is-active[b-9ey9rkk5dv] { border-color: var(--sa-accent); background: #1f1f1f; }

.pref-option input[type="radio"][b-9ey9rkk5dv] {
    margin-top: 0.2rem;
    accent-color: var(--sa-accent);
    flex-shrink: 0;
}

.pref-option-body[b-9ey9rkk5dv] {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.pref-option-title[b-9ey9rkk5dv] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f3f3f3;
}
.pref-option-sub[b-9ey9rkk5dv] {
    font-size: 0.82rem;
    color: #999;
    margin-top: 0.15rem;
}
/* /Pages/Scout.razor.rz.scp.css */
/* ── PAGE SHELL ─────────────────────────────────── */
/* Scout-page hangt onder de 48px MainLayout-topbar. position: fixed zorgt
   dat we de max-width/padding van .app-main negeren — de schotkaarten
   willen de volle viewportbreedte gebruiken op een tablet in landscape. */
.scout-page[b-nte7v1mj0g] {
    display: grid;
    grid-template-rows: auto auto 1fr;
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0d1117;
    color: #e8f0ff;
    font-family: system-ui, sans-serif;
    overflow: hidden;
}

.scout-loading[b-nte7v1mj0g],
.scout-error[b-nte7v1mj0g] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100dvh - 48px);
    font-size: 1.2rem;
    color: #8aafd4;
}

/* ── TOP BAR ─────────────────────────────────────── */
.top-bar[b-nte7v1mj0g] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
    background: #161b22;
    border-bottom: 1px solid #2e4060;
    flex-wrap: wrap;
}

.teams[b-nte7v1mj0g] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
}

.team-home[b-nte7v1mj0g] { color: #58a6ff; }
.team-away[b-nte7v1mj0g] { color: #f78166; }
.vs[b-nte7v1mj0g]        { color: #8aafd4; font-size: 0.75rem; }

.clock-block[b-nte7v1mj0g] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.clock[b-nte7v1mj0g] {
    font-size: 1.4rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #e8f0ff;
    min-width: 60px;
    text-align: center;
}

.clock-btn[b-nte7v1mj0g], .clock-reset[b-nte7v1mj0g] {
    background: #1e2a3a;
    border: 1px solid #2e4060;
    color: #e8f0ff;
    border-radius: 6px;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

.clock-btn:hover[b-nte7v1mj0g], .clock-reset:hover[b-nte7v1mj0g] { background: #2e4060; }

.quarter-score[b-nte7v1mj0g] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.q-btn[b-nte7v1mj0g] {
    background: #1e2a3a;
    border: 1px solid #3a4a60;
    color: #8aafd4;
    cursor: pointer;
    padding: 6px 10px;
    font-size: 1rem;
    border-radius: 6px;
    min-width: 40px;
    min-height: 40px;
    line-height: 1;
    transition: background 0.12s, transform 0.05s;
}
.q-btn:hover[b-nte7v1mj0g]  { background: #2e4060; }
.q-btn:active[b-nte7v1mj0g] { transform: scale(0.94); }

.quarter[b-nte7v1mj0g] {
    font-weight: 800;
    font-size: 1.1rem;
    min-width: 36px;
    text-align: center;
}

.score[b-nte7v1mj0g] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.score-home[b-nte7v1mj0g]  { color: #58a6ff; font-size: 1.1rem; }
.score-away[b-nte7v1mj0g]  { color: #f78166; font-size: 1.1rem; }
.score-sep[b-nte7v1mj0g]   { color: #8aafd4; }

.away-controls[b-nte7v1mj0g] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid #2e4060;
}

.away-label[b-nte7v1mj0g] {
    color: #8aafd4;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.away-btn[b-nte7v1mj0g] {
    background: #1e2a3a;
    border: 1px solid #3a4a60;
    color: #f78166;
    border-radius: 6px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    min-width: 44px;
    min-height: 40px;
    transition: background 0.12s, transform 0.05s;
}

.away-btn:hover[b-nte7v1mj0g]  { background: #2e4060; }
.away-btn:active[b-nte7v1mj0g] { transform: scale(0.94); }

.finish-btn[b-nte7v1mj0g] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
    background: transparent;
    border: 1px solid #5a2020;
    color: #ef9a9a;
    border-radius: 6px;
    padding: 9px 16px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    min-height: 40px;
    transition: background 0.12s, border-color 0.12s, color 0.12s;
}

.finish-btn svg[b-nte7v1mj0g] { width: 16px; height: 16px; display: block; }
.finish-btn:hover[b-nte7v1mj0g] { background: #3a1010; border-color: #c62828; color: #fff; }
.finish-btn:active[b-nte7v1mj0g] { transform: scale(0.97); }

.confirm-card[b-nte7v1mj0g] {
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-radius: 10px;
    padding: 1.25rem 1.5rem 1rem;
    max-width: 420px;
    width: calc(100vw - 2rem);
    box-shadow: 0 18px 38px rgba(0,0,0,0.55);
    color: #ececec;
}

.confirm-card h3[b-nte7v1mj0g] {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    color: #fff;
}

.confirm-card p[b-nte7v1mj0g] {
    margin: 0 0 1rem;
    color: #c0c0c0;
    font-size: 0.875rem;
    line-height: 1.45;
}

.confirm-card strong[b-nte7v1mj0g] { color: #fff; }

.confirm-actions[b-nte7v1mj0g] {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

/* ── Roster modal ─────────────────────────────────────────────────── */
.roster-section-title[b-nte7v1mj0g] {
    margin: 0.85rem 0 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #8aafd4;
    border-bottom: 1px solid #2e4060;
    padding-bottom: 0.25rem;
}

.roster-list[b-nte7v1mj0g] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.roster-row[b-nte7v1mj0g] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0.55rem;
    background: #1e2a3a;
    border: 1px solid #2e4060;
    border-radius: 5px;
    color: #e8f0ff;
    font-size: 0.85rem;
}

.roster-row .jersey[b-nte7v1mj0g] {
    color: #58a6ff;
    font-weight: 700;
    min-width: 32px;
}

.roster-remove[b-nte7v1mj0g] {
    margin-left: auto;
    background: transparent;
    border: none;
    color: #f78166;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.85rem;
}
.roster-remove:hover[b-nte7v1mj0g] { background: rgba(247, 129, 102, 0.15); }

/* ── Empty player-slot ─────────────────────────────────────────────── */
.player-col-empty[b-nte7v1mj0g] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 64, 96, 0.15);
    border: 1px dashed #2e4060;
    border-radius: 6px;
}

.player-empty-msg[b-nte7v1mj0g] {
    text-align: center;
    color: #5a7392;
    font-size: 0.85rem;
    padding: 1rem 0.5rem;
}

.player-empty-msg small[b-nte7v1mj0g] {
    color: #5a7392;
    font-size: 0.72rem;
}

.live-indicator[b-nte7v1mj0g] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 5px 10px;
    border-radius: 12px;
    border: 1px solid;
    /* Push naar rechts: alles tot hier blijft links uitgelijnd, alle items NA
       de live-indicator (Basis, Roster, Afsluiten) volgen rechts mee. */
    margin-left: auto;
}

.live-on[b-nte7v1mj0g]  { color: #3fb950; border-color: #3fb950; }
.live-off[b-nte7v1mj0g] { color: #6e7681; border-color: #3d444d; }

.live-dot[b-nte7v1mj0g] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.live-on .live-dot[b-nte7v1mj0g] { animation: pulse-b-nte7v1mj0g 1.2s infinite; }

@keyframes pulse-b-nte7v1mj0g {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

/* ── UNDO BAR ────────────────────────────────────── */
.undo-bar[b-nte7v1mj0g] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    background: #161b22;
    border-bottom: 1px solid #21262d;
    min-height: 36px;
}

.recent-actions[b-nte7v1mj0g] {
    display: flex;
    gap: 6px;
    flex: 1;
    overflow: hidden;
}

.recent-action[b-nte7v1mj0g] {
    font-size: 0.72rem;
    color: #8aafd4;
    background: #1e2a3a;
    border-radius: 4px;
    padding: 2px 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

.undo-btn[b-nte7v1mj0g] {
    background: #21262d;
    border: 1px solid #3d444d;
    color: #e8f0ff;
    border-radius: 8px;
    padding: 5px 14px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.undo-btn:hover:not(:disabled)[b-nte7v1mj0g] { background: #2e4060; border-color: #58a6ff; }
.undo-btn:disabled[b-nte7v1mj0g]              { opacity: 0.3; cursor: default; }

/* ── PLAYERS GRID ────────────────────────────────── */
.players-grid[b-nte7v1mj0g] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    padding: 3px;
    overflow-y: auto;
    align-items: start;
    /* Scroll-functie behoud, balk visueel verbergen — scout-tablet ziet er
       cleaner uit. Werkt op alle moderne browsers. */
    scrollbar-width: none;       /* Firefox */
}
.players-grid[b-nte7v1mj0g]::-webkit-scrollbar { display: none; }   /* WebKit / Blink */

/* ── PLAYER COLUMN ───────────────────────────────── */
.player-col[b-nte7v1mj0g] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #161b22;
    border-radius: 8px;
    padding: 5px;
    border: 1px solid #21262d;
    overflow: hidden;
}

/* Header */
.player-header[b-nte7v1mj0g] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-bottom: 4px;
    border-bottom: 1px solid #21262d;
}

.jersey[b-nte7v1mj0g] {
    font-size: 0.75rem;
    font-weight: 700;
    color: #58a6ff;
    white-space: nowrap;
}

.player-name[b-nte7v1mj0g] {
    flex: 1;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.15;
    /* Sta wrap toe (max 2 regels) zodat voor- + achternaam altijd zichtbaar is.
       Bij langere namen valt het in 2 regels; volledige naam blijft via title-tooltip. */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.sub-btn[b-nte7v1mj0g] {
    background: none;
    border: 1px solid #2e4060;
    color: #8aafd4;
    border-radius: 4px;
    padding: 1px 4px;
    cursor: pointer;
    font-size: 0.75rem;
    line-height: 1.4;
    flex-shrink: 0;
}

.sub-btn:hover[b-nte7v1mj0g] { background: #1e2a3a; color: #e8f0ff; }

/* Shot map */
.shot-map-wrap[b-nte7v1mj0g] {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #2e4060;
}

.shot-map[b-nte7v1mj0g] {
    display: block;
    width: 100%;
    height: auto;
    touch-action: none;
    cursor: crosshair;
}

/* Stats */
.stat-section[b-nte7v1mj0g] {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.stat-group-label[b-nte7v1mj0g] {
    font-size: 0.6rem;
    color: #6e7681;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.stat-row[b-nte7v1mj0g] {
    display: flex;
    gap: 3px;
}

/* Fouls */
.foul-circles[b-nte7v1mj0g] {
    display: flex;
    gap: 4px;
    justify-content: center;
    padding: 5px 2px;
    cursor: pointer;
    touch-action: none;
    border-radius: 6px;
    background: #1e2a3a;
    border: 1px solid #2e4060;
}

.foul-dot[b-nte7v1mj0g] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #6e7681;
    background: transparent;
    transition: background 0.15s, border-color 0.15s;
}

.foul-filled[b-nte7v1mj0g] {
    background: #f78166;
    border-color: #f78166;
}

/* ── SUB POPUP ───────────────────────────────────── */
.popup-overlay[b-nte7v1mj0g] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.sub-popup[b-nte7v1mj0g] {
    background: #161b22;
    border: 1px solid #2e4060;
    border-radius: 12px;
    padding: 20px 24px;
    min-width: 260px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sub-popup h3[b-nte7v1mj0g] {
    margin: 0;
    font-size: 0.95rem;
    color: #58a6ff;
}

.bench-list[b-nte7v1mj0g] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bench-player-btn[b-nte7v1mj0g] {
    background: #1e2a3a;
    border: 1px solid #2e4060;
    color: #e8f0ff;
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 0.9rem;
    text-align: left;
}

.bench-player-btn:hover[b-nte7v1mj0g] { background: #2e4a6e; border-color: #58a6ff; }

.popup-close[b-nte7v1mj0g] {
    background: none;
    border: 1px solid #3d444d;
    color: #8aafd4;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    font-size: 0.85rem;
}

.popup-close:hover[b-nte7v1mj0g] { background: #21262d; }

/* ── Starting-5 picker ──────────────────────────────────────────── */
.starters-count[b-nte7v1mj0g] {
    font-size: .9rem;
    color: #8aafd4;
    margin-bottom: .5rem;
    padding: .35rem .6rem;
    background: #0f1620;
    border-radius: 6px;
    display: inline-block;
}
.starters-count.is-ready[b-nte7v1mj0g] { color: #a5d6a7; background: #16270f; }

.starters-row[b-nte7v1mj0g] {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .5rem .6rem;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid transparent;
}
.starters-row:hover[b-nte7v1mj0g] { background: #161616; }
.starters-row.is-selected[b-nte7v1mj0g] { background: #16270f; border-color: #2e6a2e; }
.starters-row.is-disabled[b-nte7v1mj0g] { opacity: .45; cursor: not-allowed; }
.starters-num[b-nte7v1mj0g]  { font-weight: 700; color: #58a6ff; min-width: 2.5rem; }
.starters-name[b-nte7v1mj0g] { flex: 1; }

/* ── Player tile grid (starters-picker + wissel-popup) ─────────────── */
.player-tile-grid[b-nte7v1mj0g] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: .6rem;
    max-height: 60vh;
    overflow-y: auto;
    padding: .2rem;
    scrollbar-width: none;
}
.player-tile-grid[b-nte7v1mj0g]::-webkit-scrollbar { display: none; }

.player-tile[b-nte7v1mj0g] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    padding: .85rem .5rem .7rem;
    background: #0f1620;
    border: 2px solid #21262d;
    border-radius: 10px;
    color: #e6edf3;
    cursor: pointer;
    transition: border-color .12s, background .12s, transform .08s;
    font: inherit;
    text-align: center;
}
.player-tile:hover:not(:disabled)[b-nte7v1mj0g] {
    border-color: #3b6ea5;
    background: #131c28;
}
.player-tile:active:not(:disabled)[b-nte7v1mj0g] { transform: scale(.97); }

.player-tile.is-selected[b-nte7v1mj0g] {
    border-color: #4ea16d;
    background: #16270f;
}
.player-tile.is-disabled[b-nte7v1mj0g],
.player-tile:disabled[b-nte7v1mj0g] {
    opacity: .35;
    cursor: not-allowed;
}

.player-tile-num[b-nte7v1mj0g] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1c2632;
    color: #58a6ff;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}
.player-tile.is-selected .player-tile-num[b-nte7v1mj0g] {
    background: #1f3318;
    color: #a5d6a7;
}

.player-tile-name[b-nte7v1mj0g] {
    font-size: .82rem;
    font-weight: 600;
    line-height: 1.15;
    color: #c9d4e0;
    word-break: break-word;
}

.player-tile.is-disqualified[b-nte7v1mj0g] {
    opacity: .45;
    background: rgba(244, 67, 54, .12);
    border-color: rgba(244, 67, 54, .55);
    cursor: not-allowed;
}
.player-tile.is-disqualified:hover[b-nte7v1mj0g] { transform: none; }
.player-tile.is-disqualified .player-tile-num[b-nte7v1mj0g] {
    background: rgba(244, 67, 54, .25);
    color: #ff8a80;
}

.dq-badge[b-nte7v1mj0g] {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #c62828;
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-tile-check[b-nte7v1mj0g] {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #4ea16d;
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Bench-sectie onder scout-kolommen ─────────────────────────────── */
.bench-section[b-nte7v1mj0g] {
    margin-top: .75rem;
    padding: .65rem .8rem .8rem;
    background: #0d141d;
    border: 1px solid #1d2733;
    border-radius: 10px;
}

.bench-section-head[b-nte7v1mj0g] {
    display: flex;
    align-items: baseline;
    gap: .75rem;
    margin-bottom: .55rem;
}

.bench-strip-label[b-nte7v1mj0g] {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #6b829c;
}

.bench-strip-hint[b-nte7v1mj0g] {
    font-size: .72rem;
    color: #4a6378;
    font-style: italic;
}

.bench-strip-empty[b-nte7v1mj0g] {
    margin: 0;
    font-size: .82rem;
    color: #6b829c;
    font-style: italic;
}

/* Tegels in de bank-strip krijgen een grab-cursor i.p.v. de pointer
   van de standaard .player-tile. Andere visuals (grootte, kleuren) blijven
   identiek aan de modal-tegels voor een consistent beeld. */
.bench-tile-grid .player-tile[b-nte7v1mj0g] { cursor: grab; }
.bench-tile-grid .player-tile:active[b-nte7v1mj0g] { cursor: grabbing; }
.bench-tile-grid .player-tile.is-dragging[b-nte7v1mj0g] { opacity: .45; }

/* Visual feedback op de player-col tijdens dragover */
.player-col.is-drop-target[b-nte7v1mj0g] {
    outline: 2px dashed #4ea16d;
    outline-offset: -2px;
    background: rgba(78, 161, 109, .08);
}
/* /Pages/Spectator.razor.rz.scp.css */
.spectator-root[b-d17eczopob] {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    background: #111;
    color: #eee;
    font-family: 'Segoe UI', sans-serif;
}

/* ── Top bar ── */
.spec-topbar[b-d17eczopob] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: #1c1c1c;
    border-bottom: 1px solid #333;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 10;
}

.live-badge[b-d17eczopob] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
}

.live-on[b-d17eczopob]       { background: #c62828; color: #fff; animation: pulse-b-d17eczopob 1.5s infinite; }
.live-off[b-d17eczopob]      { background: #444;    color: #aaa; }
.live-finished[b-d17eczopob] { background: #1565c0; color: #fff; }

@keyframes pulse-b-d17eczopob {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

.match-name[b-d17eczopob] { flex: 1; font-size: 0.9rem; font-weight: 600; text-align: center; min-width: 0; }
.score[b-d17eczopob]      { font-size: 1.5rem; font-weight: 800; color: #ffb300; white-space: nowrap; }
.clock[b-d17eczopob]      { font-size: 0.85rem; color: #aaa; white-space: nowrap; }

/* ── Resultaatbanner ── */
.result-banner[b-d17eczopob] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem;
    text-align: center;
}

.result-win[b-d17eczopob]  { background: linear-gradient(135deg, #1b5e20, #2e7d32); }
.result-loss[b-d17eczopob] { background: linear-gradient(135deg, #4a1010, #7f1a1a); }

.result-label[b-d17eczopob]  { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; }
.result-score[b-d17eczopob]  { font-size: 2.5rem; font-weight: 900; color: #fff; line-height: 1; }
.result-teams[b-d17eczopob]  { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ── Totals bar ── */
.totals-bar[b-d17eczopob] {
    display: flex;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    background: #1c1c1c;
    border-bottom: 1px solid #333;
    overflow-x: auto;
}

.totals-bar[b-d17eczopob]::-webkit-scrollbar { display: none; }
.totals-bar[b-d17eczopob] { scrollbar-width: none; }

.total-card[b-d17eczopob] {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #252525;
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
    min-width: 4.5rem;
    flex-shrink: 0;
}

.total-label[b-d17eczopob] { font-size: 0.65rem; color: #888; text-transform: uppercase; }
.total-value[b-d17eczopob] { font-size: 1.1rem; font-weight: 700; color: #fff; }

/* ── Player list ── */
.player-list[b-d17eczopob] {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0.75rem;
    gap: 0.4rem;
}

.bench-divider[b-d17eczopob] {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666;
    padding: 0.5rem 0 0.15rem;
    border-top: 1px solid #2a2a2a;
    margin-top: 0.25rem;
}

/* ── Player row ── */
.player-row[b-d17eczopob] {
    background: #1e1e1e;
    border: 1px solid #2e2e2e;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.bench-row[b-d17eczopob] { opacity: 0.55; }

.pr-header[b-d17eczopob] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pr-jersey[b-d17eczopob] {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffb300;
    min-width: 2.4rem;
}

.pr-name[b-d17eczopob] {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
}

.bench-badge[b-d17eczopob] {
    font-size: 0.6rem;
    background: #2a2a2a;
    color: #777;
    border-radius: 4px;
    padding: 0.1rem 0.35rem;
}

.pr-pts[b-d17eczopob] {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
}

.pr-pts small[b-d17eczopob] {
    font-size: 0.65rem;
    font-weight: 400;
    color: #888;
    margin-left: 1px;
}

/* ── Stat chips ── */
.pr-stats[b-d17eczopob] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.stat-chip[b-d17eczopob] {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.8rem;
    background: #252525;
    border-radius: 4px;
    padding: 0.15rem 0.4rem;
    color: #ccc;
    white-space: nowrap;
}

.sc-label[b-d17eczopob] {
    font-size: 0.6rem;
    color: #666;
    text-transform: uppercase;
    margin-right: 1px;
}

/* ── Foul dots ── */
.pr-fouls[b-d17eczopob] {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.foul-dot[b-d17eczopob] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #e53935;
    background: transparent;
    transition: background 0.2s;
}

.foul-filled[b-d17eczopob] { background: #e53935; }

/* ── Responsive ── */
@media (min-width: 600px) {
    .player-list[b-d17eczopob] { max-width: 680px; margin: 0 auto; width: 100%; }
}
/* /Pages/TeamProfile.razor.rz.scp.css */
/* Het team-dashboard hergebruikt het visuele template van het speler-dashboard.
   Scoped CSS in Blazor isoleert per component, dus de stijlen die op de
   speler-pagina gedefinieerd zijn werken niet automatisch hier — vandaar
   de duplicatie. Aanpassingen aan beide hieronder doorvoeren. */

.profile-root[b-fit07zy8yj] {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    background: #111;
    color: #eee;
    font-family: 'Segoe UI', sans-serif;
    padding-bottom: 2rem;
}

.not-found[b-fit07zy8yj], .page-loading[b-fit07zy8yj], .section-loading[b-fit07zy8yj] {
    padding: 3rem;
    text-align: center;
    color: #666;
    font-size: 1rem;
}

/* ── Header ── */
.profile-header[b-fit07zy8yj] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    margin: 0.75rem 1.25rem 0;
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-radius: 10px;
    flex-wrap: wrap;
    position: sticky;
    top: calc(48px + 0.5rem);
    z-index: 20;
}

.team-header-icon[b-fit07zy8yj] {
    width: 64px; height: 64px;
    border-radius: 8px;
    background: #252525;
    border: 1px solid #2e2e2e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #4caf50;
    overflow: hidden;
}
.team-header-icon img[b-fit07zy8yj] { width: 100%; height: 100%; object-fit: cover; }
.team-header-icon svg[b-fit07zy8yj] { width: 32px; height: 32px; }

.player-info[b-fit07zy8yj]   { flex: 1; min-width: 0; }
.player-name[b-fit07zy8yj]   { font-size: 1.3rem; font-weight: 800; margin: 0 0 0.3rem; }
.player-meta[b-fit07zy8yj]   { display: flex; gap: 0.4rem; flex-wrap: wrap; align-items: center; }

.meta-tag[b-fit07zy8yj] {
    font-size: 0.75rem;
    background: #252525;
    border: 1px solid #3a3a3a;
    border-radius: 4px;
    padding: 0.15rem 0.5rem;
    color: #bbb;
}

.meta-tag.meta-tag-division[b-fit07zy8yj] {
    background: #1a2e4a;
    color: #cfe3ff;
    border-color: #2e4060;
}

.season-selector[b-fit07zy8yj] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex-shrink: 0;
}

.season-selector label[b-fit07zy8yj] { font-size: 0.68rem; color: #888; }

.season-selector .btn-sm[b-fit07zy8yj] { margin-bottom: 0.4rem; }

.season-select[b-fit07zy8yj] {
    background: #252525;
    border: 1px solid #3a3a3a;
    color: #eee;
    border-radius: 6px;
    padding: 0.35rem 0.65rem;
    font-size: 0.85rem;
    cursor: pointer;
}

/* ── Metric cards ── */
.metric-cards[b-fit07zy8yj] {
    display: flex;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    overflow-x: auto;
    flex-shrink: 0;
}

.metric-cards[b-fit07zy8yj]::-webkit-scrollbar { display: none; }
.metric-cards[b-fit07zy8yj] { scrollbar-width: none; }

.metric-card[b-fit07zy8yj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    min-width: 110px;
    flex-shrink: 0;
    gap: 0.15rem;
}

.mc-label[b-fit07zy8yj] {
    font-size: 0.68rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mc-value[b-fit07zy8yj] {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.mc-sub[b-fit07zy8yj], .mc-games[b-fit07zy8yj] {
    font-size: 0.65rem;
    color: #666;
}

/* ── Section label ── */
.section-label[b-fit07zy8yj] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666;
    padding: 0.75rem 1.25rem 0.25rem;
}

/* ── Chart cards ── */
.charts-row[b-fit07zy8yj], .analysis-row[b-fit07zy8yj], .rankings-row[b-fit07zy8yj], .standings-row[b-fit07zy8yj] {
    display: grid;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
}

/* minmax(0, 1fr) ipv 1fr → kolom mag onder zijn min-content kleiner worden,
   anders duwt een breed Chart.js-canvas of lange tekst de kolom uit zijn vak. */
.charts-row[b-fit07zy8yj]   { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.charts-row.charts-row-single[b-fit07zy8yj] { grid-template-columns: minmax(0, 1fr); }
.analysis-row[b-fit07zy8yj] { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.rankings-row[b-fit07zy8yj] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.standings-row[b-fit07zy8yj] { grid-template-columns: minmax(0, 1fr); }

@media (max-width: 900px) {
    .charts-row[b-fit07zy8yj], .analysis-row[b-fit07zy8yj], .rankings-row[b-fit07zy8yj] {
        grid-template-columns: 1fr;
    }
}

.chart-card[b-fit07zy8yj] {
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-radius: 10px;
    padding: 0.875rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chart-title[b-fit07zy8yj] {
    font-size: 0.82rem;
    font-weight: 600;
    color: #bbb;
    margin: 0;
    letter-spacing: 0.02em;
}

.chart-title small[b-fit07zy8yj] { font-weight: 400; color: #666; }

.chart-container[b-fit07zy8yj] { position: relative; height: 260px; }
.bar-container[b-fit07zy8yj]   { position: relative; min-height: 120px; }

/* ── Heatmap ── */
.heatmap-card[b-fit07zy8yj] { gap: 0.5rem; }

.heatmap-wrap[b-fit07zy8yj] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.heatmap-svg[b-fit07zy8yj] {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    border: 1px solid #2e4a2e;
}

.shot-zone-dot[b-fit07zy8yj] { cursor: default; transition: opacity 0.15s; }
.shot-zone-dot:hover[b-fit07zy8yj] { opacity: 1 !important; }

.shot-hex[b-fit07zy8yj] { cursor: default; transition: fill-opacity 0.15s, stroke-width 0.15s; }
.shot-hex:hover[b-fit07zy8yj] { fill-opacity: 1 !important; stroke-width: 1.2; }

.heatmap-header[b-fit07zy8yj] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.shotmap-toggle[b-fit07zy8yj] {
    display: inline-flex;
    border: 1px solid #2e4a2e;
    border-radius: 6px;
    overflow: hidden;
    background: #1b2a1b;
}

.shotmap-toggle-btn[b-fit07zy8yj] {
    background: transparent;
    color: #aaa;
    border: 0;
    padding: 0.25rem 0.7rem;
    font-size: 0.78rem;
    cursor: pointer;
    transition: background 0.12s, color 0.12s;
}

.shotmap-toggle-btn:hover[b-fit07zy8yj] { color: #fff; }
.shotmap-toggle-btn.active[b-fit07zy8yj] {
    background: #2e4a2e;
    color: #fff;
}

.heatmap-legend[b-fit07zy8yj] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    font-size: 0.72rem;
    color: #888;
    padding: 0 0.25rem;
}

.legend-item[b-fit07zy8yj] { display: flex; align-items: center; gap: 0.3rem; }
.legend-dot[b-fit07zy8yj] { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.legend-size[b-fit07zy8yj] { color: #555; font-style: italic; }

/* ── Rankings ── */
.ranking-card[b-fit07zy8yj] { min-height: 160px; }

/* ── Roster-grid binnen team-dashboard ── */
.team-roster-grid[b-fit07zy8yj] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.6rem;
}
.roster-card[b-fit07zy8yj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
    padding: 0.85rem 0.5rem 0.6rem;
    background: #222;
    border: 1px solid #2e2e2e;
    border-radius: 10px;
    color: #eee;
    text-decoration: none;
    font-size: 0.82rem;
    transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}
.roster-card:hover[b-fit07zy8yj] {
    border-color: #4caf50;
    transform: translateY(-2px);
    background: #1a1a1a;
}
.roster-avatar[b-fit07zy8yj] {
    width: 60px; height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem; font-weight: 700; color: #888;
    text-transform: uppercase;
}
.roster-name[b-fit07zy8yj] { font-weight: 600; line-height: 1.2; }
.roster-jersey[b-fit07zy8yj] { color: #888; font-size: 0.72rem; }
.roster-pos[b-fit07zy8yj] {
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-radius: 4px;
    padding: 0 5px;
    font-size: 0.65rem;
    font-weight: 600;
}

/* ── Standings ── */
.standings-card .chart-title small[b-fit07zy8yj] { font-weight: 400; color: #666; margin-left: 0.4rem; }

.division-badge[b-fit07zy8yj] {
    display: inline-block;
    margin-left: 0.5rem;
    background: #1a2e4a;
    color: #cfe3ff;
    border: 1px solid #2e4060;
    border-radius: 4px;
    padding: 1px 7px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    vertical-align: middle;
}

.standings-table[b-fit07zy8yj] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.83rem;
}
.standings-table th[b-fit07zy8yj],
.standings-table td[b-fit07zy8yj] {
    padding: 0.4rem 0.55rem;
    border-bottom: 1px solid #232323;
    vertical-align: middle;
}
.standings-table th[b-fit07zy8yj] {
    text-align: left;
    color: #888;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.standings-table .col-num[b-fit07zy8yj]   { text-align: right; font-variant-numeric: tabular-nums; width: auto; }
.standings-table .col-photo[b-fit07zy8yj] { width: 32px; padding-right: 0; }

.standings-logo[b-fit07zy8yj] {
    width: 24px; height: 24px;
    border-radius: 4px;
    object-fit: cover;
    background: #222;
    border: 1px solid #2e2e2e;
    display: inline-block;
    vertical-align: middle;
}
.standings-logo-empty[b-fit07zy8yj] { background: #1a1a1a; }

.standings-table tr.row-highlight td[b-fit07zy8yj] {
    background: rgba(76, 175, 80, 0.18);
    color: #fff;
    font-weight: 600;
}
.standings-table tr.row-highlight:hover td[b-fit07zy8yj] { background: rgba(76, 175, 80, 0.25); }

.error-msg[b-fit07zy8yj] { color: #ff6e6e; font-size: 0.85rem; }

/* ── Roster-vergelijking (modal) ── */
.rc-controls[b-fit07zy8yj] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0.75rem 0 1rem;
}

.rc-controls label[b-fit07zy8yj] { font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 0.05em; }
.rc-arrow[b-fit07zy8yj] { color: #4caf50; font-weight: 700; }

.rc-grid[b-fit07zy8yj] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 720px) { .rc-grid[b-fit07zy8yj] { grid-template-columns: 1fr; } }

.rc-col[b-fit07zy8yj] {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 0.5rem;
}

.rc-col-head[b-fit07zy8yj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.4rem 0.5rem;
    border-bottom: 1px solid #2a2a2a;
    margin-bottom: 0.4rem;
}

.rc-col-head span[b-fit07zy8yj] {
    background: #2a2a2a;
    color: #ddd;
    border-radius: 10px;
    padding: 0.05rem 0.5rem;
    font-size: 0.75rem;
}

.rc-stay[b-fit07zy8yj] { color: #9e9e9e; }
.rc-join[b-fit07zy8yj] { color: #69f0ae; }
.rc-join span[b-fit07zy8yj] { background: #1b3a1b; color: #69f0ae; }
.rc-left[b-fit07zy8yj] { color: #ff8a80; }
.rc-left span[b-fit07zy8yj] { background: #3a1b1b; color: #ff8a80; }

.rc-row[b-fit07zy8yj] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.4rem;
    border-radius: 6px;
}

.rc-row:hover[b-fit07zy8yj] { background: #1c1c1c; }

.rc-jersey[b-fit07zy8yj] {
    font-weight: 700;
    color: #4caf50;
    font-size: 0.8rem;
    min-width: 2.5rem;
    white-space: nowrap;
}

.rc-name[b-fit07zy8yj] { color: #ddd; font-size: 0.85rem; flex: 1; }

.rc-tag[b-fit07zy8yj] {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: #ffb300;
    background: #2a2410;
    padding: 0.05rem 0.3rem;
    border-radius: 3px;
}

.rc-empty[b-fit07zy8yj] { color: #555; text-align: center; padding: 0.5rem 0; margin: 0; }
