:root {
	color-scheme: light;
	--surface-1: #fcfcfb;
	--page: #f9f9f7;
	--text-primary: #0b0b0b;
	--text-secondary: #52514e;
	--text-muted: #898781;
	--gridline: #e1e0d9;
	--baseline: #c3c2b7;
	--border: rgba(11, 11, 11, 0.10);

	--series-1: #2a78d6;
	--series-2: #008300;
	--series-3: #e87ba4;
	--series-4: #eda100;
	--series-5: #1baf7a;
	--series-6: #eb6834;
	--series-7: #4a3aa7;
	--series-8: #e34948;

	--status-good: #0ca30c;
	--status-warning: #fab219;
	--status-serious: #ec835a;
	--status-critical: #d03b3b;
	--status-neutral: #898781;
	--delta-good-text: #006300;
	--status-good-soft: color-mix(in oklab, var(--status-good) 55%, var(--surface-1));
	--status-critical-soft: color-mix(in oklab, var(--status-critical) 55%, var(--surface-1));
}

@media (prefers-color-scheme: dark) {
	:root {
		color-scheme: dark;
		--surface-1: #1a1a19;
		--page: #0d0d0d;
		--text-primary: #ffffff;
		--text-secondary: #c3c2b7;
		--text-muted: #898781;
		--gridline: #2c2c2a;
		--baseline: #383835;
		--border: rgba(255, 255, 255, 0.10);

		--series-1: #3987e5;
		--series-2: #008300;
		--series-3: #d55181;
		--series-4: #c98500;
		--series-5: #199e70;
		--series-6: #d95926;
		--series-7: #9085e9;
		--series-8: #e66767;

		--status-good: #0ca30c;
		--status-warning: #fab219;
		--status-serious: #ec835a;
		--status-critical: #e66767;
		--delta-good-text: #0ca30c;
	}
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
	background: var(--page);
	color: var(--text-primary);
}

.app {
	max-width: 1280px;
	margin: 0 auto;
	padding: 24px 20px 60px;
}

.app-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 20px;
}

.app-header h1 {
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}

.controls {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.range-picker {
	display: flex;
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
}

.range-picker button {
	background: var(--surface-1);
	color: var(--text-secondary);
	border: none;
	padding: 7px 12px;
	font-size: 13px;
	cursor: pointer;
}

.range-picker button + button {
	border-left: 1px solid var(--border);
}

.range-picker button.active {
	background: var(--series-1);
	color: white;
	font-weight: 600;
}

.btn {
	background: var(--series-1);
	color: white;
	border: none;
	border-radius: 8px;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.btn:disabled {
	opacity: 0.6;
	cursor: default;
}

.balance-chip {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px 16px;
	padding: 6px 12px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--surface-1);
}

/* One group per account. With a single account this collapses to the old flat row; with several
   it keeps each account's amount next to its own name instead of interleaving them. */
.balance-chip .account {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

/* Only the capped accounts go red, not every account in the row. */
.balance-chip .account.blocked .value,
.balance-chip .account.blocked .sub {
	color: var(--status-critical);
}

/* Author styles beat the UA's [hidden]{display:none}, so display:flex above would keep the chip
   visible while it has no data to show. */
.balance-chip[hidden] {
	display: none;
}

.account-filter {
	padding: 6px 10px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--surface-1);
	color: var(--text-primary);
	font: inherit;
}

.balance-chip .label {
	font-size: 12px;
	color: var(--text-muted);
}

.balance-chip .value {
	font-size: 16px;
	font-weight: 700;
}

.balance-chip .sub {
	font-size: 11px;
	color: var(--text-muted);
}

/* Cap reached: placement is stopped, so the balance is the thing to look at first. */
.balance-chip.blocked {
	border-color: var(--status-critical);
	background: color-mix(in oklab, var(--status-critical) 12%, var(--surface-1));
}

.balance-chip.blocked .value,
.balance-chip.blocked .sub {
	color: var(--status-critical);
}

.sync-banner {
	font-size: 12px;
	color: var(--text-muted);
}

.sync-banner.error {
	color: var(--status-critical);
}

.kpi-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 12px;
	margin-bottom: 20px;
}

.kpi-card {
	background: var(--surface-1);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 14px 16px;
}

.kpi-card .label {
	font-size: 12px;
	color: var(--text-muted);
	margin-bottom: 6px;
}

.kpi-card .value {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
}

.kpi-card .value.good {
	color: var(--delta-good-text);
}

.kpi-card .value.bad {
	color: var(--status-critical);
}

.kpi-card .sub {
	font-size: 12px;
	color: var(--text-muted);
	margin-top: 4px;
}

.card-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

@media (max-width: 860px) {
	.card-grid {
		grid-template-columns: 1fr;
	}
}

.card {
	background: var(--surface-1);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 16px;
	margin-bottom: 16px;
	overflow-x: auto;
}

.card h2 {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 12px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.card h2 select {
	font-size: 12px;
	padding: 4px 6px;
	border-radius: 6px;
	border: 1px solid var(--border);
	background: var(--surface-1);
	color: var(--text-primary);
}

.chart-wrap {
	position: relative;
	height: 260px;
}

.chart-wrap.short {
	height: 220px;
}

table {
	width: 100%;
	border-collapse: collapse;
	font-size: 12px;
	white-space: nowrap;
}

th, td {
	text-align: left;
	padding: 6px 10px;
	border-bottom: 1px solid var(--gridline);
	font-variant-numeric: tabular-nums;
}

th {
	color: var(--text-muted);
	font-weight: 600;
	position: sticky;
	top: 0;
	background: var(--surface-1);
}

.badge {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	color: white;
}

.badge.win { background: var(--status-good); }
.badge.loss { background: var(--status-critical); }
.badge.push { background: var(--status-neutral); }
.badge.pending { background: var(--status-warning); color: #3a2a00; }

/* Прибыль в таблице. Тот же знак-цвет, что у KPI-карточек: колонка с деньгами читается
   сканированием, и знак «минус» в мелком моноширинном столбце сам по себе слишком тихий. */
td.good { color: var(--delta-good-text); }
td.bad { color: var(--status-critical); }

.unmatched-hint {
	font-size: 12px;
	color: var(--text-muted);
}

.table-scroll {
	max-height: 420px;
	overflow-y: auto;
}

.empty {
	color: var(--text-muted);
	font-size: 13px;
	padding: 20px 0;
	text-align: center;
}

/* ---------------------------------------------------------------------------
   Admin panel (admin.html). Everything below is shared with the dashboard's
   look on purpose: the two pages are the same tool, and a settings screen that
   looked like a different application would be one more thing to learn.
   --------------------------------------------------------------------------- */

.nav {
	display: flex;
	gap: 4px;
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
}

.nav a {
	padding: 7px 12px;
	font-size: 13px;
	text-decoration: none;
	color: var(--text-secondary);
	background: var(--surface-1);
}

.nav a.active {
	background: var(--series-1);
	color: white;
	font-weight: 600;
}

.btn.secondary {
	background: var(--surface-1);
	color: var(--text-primary);
	border: 1px solid var(--border);
}

.btn.danger {
	background: var(--status-critical);
}

.btn.warn {
	background: var(--status-warning);
	color: #3a2a00;
}

.btn.small {
	padding: 5px 10px;
	font-size: 12px;
}

/* An account taken out of play. Faded rather than hidden: the whole point of the state is that
   the account still exists and still has bets settling. */
.acct.paused {
	border-color: var(--status-warning);
	background: color-mix(in oklab, var(--status-warning) 7%, var(--surface-1));
}

.acct-head {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.acct-head .name {
	font-size: 15px;
	font-weight: 700;
	margin-right: 4px;
}

.acct-head .meta {
	font-size: 11px;
	color: var(--text-muted);
	flex-basis: 100%;
}

.acct-head .spacer {
	flex: 1;
}

.badge.on { background: var(--status-good); }
.badge.off { background: var(--status-warning); color: #3a2a00; }
.badge.origin { background: var(--status-neutral); }
.badge.edited { background: var(--series-7); }
.badge.cold { background: var(--status-serious); }

.field-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 12px;
}

.field {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.field.wide {
	grid-column: 1 / -1;
}

.field label {
	font-size: 11px;
	color: var(--text-muted);
}

.field input,
.field select {
	padding: 7px 9px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--page);
	color: var(--text-primary);
	font: inherit;
	font-size: 13px;
	font-variant-numeric: tabular-nums;
	width: 100%;
}

.field input:focus,
.field select:focus {
	outline: 2px solid color-mix(in oklab, var(--series-1) 60%, transparent);
	outline-offset: -1px;
}

.field .hint {
	font-size: 10px;
	color: var(--text-muted);
	min-height: 12px;
}

/* Shown only where the running value differs from what application.yaml resolves to — the answer
   to "is this number the file's, or did somebody change it here?". */
.field .hint.overridden {
	color: var(--series-7);
}

.form-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--gridline);
}

.form-actions .spacer {
	flex: 1;
}

.msg {
	font-size: 12px;
}

.msg.ok { color: var(--delta-good-text); }
.msg.err { color: var(--status-critical); }

.acct-balance {
	font-size: 12px;
	color: var(--text-muted);
	font-variant-numeric: tabular-nums;
}

.acct-balance.blocked {
	color: var(--status-critical);
	font-weight: 600;
}

.collapsed {
	display: none;
}

/* ---------------------------------------------------------------------------
   «На что ставим» — рынки, периоды и лиги, разрешённые аккаунту. Свёрнуто по
   умолчанию: строки-итога («только ТБ, ТМ · лиги: кроме 3 шт.») хватает, чтобы
   понять, чем аккаунты отличаются друг от друга, а разворачивают блок только
   когда собираются его менять.
   --------------------------------------------------------------------------- */

.filters {
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid var(--gridline);
}

.filters > summary {
	cursor: pointer;
	font-size: 12px;
	color: var(--text-muted);
	user-select: none;
}

.filters > summary b {
	color: var(--text-primary);
	font-weight: 600;
}

.note.small {
	font-size: 11px;
	margin: 8px 0 0;
}

/* Рынки и периоды — узкими колонками, лиги растягиваются на всю ширину: их список
   длинный и ему нужна прокрутка, а не третья колонка в 140px. */
.filter-grid-2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 14px;
	margin-top: 12px;
}

.filter-group.wide {
	grid-column: 1 / -1;
}

.filter-head {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 8px;
}

.filter-label {
	font-size: 11px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.filter-head select.mode,
.filter-head input[type="search"] {
	padding: 4px 7px;
	border: 1px solid var(--border);
	border-radius: 7px;
	background: var(--page);
	color: var(--text-primary);
	font: inherit;
	font-size: 12px;
}

.filter-head input[type="search"] {
	flex: 1;
	min-width: 120px;
	max-width: 260px;
}

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 9px;
	border: 1px solid var(--border);
	border-radius: 999px;
	font-size: 12px;
	cursor: pointer;
	user-select: none;
}

/* Выбранное видно и без чтения галочки: строка-итог сверху говорит, whitelist это
   или blacklist, а здесь важно только «отмечено / нет». */
.chip:has(input:checked) {
	border-color: var(--series-1);
	background: color-mix(in oklab, var(--series-1) 18%, transparent);
}

.league-list {
	max-height: 220px;
	overflow-y: auto;
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 6px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.league-list .chk {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 3px 6px;
	border-radius: 6px;
	font-size: 12px;
	cursor: pointer;
}

.league-list .chk:hover {
	background: var(--gridline);
}

.league-list .chk .name {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.league-list .chk .count {
	font-size: 10px;
	color: var(--text-muted);
	font-variant-numeric: tabular-nums;
}

.patterns {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: 8px;
	font-size: 11px;
	color: var(--text-muted);
}

.patterns textarea {
	padding: 7px 9px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--page);
	color: var(--text-primary);
	font: inherit;
	font-size: 13px;
	resize: vertical;
}

/* ---------------------------------------------------------------------------
   Страница ставок (bets.html). Своих цветов и своей типографики не заводит —
   от дашборда её отличает только то, что таблица здесь главная, а не одна из
   карточек, поэтому ей отданы высота и сортировка.
   --------------------------------------------------------------------------- */

/* Те же колонки, что у .field-grid в панели, но шире минимум: сюда попадают даты и
   выпадашки с длинными подписями, а не короткие числовые поля. */
.filter-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 12px;
}

/* Список — главное на странице, и упираться в 420px, как карточка на дашборде, ему незачем. */
.table-scroll.tall {
	max-height: calc(100vh - 320px);
	min-height: 320px;
}

th.sortable {
	cursor: pointer;
	user-select: none;
}

th.sortable:hover {
	color: var(--text-secondary);
}

/* Стрелка через ::after, чтобы её появление не меняло ширину колонки: при переключении
   сортировки таблица иначе дёргается вбок. */
th.sortable::after {
	content: '↕';
	margin-left: 4px;
	opacity: 0.25;
}

th.sortable.sorted {
	color: var(--series-1);
}

th.sortable.sorted[data-dir="desc"]::after {
	content: '↓';
	opacity: 1;
}

th.sortable.sorted[data-dir="asc"]::after {
	content: '↑';
	opacity: 1;
}

.pager {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 400;
}

.pager.bottom {
	justify-content: flex-end;
	margin-top: 12px;
}

.pager-text {
	font-size: 12px;
	color: var(--text-muted);
	font-variant-numeric: tabular-nums;
}

.note {
	font-size: 12px;
	color: var(--text-muted);
	margin: -4px 0 12px;
	line-height: 1.5;
}

/* ---------------------------------------------------------------------------
   Глубокая аналитика (insights.html). Ни одного своего цвета: вердикт «значимо
   в плюс» красится тем же --status-good, что и прибыль в таблице, а клетки
   кросс-среза — им же через color-mix. Страница отличается от дашборда тем,
   какие вопросы задаёт, а не тем, как выглядит.
   --------------------------------------------------------------------------- */

/* Кривой прибыли и графику интервалов 260px мало: на первой сжимается просадка,
   на втором — подписи срезов налезают друг на друга. */
.chart-wrap.tall {
	height: 340px;
}

/* Вторичный ряд KPI внутри карточки, а не над страницей. */
.kpi-grid.compact {
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	margin-bottom: 16px;
}

.kpi-grid.compact .kpi-card .value {
	font-size: 18px;
}

.card h2 .head-controls {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 400;
}

.card h2 .head-controls .times {
	color: var(--text-muted);
}

td.muted {
	color: var(--text-muted);
}

/* Разделитель «Лучшие / Худшие» внутри одной таблицы. */
tr.group td {
	color: var(--text-muted);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding-top: 12px;
	border-bottom: none;
}

.verdict {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	background: color-mix(in oklab, var(--status-neutral) 18%, transparent);
	color: var(--text-secondary);
}

.verdict.good {
	background: color-mix(in oklab, var(--status-good) 18%, transparent);
	color: var(--delta-good-text);
}

.verdict.bad {
	background: color-mix(in oklab, var(--status-critical) 18%, transparent);
	color: var(--status-critical);
}

/* --- Воронка --- */

/* Сетка, а не флекс на каждую строку: подписи и числа обязаны стоять в колонку,
   иначе полосы начинаются в разных местах и их длины больше не сравниваются. */
.funnel {
	display: grid;
	grid-template-columns: minmax(150px, auto) 1fr auto auto;
	align-items: center;
	gap: 8px 12px;
	margin-bottom: 16px;
}

.funnel-stage {
	display: contents;
}

.funnel-label {
	font-size: 12px;
	color: var(--text-secondary);
}

.funnel-track {
	background: color-mix(in oklab, var(--gridline) 60%, transparent);
	border-radius: 5px;
	height: 18px;
	overflow: hidden;
}

.funnel-bar {
	height: 100%;
	border-radius: 5px;
}

.funnel-value {
	font-size: 13px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	text-align: right;
}

.funnel-share {
	font-size: 11px;
	color: var(--text-muted);
	font-variant-numeric: tabular-nums;
	min-width: 88px;
}

.funnel-footnote {
	grid-column: 1 / -1;
	font-size: 11px;
	color: var(--text-muted);
	line-height: 1.6;
	padding-top: 6px;
	border-top: 1px solid var(--gridline);
}

/* --- Кросс-срез --- */

.matrix-wrap {
	overflow-x: auto;
}

.matrix {
	width: auto;
	min-width: 100%;
	border-collapse: separate;
	border-spacing: 2px;
}

.matrix th {
	font-size: 11px;
	font-weight: 600;
	color: var(--text-muted);
	border-bottom: none;
	white-space: nowrap;
	position: static;
}

.matrix th.matrix-row-head {
	text-align: right;
	padding-right: 10px;
	max-width: 180px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.matrix-cell {
	border-bottom: none;
	border-radius: 6px;
	text-align: right;
	min-width: 78px;
	padding: 6px 8px;
	line-height: 1.25;
}

.matrix-cell .v {
	display: block;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
}

/* Число ставок рядом с цветом всегда: клетка на трёх ставках выглядит ровно так же
   убедительно, как на трёхстах, и это единственное, что её выдаёт. */
.matrix-cell .n {
	display: block;
	font-size: 10px;
	color: var(--text-muted);
}

/* Мало ставок — цвет гасится. Не скрывается: клетка существует, просто её оттенок
   пока не аргумент. */
.matrix-cell.thin {
	opacity: 0.45;
}

/* --- Отбор ставок --- */

/* Многострочные списки: выбор из сорока лиг не помещается в выпадашку, а вопрос
   «какие исключить» задают сразу к нескольким. */
.filter-grid select[multiple] {
	padding: 4px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: var(--page);
	color: var(--text-primary);
	font: inherit;
	font-size: 12px;
	width: 100%;
}

.filter-grid select[multiple] option {
	padding: 2px 4px;
	border-radius: 4px;
}

/* Режим стоит под списком, а не рядом: «только эти / кроме этих» меняет смысл выбранного
   выше, и читаться должно сразу после него. */
.filter-grid select.mode {
	margin-top: 4px;
	font-size: 11px;
	padding: 4px 6px;
	border: 1px solid var(--border);
	border-radius: 6px;
	background: var(--surface-1);
	color: var(--text-secondary);
}

.filter-summary {
	font-size: 11px;
	color: var(--text-muted);
	font-weight: 400;
	margin-right: 4px;
}

/* Отбор активен — это должно быть видно, не читая карточку: иначе цифры выше выглядят
   как вся история. */
.filter-summary.active {
	color: var(--series-7);
	font-weight: 600;
}

.exclude-btn {
	font-size: 10px;
	padding: 3px 8px;
}

.matrix-cell.empty-cell {
	background: color-mix(in oklab, var(--gridline) 35%, transparent);
}

/* --- экран входа --------------------------------------------------------------------------- */

.login-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.login-card {
	background: var(--surface-1);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 28px 32px 32px;
	width: 100%;
	max-width: 420px;
	text-align: center;
}

.login-card h1 {
	font-size: 18px;
	margin: 0 0 10px;
}

.login-lead {
	font-size: 13px;
	color: var(--text-secondary);
	line-height: 1.5;
	margin: 0 0 22px;
}

.login-btn {
	width: 100%;
	padding: 11px 14px;
	font-size: 14px;
}

.login-code-label {
	font-size: 12px;
	color: var(--text-muted);
	margin-bottom: 8px;
}

/* Ради этих цифр экран и существует: их сверяют с сообщением в боте, значит они должны читаться
   с расстояния вытянутой руки и не путать 0 с O — отсюда моноширинный шрифт и разрядка. */
.login-code {
	font-family: ui-monospace, "SF Mono", "Cascadia Mono", Consolas, monospace;
	font-size: 38px;
	font-weight: 700;
	letter-spacing: 6px;
	color: var(--series-1);
	margin-bottom: 18px;
}

.login-wait {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 13px;
	color: var(--text-secondary);
	margin-bottom: 18px;
}

.login-spinner {
	width: 13px;
	height: 13px;
	border: 2px solid var(--gridline);
	border-top-color: var(--series-1);
	border-radius: 50%;
	animation: login-spin 0.8s linear infinite;
}

@keyframes login-spin {
	to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
	.login-spinner { animation: none; }
}

.login-error {
	margin-top: 16px;
	font-size: 12px;
	line-height: 1.5;
	color: var(--status-critical);
}

/* Кто вошёл — в шапке рядом с навигацией. Не украшение: в журнале изменений теперь стоит имя, и
   видеть, под кем ты сидишь, надо ДО того, как поменяешь ставку. */
.who {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--text-muted);
}

.who button {
	font-size: 12px;
	padding: 4px 9px;
	background: none;
	border: 1px solid var(--border);
	border-radius: 6px;
	color: var(--text-secondary);
	cursor: pointer;
}
