:root {
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	color-scheme: dark;
	background: #09111f;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: #202842;
}

button {
	border: 1px solid rgba(148, 163, 184, 0.28);
	background: #12203a;
	color: #e8eef7;
	border-radius: 8px;
	padding: 10px 14px;
	font-weight: 800;
	cursor: pointer;
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid rgba(148, 163, 184, 0.28);
	background: #09111f;
	color: #e8eef7;
	border-radius: 8px;
	padding: 10px 11px;
	font: inherit;
	font-weight: 700;
}

input:focus,
select:focus,
textarea:focus {
	outline: 2px solid rgba(56, 189, 248, 0.42);
	outline-offset: 1px;
}

textarea {
	min-height: 120px;
	resize: vertical;
}

button:hover {
	background: #1a2c4f;
}

button:disabled {
	cursor: wait;
	opacity: 0.62;
}

.compact {
	padding: 6px 9px;
	border-radius: 7px;
	font-size: 0.82rem;
}

.button-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(148, 163, 184, 0.28);
	background: #12203a;
	color: #e8eef7;
	text-decoration: none;
	font-weight: 800;
}

.button-link:hover {
	background: #1a2c4f;
}

.primary {
	border-color: #38bdf8;
	background: #075985;
	color: white;
}

.danger {
	border-color: rgba(248, 113, 113, 0.56);
	background: rgba(127, 29, 29, 0.42);
	color: #fecaca;
}

.danger:hover {
	background: rgba(153, 27, 27, 0.58);
}

.shell {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 292px minmax(0, 1fr);
	background:
		radial-gradient(circle at 28% 0%, rgba(37, 167, 255, 0.14), transparent 30rem),
		radial-gradient(circle at 82% 22%, rgba(96, 165, 250, 0.1), transparent 28rem),
		#202842;
	color: #e5edf8;
}

.sidebar {
	border-right: 1px solid rgba(101, 116, 154, 0.28);
	background: linear-gradient(180deg, #171f36 0%, #121a2d 100%);
	box-shadow: 12px 0 30px rgba(0, 0, 0, 0.22);
	padding: 18px 14px;
	overflow-y: auto;
	scrollbar-color: rgba(116, 154, 215, 0.65) rgba(15, 23, 42, 0.34);
	scrollbar-width: thin;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	color: inherit;
	text-decoration: none;
	margin-bottom: 18px;
	padding: 8px;
	border-radius: 10px;
}

.brand-mark {
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border-radius: 8px;
	background: linear-gradient(135deg, #38bdf8, #60a5fa);
	color: #08111f;
	font-weight: 950;
	box-shadow: 0 10px 24px rgba(37, 167, 255, 0.24);
}

.brand strong {
	display: block;
	font-size: 1rem;
	line-height: 1.1;
}

.brand small {
	display: block;
	color: #9da9c5;
	margin-top: 2px;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
}

.sidebar-menu {
	display: grid;
	gap: 5px;
}

.sidebar-menu__group {
	margin: 14px 8px 5px;
	color: #7f8da8;
	font-size: 0.72rem;
	font-weight: 950;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.sidebar-menu__group--admin {
	color: #facc15;
}

.sidebar-menu a {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	color: #c6d2e5;
	text-decoration: none;
	border-radius: 8px;
	padding: 9px 10px;
	font-weight: 850;
	border: 1px solid transparent;
	min-height: 52px;
}

.sidebar-menu a.active,
.sidebar-menu a:hover {
	background: linear-gradient(90deg, rgba(37, 167, 255, 0.2), rgba(96, 165, 250, 0.12));
	border-color: rgba(56, 189, 248, 0.36);
	color: #ffffff;
}

.sidebar-menu__icon {
	align-items: center;
	background: rgba(16, 25, 44, 0.9);
	border: 1px solid rgba(116, 154, 215, 0.22);
	border-radius: 8px;
	color: #9fd8ff;
	display: inline-flex;
	font-size: 0.72rem;
	font-weight: 950;
	height: 34px;
	justify-content: center;
	line-height: 1;
	width: 34px;
}

.sidebar-menu a.active .sidebar-menu__icon {
	background: rgba(37, 167, 255, 0.14);
	border-color: rgba(56, 189, 248, 0.48);
	color: #bae6fd;
}

.sidebar-menu__text span,
.sidebar-menu__text small {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sidebar-menu__text small {
	color: #8fa0bd;
	font-size: 0.73rem;
	font-weight: 800;
	margin-top: 2px;
}

.sidebar-session {
	margin-top: 10px;
	padding: 8px;
}

.sidebar-session button {
	width: 100%;
	border-color: rgba(248, 113, 113, 0.3);
	background: rgba(127, 29, 29, 0.22);
	color: #fecaca;
}

.sidebar-session button:hover {
	background: rgba(153, 27, 27, 0.36);
}

.content {
	min-width: 0;
	padding: 20px 22px 32px;
	overflow-x: hidden;
}

.admin-layout .admin-menu a {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 12px;
	color: #b9c4df;
	display: flex;
	gap: 0.7rem;
	font-weight: 800;
	min-height: 54px;
	min-width: 0;
	padding: 0.58rem 0.72rem;
	position: relative;
	text-decoration: none;
}

.admin-layout .admin-menu a:hover,
.admin-layout .admin-menu a.active {
	background: #1c243c;
	border-color: rgba(56, 189, 248, 0.44);
	box-shadow: inset 3px 0 0 #38bdf8;
	color: #ffffff;
}

.admin-layout .admin-menu a.active .admin-menu__icon {
	background: rgba(37, 167, 255, 0.14);
	border-color: rgba(56, 189, 248, 0.48);
	color: #bae6fd;
}

.admin-layout .admin-menu a:hover .admin-menu__text small,
.admin-layout .admin-menu a.active .admin-menu__text small {
	color: #b9c4df;
}

.admin-layout.admin-layout--sidebar-collapsed .admin-menu a {
	gap: 0;
	justify-content: center;
	min-height: 48px;
	padding: 0.52rem 0.2rem;
}

.admin-topbar {
	display: grid;
	grid-template-columns: minmax(220px, 0.24fr) minmax(0, 1fr);
	gap: 10px;
	align-items: stretch;
	margin-bottom: 14px;
}

.admin-topbar--manual {
	grid-template-columns: minmax(220px, 320px);
}

.admin-topbar--manual .admin-topbar__badges {
	display: none;
}

.admin-topbar__title,
.topbar-badge {
	border: 1px solid rgba(148, 163, 184, 0.18);
	background: rgba(15, 26, 44, 0.86);
	border-radius: 8px;
	min-width: 0;
	min-height: 72px;
}

.admin-topbar__title {
	display: grid;
	align-content: center;
	padding: 12px;
}

.admin-topbar__title span,
.topbar-badge span {
	color: #9fb0c5;
	font-size: 0.72rem;
	font-weight: 950;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.admin-topbar__title strong {
	color: #e8eef7;
	font-size: 0.98rem;
	margin-top: 4px;
}

.admin-topbar__logout {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.admin-topbar__logout small {
	background: rgba(15, 23, 42, 0.72);
	border: 1px solid rgba(148, 163, 184, 0.22);
	border-radius: 999px;
	color: #cbd5e1;
	font-size: 0.72rem;
	font-weight: 900;
	max-width: 100%;
	overflow: hidden;
	padding: 5px 8px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.admin-topbar__logout button {
	background: rgba(127, 29, 29, 0.28);
	border-color: rgba(248, 113, 113, 0.34);
	border-radius: 999px;
	color: #fecaca;
	font-size: 0.74rem;
	padding: 6px 10px;
}

.admin-topbar__logout button:hover {
	background: rgba(153, 27, 27, 0.42);
}

.admin-topbar__badges {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
	gap: 10px;
	min-width: 0;
}

.topbar-badge {
	display: grid;
	grid-template-rows: auto auto minmax(18px, 1fr) auto;
	gap: 3px;
	color: #e8eef7;
	padding: 10px;
	text-decoration: none;
	transition: border-color 0.16s ease, background 0.16s ease;
}

.topbar-badge:hover {
	border-color: rgba(56, 189, 248, 0.54);
	background: rgba(19, 34, 58, 0.96);
}

.topbar-badge strong {
	color: #f8fafc;
	display: block;
	font-size: 1.08rem;
	line-height: 1.2;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.topbar-badge small {
	color: #9fb0c5;
	display: block;
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1.25;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.topbar-badge em {
	color: #c4d3e7;
	display: block;
	font-size: 0.68rem;
	font-style: normal;
	font-weight: 900;
	line-height: 1.1;
	overflow: hidden;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}

.topbar-badge--healthy {
	border-color: rgba(34, 197, 94, 0.38);
	box-shadow: inset 4px 0 0 rgba(34, 197, 94, 0.82);
}

.topbar-badge--degraded {
	border-color: rgba(250, 204, 21, 0.42);
	box-shadow: inset 4px 0 0 rgba(250, 204, 21, 0.82);
}

.topbar-badge--blocked {
	border-color: rgba(248, 113, 113, 0.46);
	box-shadow: inset 4px 0 0 rgba(248, 113, 113, 0.86);
}

.topbar-badge--unknown {
	border-color: rgba(148, 163, 184, 0.28);
	box-shadow: inset 4px 0 0 rgba(148, 163, 184, 0.62);
}

.auth-layout {
	min-height: 100vh;
	background: #07111f;
	color: #e8eef7;
}

.login-page {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 24px;
}

.login-card {
	width: min(430px, 100%);
	display: grid;
	gap: 14px;
	border: 1px solid rgba(116, 154, 215, 0.28);
	background:
		linear-gradient(135deg, rgba(23, 31, 54, 0.96), rgba(12, 20, 36, 0.98)),
		#0f1a2c;
	border-radius: 12px;
	box-shadow: 0 24px 70px rgba(2, 6, 23, 0.36);
	padding: 24px;
}

.login-card__brand {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 4px;
}

.login-card__brand strong,
.login-card__brand small {
	display: block;
}

.login-card__brand small {
	margin-top: 2px;
	color: #9da9c5;
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
}

.login-card h1 {
	margin-bottom: 0;
}

.login-card p {
	margin-bottom: 2px;
}

.login-error {
	border: 1px solid rgba(248, 113, 113, 0.38);
	background: rgba(127, 29, 29, 0.24);
	color: #fecaca;
	border-radius: 8px;
	padding: 10px 12px;
	font-weight: 850;
}

#blazor-error-ui {
	display: none;
}

#blazor-error-ui.show,
#blazor-error-ui[style*="display: block"],
#blazor-error-ui[style*="display:block"] {
	display: block;
}

.setup-card {
	width: min(560px, 100%);
}

.setup-status-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.setup-status-grid div,
.setup-blocked,
.setup-note {
	border: 1px solid rgba(148, 163, 184, 0.22);
	background: rgba(15, 26, 44, 0.74);
	border-radius: 8px;
	padding: 10px 12px;
}

.setup-status-grid span,
.setup-status-grid strong {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.setup-status-grid span {
	color: #9da9c5;
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
}

.setup-status-grid strong {
	color: #e8eef7;
	font-size: 0.9rem;
	margin-top: 3px;
}

.setup-blocked {
	display: grid;
	gap: 8px;
}

.setup-blocked p {
	margin: 0;
}

.setup-note {
	border-color: rgba(50, 196, 107, 0.34);
	background: rgba(20, 83, 45, 0.22);
	color: #bbf7d0;
	font-weight: 850;
}

.page-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.feed-page-head {
	border: 1px solid rgba(101, 116, 154, 0.24);
	background:
		linear-gradient(135deg, rgba(39, 49, 79, 0.96), rgba(24, 32, 55, 0.96)),
		#27314f;
	border-radius: 10px;
	padding: 14px;
	box-shadow: 0 16px 44px rgba(4, 8, 18, 0.22);
}

.page-kicker {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(56, 189, 248, 0.3);
	background: rgba(37, 167, 255, 0.12);
	border-radius: 999px;
	color: #bae6fd;
	font-size: 0.72rem;
	font-weight: 950;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
	padding: 4px 8px;
	text-transform: uppercase;
}

h1,
h2,
p {
	margin-top: 0;
}

h1 {
	font-size: 1.42rem;
	margin-bottom: 6px;
}

h2 {
	font-size: 1rem;
	margin-bottom: 0;
}

p {
	color: #9fb0c5;
	line-height: 1.55;
}

.metric-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 16px;
}

.metric-grid--wide {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric,
.panel,
.fixture-card {
	border: 1px solid rgba(148, 163, 184, 0.18);
	background: #0f1a2c;
	border-radius: 8px;
}

.metric {
	padding: 14px;
	display: grid;
	gap: 8px;
}

.metric--link {
	color: inherit;
	text-decoration: none;
}

.metric--healthy {
	border-color: rgba(50, 196, 107, 0.42);
}

.metric--degraded {
	border-color: rgba(250, 204, 21, 0.48);
}

.metric--blocked {
	border-color: rgba(248, 113, 113, 0.5);
}

.metric--unknown {
	border-color: rgba(148, 163, 184, 0.28);
}

.metric span {
	color: #9fb0c5;
	font-weight: 700;
}

.metric strong {
	font-size: 1.6rem;
	color: #facc15;
}

.metric small {
	color: #9fb0c5;
	font-size: 0.78rem;
	font-weight: 750;
	line-height: 1.35;
}

.panel {
	padding: 14px;
	margin-bottom: 14px;
	box-shadow: 0 10px 28px rgba(4, 8, 18, 0.14);
}

.panel-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.panel-title > div {
	min-width: 0;
}

.panel-title__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.action-row {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.filter-grid {
	display: grid;
	grid-template-columns: minmax(140px, 0.7fr) repeat(4, minmax(160px, 1fr)) minmax(86px, 0.4fr) auto;
	gap: 10px;
	align-items: end;
	margin-bottom: 14px;
}

.collect-grid {
	display: grid;
	grid-template-columns: minmax(160px, 0.8fr) minmax(140px, 0.6fr) minmax(220px, 1fr) minmax(92px, 0.35fr) auto;
	gap: 10px;
	align-items: end;
}

.field {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.field span {
	color: #9fb0c5;
	font-size: 0.8rem;
	font-weight: 900;
	text-transform: uppercase;
}

.field--short input {
	text-align: right;
}

.field--toggle input {
	width: 32px;
	height: 32px;
	margin: 0;
	accent-color: #38bdf8;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.form-grid label {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.form-grid label > span {
	color: #9fb0c5;
	font-size: 0.8rem;
	font-weight: 900;
	text-transform: uppercase;
}

.checkbox-row {
	align-content: center;
	display: flex !important;
	flex-direction: row;
	gap: 8px !important;
	min-height: 40px;
}

.checkbox-row input {
	accent-color: #38bdf8;
	height: 22px;
	margin: 0;
	width: 22px;
}

.filter-actions {
	display: flex;
	gap: 8px;
	align-items: center;
}

.manual-result-panel {
	border: 1px solid rgba(56, 189, 248, 0.18);
	background: rgba(15, 23, 42, 0.42);
	border-radius: 8px;
	padding: 12px;
	margin: 4px 0 14px;
}

.manual-result-panel__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 12px;
}

.manual-result-panel__head strong {
	color: #e8eef7;
	font-size: 0.92rem;
}

.manual-result-panel__head span {
	color: #9fb0c5;
	font-size: 0.78rem;
	font-weight: 800;
}

.status-line {
	border: 1px solid rgba(34, 197, 94, 0.32);
	background: rgba(22, 101, 52, 0.22);
	color: #bbf7d0;
	border-radius: 8px;
	min-width: 0;
	padding: 10px 12px;
	margin-bottom: 14px;
	font-weight: 800;
	overflow-wrap: anywhere;
}

.feed-section-nav {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 14px;
}

.feed-section-nav__group {
	border: 1px solid rgba(101, 116, 154, 0.24);
	background: rgba(39, 49, 79, 0.78);
	border-radius: 10px;
	padding: 10px;
	min-width: 0;
}

.feed-section-nav__group > strong {
	color: #9da9c5;
	display: block;
	font-size: 0.72rem;
	font-weight: 950;
	letter-spacing: 0.06em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.feed-section-nav__group > div {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(126px, 1fr));
	gap: 7px;
}

.feed-section-nav a {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(116, 154, 215, 0.18);
	background: rgba(14, 22, 39, 0.72);
	border-radius: 8px;
	color: #dbe8ff;
	min-height: 44px;
	padding: 6px 8px;
	text-decoration: none;
}

.feed-section-nav a.active,
.feed-section-nav a:hover {
	border-color: rgba(56, 189, 248, 0.5);
	background: linear-gradient(90deg, rgba(37, 167, 255, 0.2), rgba(96, 165, 250, 0.12));
	color: #ffffff;
}

.feed-section-nav a span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(116, 154, 215, 0.2);
	background: rgba(9, 17, 31, 0.8);
	border-radius: 7px;
	color: #9fd8ff;
	font-size: 0.72rem;
	font-weight: 950;
	height: 30px;
}

.feed-section-nav a small {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 0.78rem;
	font-weight: 900;
}

.category-settings-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 10px;
}

.category-setting-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 86px auto;
	gap: 10px;
	align-items: end;
	border: 1px solid rgba(56, 189, 248, 0.24);
	border-radius: 8px;
	padding: 12px;
	background: rgba(14, 116, 144, 0.13);
}

.category-setting-card strong,
.category-setting-card span {
	display: block;
}

.category-setting-card span {
	margin-top: 4px;
	color: #9fb0c5;
	font-size: 0.82rem;
	font-weight: 800;
}

.category-setting-card--disabled {
	border-color: rgba(148, 163, 184, 0.18);
	background: rgba(51, 65, 85, 0.2);
	opacity: 0.72;
}

.provider-lane-grid {
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.provider-lane-card {
	align-items: start;
	grid-template-columns: minmax(0, 1fr);
}

.provider-lane-card--external {
	background: rgba(59, 130, 246, 0.12);
	border-color: rgba(96, 165, 250, 0.3);
}

.provider-lane-card .signal-row {
	min-width: 0;
}

.provider-lane-card__detail {
	color: #9fb0c5;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.35;
}

.bookmark-draft-preview {
	background: rgba(2, 6, 23, 0.34);
	border: 1px solid rgba(96, 165, 250, 0.2);
	border-radius: 8px;
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 10px;
	padding: 10px;
}

.bookmark-draft-preview header {
	grid-column: 1 / -1;
}

.bookmark-draft-preview header,
.bookmark-draft-preview > div {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.bookmark-draft-preview span {
	color: #93c5fd;
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
}

.bookmark-draft-preview strong,
.bookmark-draft-preview small {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bookmark-draft-preview strong {
	color: #f8fafc;
	font-size: 0.84rem;
}

.bookmark-draft-preview small {
	color: #9fb0c5;
	font-size: 0.74rem;
	font-weight: 800;
}

.health-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 86px;
	border-radius: 999px;
	padding: 5px 9px;
	border: 1px solid rgba(148, 163, 184, 0.2);
	background: rgba(148, 163, 184, 0.12);
	color: #dbeafe;
	font-size: 0.78rem;
	font-weight: 900;
}

.health-pill--healthy {
	border-color: rgba(34, 197, 94, 0.42);
	background: rgba(22, 101, 52, 0.28);
	color: #bbf7d0;
}

.health-pill--degraded {
	border-color: rgba(250, 204, 21, 0.42);
	background: rgba(113, 63, 18, 0.34);
	color: #fde68a;
}

.health-pill--warning {
	border-color: rgba(251, 146, 60, 0.44);
	background: rgba(124, 45, 18, 0.34);
	color: #fed7aa;
}

.health-pill--rate-limited,
.health-pill--blocked {
	border-color: rgba(248, 113, 113, 0.44);
	background: rgba(127, 29, 29, 0.34);
	color: #fecaca;
}

.signal-row {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	min-width: 146px;
}

.signal-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(148, 163, 184, 0.2);
	background: rgba(148, 163, 184, 0.1);
	border-radius: 999px;
	padding: 4px 7px;
	color: #cbd5e1;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.02em;
}

.signal-pill--healthy {
	border-color: rgba(34, 197, 94, 0.36);
	background: rgba(22, 101, 52, 0.22);
	color: #bbf7d0;
}

.signal-pill--muted {
	color: #94a3b8;
	opacity: 0.72;
}

.signal-pill--rate {
	border-color: rgba(250, 204, 21, 0.42);
	background: rgba(113, 63, 18, 0.28);
	color: #fde68a;
}

.signal-pill--warning {
	border-color: rgba(251, 146, 60, 0.42);
	background: rgba(124, 45, 18, 0.28);
	color: #fed7aa;
}

.signal-pill--blocked {
	border-color: rgba(248, 113, 113, 0.44);
	background: rgba(127, 29, 29, 0.3);
	color: #fecaca;
}

.signal-pill--unknown {
	border-color: rgba(148, 163, 184, 0.25);
	background: rgba(51, 65, 85, 0.28);
	color: #dbeafe;
}

.empty {
	margin-bottom: 0;
	border: 1px dashed rgba(148, 163, 184, 0.28);
	border-radius: 8px;
	padding: 18px;
}

.empty--with-action {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
}

.modal-layer {
	align-items: center;
	display: grid;
	inset: 0;
	justify-items: center;
	padding: 18px;
	position: fixed;
	z-index: 50;
}

.modal-backdrop {
	background: rgba(2, 6, 23, 0.7);
	inset: 0;
	position: absolute;
}

.modal-card {
	background: #0f1a2c;
	border: 1px solid rgba(148, 163, 184, 0.28);
	border-radius: 8px;
	box-shadow: 0 26px 80px rgba(0, 0, 0, 0.46);
	display: grid;
	gap: 14px;
	max-height: min(860px, calc(100vh - 36px));
	min-width: 0;
	overflow: hidden;
	padding: 14px;
	position: relative;
	width: min(760px, calc(100vw - 36px));
}

.modal-card--wide {
	width: min(1040px, calc(100vw - 36px));
}

.modal-card__head,
.modal-card__actions {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: space-between;
}

.modal-card__head h2 {
	margin-bottom: 4px;
}

.modal-card__head small {
	color: #9fb0c5;
	font-weight: 800;
}

.modal-form-grid {
	overflow-y: auto;
	padding-right: 3px;
	scrollbar-color: rgba(116, 154, 215, 0.65) rgba(15, 23, 42, 0.34);
	scrollbar-width: thin;
}

.context-menu-dismiss {
	inset: 0;
	position: fixed;
	z-index: 58;
}

.operator-context-menu {
	display: grid;
	gap: 4px;
	min-width: 190px;
	max-width: min(320px, calc(100vw - 24px));
	padding: 8px;
	border: 1px solid rgba(148, 163, 184, 0.28);
	border-radius: 8px;
	background: #0b1220;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.46);
	position: fixed;
	transform: translateY(-2px);
	z-index: 59;
}

.operator-context-menu strong {
	display: block;
	padding: 6px 8px 8px;
	border-bottom: 1px solid rgba(148, 163, 184, 0.14);
	color: #f8fafc;
	font-size: 13px;
	line-height: 1.3;
	overflow-wrap: anywhere;
}

.operator-context-menu button,
.operator-context-menu a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 34px;
	padding: 0 9px;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: #dbeafe;
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	text-align: left;
	text-decoration: none;
}

.operator-context-menu button:hover,
.operator-context-menu a:hover {
	background: rgba(56, 189, 248, 0.14);
	color: #ffffff;
}

.operator-context-menu button.danger {
	color: #fecaca;
}

.operator-context-menu button:disabled {
	cursor: not-allowed;
	opacity: 0.45;
}

.row-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.fixture-list {
	display: grid;
	gap: 12px;
}

.fixture-card {
	padding: 14px;
}

.fixture-card header {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.fixture-card header span,
.fixture-card time {
	display: block;
	color: #96a8bd;
	font-size: 0.9rem;
	margin-top: 4px;
}

.fixture-meta {
	display: flex !important;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}

.fixture-meta span {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: 999px;
	padding: 3px 7px;
	background: rgba(148, 163, 184, 0.08);
}

.fixture-meta .flag-code {
	border-color: rgba(56, 189, 248, 0.28);
	color: #bfdbfe;
	background: rgba(14, 116, 144, 0.16);
}

.fixture-meta .category-code {
	border-color: rgba(250, 204, 21, 0.28);
	color: #fde68a;
	background: rgba(113, 63, 18, 0.2);
}

.market-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 10px;
}

.market {
	border: 1px solid rgba(148, 163, 184, 0.14);
	border-radius: 8px;
	padding: 10px;
	background: #0b1424;
}

.selection-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}

.selection {
	border: 1px solid rgba(56, 189, 248, 0.28);
	background: rgba(14, 116, 144, 0.18);
	border-radius: 7px;
	padding: 7px 9px;
}

.selection strong {
	color: #facc15;
	margin-left: 6px;
}

.table-wrap {
	overflow-x: auto;
	scrollbar-color: #3b82f6 #0b1424;
	scrollbar-width: thin;
}

table {
	width: 100%;
	border-collapse: collapse;
	min-width: 760px;
}

th,
td {
	text-align: left;
	border-bottom: 1px solid rgba(148, 163, 184, 0.14);
	padding: 10px 8px;
}

th {
	color: #9fb0c5;
	font-size: 0.84rem;
	text-transform: uppercase;
}

.selected-row {
	background: rgba(14, 116, 144, 0.24);
}

.archive-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
	gap: 14px;
	align-items: start;
}

.archive-list table {
	min-width: 940px;
}

.odds-compare-grid {
	display: grid;
	grid-template-columns: minmax(320px, 1fr) minmax(120px, 0.22fr) auto;
	gap: 10px;
	align-items: end;
	margin-bottom: 14px;
}

.odds-comparison-head {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
	color: #e8eef7;
}

.odds-comparison-head span,
.odds-comparison-head small,
.inline-muted {
	color: #9fb0c5;
	font-weight: 800;
}

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

.feed-board-shell {
	border: 1px solid rgba(56, 189, 248, 0.24);
	border-radius: 8px;
	background: rgba(11, 19, 34, 0.74);
	box-shadow: 0 18px 46px rgba(4, 8, 18, 0.18);
	margin-bottom: 14px;
	padding: 14px;
}

.result-actions-disclosure > summary {
	cursor: pointer;
	list-style: none;
}

.result-actions-disclosure > summary::-webkit-details-marker {
	display: none;
}

.result-actions-disclosure > summary::after {
	border: 1px solid rgba(96, 165, 250, 0.28);
	border-radius: 8px;
	color: #bfdbfe;
	content: "Open";
	font-size: 0.76rem;
	font-weight: 900;
	padding: 6px 10px;
}

.result-actions-disclosure[open] > summary::after {
	content: "Close";
}

.clickable-row {
	cursor: pointer;
}

.clickable-row:hover {
	background: rgba(56, 189, 248, 0.08);
}

.feed-board-toolbar,
.feed-main-odds__head {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: space-between;
	margin-bottom: 14px;
}

.feed-board-toolbar strong,
.feed-main-odds__head h2 {
	color: #f8fafc;
	display: block;
	margin-bottom: 4px;
}

.feed-board-toolbar small,
.feed-main-odds__head small {
	color: #9fb0c5;
	font-weight: 800;
}

.feed-board-choice-row {
	align-items: start;
	border: 1px solid rgba(96, 165, 250, 0.18);
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.42);
	display: grid;
	gap: 8px;
	grid-template-columns: 96px minmax(0, 1fr);
	margin-bottom: 10px;
	padding: 10px;
}

.feed-board-choice-row > span {
	color: #93c5fd;
	font-size: 0.76rem;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.feed-board-choice-strip,
.feed-board-view-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	min-width: 0;
}

.feed-board-choice-button,
.feed-board-view-shortcut {
	border: 1px solid rgba(96, 165, 250, 0.24);
	border-radius: 8px;
	background: rgba(9, 17, 31, 0.64);
	color: #dbeafe;
	cursor: pointer;
	font: inherit;
	font-size: 0.78rem;
	font-weight: 900;
	min-height: 34px;
	padding: 7px 10px;
	text-align: left;
	transition: border-color 120ms ease, background 120ms ease, color 120ms ease;
}

.feed-board-choice-button:hover,
.feed-board-choice-button.is-active,
.feed-board-view-shortcut:hover,
.feed-board-view-shortcut.is-active {
	border-color: rgba(56, 189, 248, 0.64);
	background: rgba(14, 116, 144, 0.28);
	color: #f8fafc;
}

.feed-board-view-shortcut {
	display: grid;
	gap: 2px;
	min-width: 180px;
	max-width: 280px;
}

.feed-board-view-shortcut strong,
.feed-board-view-shortcut small {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.feed-board-view-shortcut strong {
	color: inherit;
	font-size: 0.82rem;
}

.feed-board-view-shortcut small {
	color: #9fb0c5;
	font-size: 0.72rem;
	font-weight: 800;
}

.feed-board-filters {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 10px;
	align-items: end;
	margin-bottom: 14px;
}

.feed-board-summary-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 10px;
}

.feed-board-summary-grid .metric {
	margin: 0;
	min-width: 0;
}

.feed-board-provider-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 12px;
}

.feed-board-provider-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 10px;
	margin-bottom: 12px;
}

.feed-board-provider-card {
	border: 1px solid rgba(96, 165, 250, 0.2);
	border-radius: 8px;
	background: rgba(9, 17, 31, 0.58);
	display: grid;
	gap: 10px;
	min-width: 0;
	padding: 10px;
}

.feed-board-provider-card--healthy {
	border-color: rgba(34, 197, 94, 0.38);
}

.feed-board-provider-card--pending {
	border-color: rgba(250, 204, 21, 0.34);
}

.feed-board-provider-card--empty {
	border-color: rgba(148, 163, 184, 0.22);
}

.feed-board-provider-card header {
	align-items: flex-start;
	display: flex;
	gap: 8px;
	justify-content: space-between;
	min-width: 0;
}

.feed-board-provider-card header div,
.feed-board-provider-card header strong,
.feed-board-provider-card header small {
	min-width: 0;
}

.feed-board-provider-card header strong,
.feed-board-provider-card > small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.feed-board-provider-card header strong {
	color: #f8fafc;
	font-size: 0.88rem;
}

.feed-board-provider-card header small,
.feed-board-provider-card > small {
	color: #9fb0c5;
	font-size: 0.74rem;
	font-weight: 800;
}

.feed-board-provider-card__metrics {
	display: grid;
	gap: 6px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feed-board-provider-card__metrics span {
	border: 1px solid rgba(148, 163, 184, 0.14);
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.54);
	display: grid;
	gap: 2px;
	min-width: 0;
	padding: 7px;
}

.feed-board-provider-card__metrics strong,
.feed-board-provider-card__metrics small {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.feed-board-provider-card__metrics strong {
	color: #bfdbfe;
	font-size: 0.92rem;
	line-height: 1.1;
}

.feed-board-provider-card__metrics small {
	color: #9fb0c5;
	font-size: 0.64rem;
	font-weight: 900;
	text-transform: uppercase;
}

.feed-provider-evidence-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 6px;
}

.feed-provider-evidence-strip span {
	display: grid;
	gap: 2px;
	min-width: 0;
	padding: 7px;
	border: 1px solid rgba(96, 165, 250, 0.14);
	border-radius: 7px;
	background: rgba(8, 15, 28, 0.5);
}

.feed-provider-evidence-strip strong,
.feed-provider-evidence-strip small {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.feed-provider-evidence-strip strong {
	color: #dbeafe;
	font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
	font-size: 0.76rem;
	line-height: 1.15;
}

.feed-provider-evidence-strip small,
.feed-provider-evidence-actions small {
	color: #8ea7c4;
	font-size: 0.62rem;
	font-weight: 900;
	text-transform: uppercase;
}

.feed-provider-evidence-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-width: 0;
	padding-top: 2px;
}

.feed-provider-evidence-actions > small {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-transform: none;
}

.feed-provider-evidence-actions > div {
	display: flex;
	flex: 0 0 auto;
	gap: 5px;
}

.feed-provider-runtime-strip {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 6px;
}

.feed-provider-runtime-strip > span {
	display: grid;
	gap: 4px;
	min-width: 0;
	padding: 7px;
	border: 1px solid rgba(148, 163, 184, 0.12);
	border-radius: 7px;
	background: rgba(15, 23, 42, 0.48);
}

.feed-provider-runtime-strip strong,
.feed-provider-runtime-strip small {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.feed-provider-runtime-strip strong {
	color: #e8eef7;
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
}

.feed-provider-runtime-strip b {
	width: fit-content;
}

.feed-provider-runtime-strip small {
	color: #8ea7c4;
	font-size: 0.64rem;
	font-weight: 800;
}

.feed-provider-status-breakdown {
	display: grid;
	gap: 9px;
	margin-bottom: 12px;
	padding: 10px;
	border: 1px solid rgba(96, 165, 250, 0.18);
	border-radius: 8px;
	background: rgba(8, 15, 28, 0.58);
}

.feed-provider-status-breakdown > header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-width: 0;
}

.feed-provider-status-breakdown > header strong,
.feed-provider-status-breakdown > header small {
	display: block;
}

.feed-provider-status-breakdown > header strong {
	color: #f8fafc;
	font-size: 0.92rem;
}

.feed-provider-status-breakdown > header small {
	color: #8ea7c4;
	font-size: 0.74rem;
	font-weight: 800;
}

.feed-provider-status-breakdown__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 8px;
}

.feed-provider-status-card {
	display: grid;
	gap: 8px;
	min-width: 0;
	padding: 9px;
	border: 1px solid rgba(148, 163, 184, 0.13);
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.5);
}

.feed-provider-status-card header {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.feed-provider-status-card header strong,
.feed-provider-status-card header small {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.feed-provider-status-card header strong {
	color: #f8fafc;
	font-size: 0.86rem;
}

.feed-provider-status-card header small {
	color: #8ea7c4;
	font-size: 0.72rem;
	font-weight: 800;
}

.feed-provider-status-card > div {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 6px;
}

.feed-provider-status-card > div span {
	display: grid;
	gap: 2px;
	min-width: 0;
	padding: 7px;
	border: 1px solid rgba(148, 163, 184, 0.12);
	border-radius: 7px;
	background: rgba(9, 17, 31, 0.62);
}

.feed-provider-status-card > div span.is-held {
	border-color: rgba(251, 146, 60, 0.32);
	background: rgba(124, 45, 18, 0.18);
}

.feed-provider-status-card > div span.is-published {
	border-color: rgba(34, 197, 94, 0.3);
	background: rgba(22, 101, 52, 0.16);
}

.feed-provider-status-card > div strong,
.feed-provider-status-card > div small {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.feed-provider-status-card > div strong {
	color: #dbeafe;
	font-size: 0.9rem;
	line-height: 1.1;
}

.feed-provider-status-card > div small {
	color: #9fb0c5;
	font-size: 0.62rem;
	font-weight: 900;
	text-transform: uppercase;
}

.feed-board-state {
	border: 1px dashed rgba(148, 163, 184, 0.3);
	border-radius: 8px;
	color: #cbd5e1;
	display: grid;
	gap: 6px;
	font-weight: 800;
	padding: 18px;
}

.feed-board-state strong,
.empty strong {
	color: #f8fafc;
	display: block;
}

.feed-board-state span,
.empty span {
	display: block;
}

.feed-board-state--error {
	border-color: rgba(248, 113, 113, 0.5);
	color: #fecaca;
}

.feed-board-state--warning {
	border-color: rgba(250, 204, 21, 0.48);
	color: #fde68a;
}

.feed-board-state--muted {
	border-color: rgba(148, 163, 184, 0.24);
	color: #cbd5e1;
}

.feed-board-state--compact {
	margin-bottom: 10px;
	padding: 12px;
}

.feed-board-layout {
	align-items: start;
	display: grid;
	grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
	gap: 12px;
}

.feed-game-list {
	border: 1px solid rgba(56, 189, 248, 0.18);
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.54);
	display: grid;
	gap: 12px;
	max-height: min(720px, calc(100vh - 300px));
	min-height: 320px;
	overflow-y: auto;
	padding: 10px;
	scrollbar-color: rgba(96, 165, 250, 0.65) rgba(15, 23, 42, 0.34);
	scrollbar-width: thin;
}

.feed-game-group,
.feed-game-league {
	display: grid;
	gap: 8px;
}

.feed-game-group h3,
.feed-game-league > strong {
	color: #dbeafe;
	font-size: 0.84rem;
	letter-spacing: 0;
	margin: 0;
}

.feed-game-row {
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: 8px;
	background: rgba(9, 17, 31, 0.62);
	cursor: pointer;
	display: grid;
	gap: 6px;
	padding: 10px;
	transition: border-color 120ms ease, background 120ms ease;
}

.feed-game-row:hover,
.feed-game-row.is-active {
	border-color: rgba(96, 165, 250, 0.72);
	background: rgba(30, 41, 59, 0.72);
}

.feed-game-row > div:first-child {
	align-items: center;
	color: #f8fafc;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	min-width: 0;
}

.feed-game-row small,
.feed-game-row__facts,
.feed-game-row__meta {
	color: #9fb0c5;
	font-size: 0.78rem;
	font-weight: 800;
}

.feed-game-row__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.feed-game-row__facts span {
	border: 1px solid rgba(34, 211, 238, 0.2);
	border-radius: 999px;
	background: rgba(8, 47, 73, 0.18);
	color: #bae6fd;
	padding: 2px 7px;
}

.feed-game-row__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.feed-game-row__meta span {
	border: 1px solid rgba(96, 165, 250, 0.2);
	border-radius: 999px;
	padding: 2px 7px;
}

.feed-game-row__odds {
	display: grid;
	gap: 5px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feed-game-row__odd-chip {
	border: 1px solid rgba(96, 165, 250, 0.24);
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.7);
	display: grid;
	gap: 2px;
	min-width: 0;
	padding: 6px 7px;
}

.feed-game-row__odd-chip strong,
.feed-game-row__odd-chip small {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.feed-game-row__odd-chip strong {
	color: #bfdbfe;
	font-size: 0.68rem;
	font-weight: 900;
	text-transform: uppercase;
}

.feed-game-row__odd-chip small {
	color: #e0f2fe;
	font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
	font-size: 0.74rem;
	font-weight: 900;
}

.feed-game-row__odd-chip--active {
	border-color: rgba(34, 197, 94, 0.26);
	background: rgba(20, 83, 45, 0.18);
}

.feed-game-row__odd-chip--suspended {
	border-color: rgba(250, 204, 21, 0.36);
	background: rgba(113, 63, 18, 0.2);
}

.feed-game-row__odd-chip--missing {
	border-color: rgba(148, 163, 184, 0.22);
	background: rgba(15, 23, 42, 0.38);
}

.feed-game-row__odd-chip--missing strong,
.feed-game-row__odd-chip--missing small {
	color: #94a3b8;
}

.feed-odds-status-line {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 6px;
}

.feed-odds-status-line small {
	color: #9fb0c5;
	font-weight: 800;
}

.feed-odds-state {
	align-items: center;
	border: 1px solid rgba(148, 163, 184, 0.28);
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.7rem;
	font-weight: 900;
	justify-content: center;
	line-height: 1.1;
	min-height: 20px;
	padding: 3px 7px;
	text-transform: uppercase;
	white-space: nowrap;
}

.feed-game-row__meta .feed-odds-state,
.betting-market-row__label .feed-odds-state {
	padding: 3px 7px;
}

.betting-market-row__label .feed-odds-state,
.feed-fixture-detail-grid .feed-odds-state {
	justify-self: start;
}

.feed-odds-state--fresh {
	border-color: rgba(34, 197, 94, 0.34);
	background: rgba(22, 101, 52, 0.2);
	color: #bbf7d0;
}

.feed-odds-state--changed {
	border-color: rgba(56, 189, 248, 0.42);
	background: rgba(14, 116, 144, 0.22);
	color: #bae6fd;
}

.feed-odds-state--warning {
	border-color: rgba(250, 204, 21, 0.42);
	background: rgba(113, 63, 18, 0.24);
	color: #fde68a;
}

.feed-odds-state--blocked {
	border-color: rgba(248, 113, 113, 0.44);
	background: rgba(127, 29, 29, 0.28);
	color: #fecaca;
}

.feed-score {
	border: 1px solid rgba(34, 211, 238, 0.34);
	border-radius: 999px;
	color: #bae6fd;
	font-size: 0.76rem;
	font-weight: 900;
	line-height: 1;
	padding: 4px 7px;
	white-space: nowrap;
}

.feed-main-odds {
	border: 1px solid rgba(56, 189, 248, 0.18);
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.54);
	min-width: 0;
	padding: 12px;
}

.feed-board-shell .odds-button {
	border-color: rgba(96, 165, 250, 0.38);
	background: rgba(30, 64, 175, 0.22);
}

.feed-board-shell .odds-button strong {
	color: #bfdbfe;
}

.feed-segmented-control {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 4px;
}

.feed-segmented-control button {
	min-height: 36px;
	border: 1px solid rgba(96, 165, 250, 0.24);
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.62);
	color: #cbd5e1;
	cursor: pointer;
	font: inherit;
	font-size: 0.78rem;
	font-weight: 900;
}

.feed-segmented-control button:hover,
.feed-segmented-control button.is-active {
	border-color: rgba(56, 189, 248, 0.62);
	background: rgba(14, 116, 144, 0.26);
	color: #e0f2fe;
}

.feed-fixture-detail-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.feed-fixture-detail-grid > div {
	border: 1px solid rgba(96, 165, 250, 0.2);
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.58);
	display: grid;
	gap: 4px;
	padding: 10px;
}

.feed-fixture-detail-grid span {
	color: #9fb0c5;
	font-size: 0.78rem;
	font-weight: 800;
}

.feed-fixture-detail-grid strong {
	color: #f8fafc;
}

.feed-fixture-archive-card {
	align-items: center;
	background: rgba(8, 18, 34, 0.68);
	border: 1px solid rgba(56, 189, 248, 0.24);
	border-radius: 8px;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	min-width: 0;
	padding: 10px;
}

.feed-fixture-archive-card > div:first-child {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.feed-fixture-archive-card span,
.feed-fixture-archive-card small,
.feed-fixture-archive-card strong {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.feed-fixture-archive-card span {
	color: #93c5fd;
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
}

.feed-fixture-archive-card strong {
	color: #f8fafc;
}

.feed-fixture-archive-card small {
	color: #9fb0c5;
	font-size: 0.76rem;
	font-weight: 800;
}

.feed-fixture-archive-card .action-row {
	flex: 0 0 auto;
	justify-content: flex-end;
}

.feed-board-layer {
	align-items: stretch;
	justify-items: end;
	overflow: hidden;
	padding: 0;
	overscroll-behavior: contain;
}

.feed-board-drawer {
	border-radius: 8px 0 0 8px;
	max-height: 100vh;
	min-height: 100vh;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-gutter: stable;
	width: min(820px, 100vw);
}

.feed-view-manager-modal {
	max-height: min(920px, calc(100vh - 36px));
	width: min(1180px, calc(100vw - 36px));
}

.feed-view-manager-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(180px, 1fr)) minmax(300px, 1.15fr);
	gap: 12px;
	min-height: 0;
	overflow: hidden;
}

.feed-view-manager-list,
.feed-view-manager-form {
	background: rgba(9, 17, 31, 0.58);
	border: 1px solid rgba(96, 165, 250, 0.2);
	border-radius: 8px;
	display: grid;
	gap: 10px;
	min-width: 0;
	overflow-y: auto;
	padding: 10px;
	scrollbar-color: rgba(116, 154, 215, 0.65) rgba(15, 23, 42, 0.34);
	scrollbar-width: thin;
}

.feed-view-manager-list {
	align-content: start;
	max-height: calc(100vh - 190px);
}

.feed-view-manager-form {
	align-content: start;
	max-height: calc(100vh - 190px);
}

.feed-view-manager-list > header,
.feed-view-manager-form > header {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: space-between;
}

.feed-view-manager-item {
	border: 1px solid rgba(96, 165, 250, 0.18);
	border-radius: 8px;
	display: grid;
	gap: 8px;
	padding: 9px;
}

.feed-view-manager-item.is-disabled {
	opacity: 0.58;
}

.feed-view-manager-item strong,
.feed-view-manager-item small {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.feed-view-manager-item small {
	color: #9fb0c5;
	font-size: 0.76rem;
	font-weight: 800;
	margin-top: 2px;
}

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

.feed-additional-market-list {
	max-height: calc(100vh - 230px);
	overflow-y: auto;
	padding-right: 3px;
}

.api-preview-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 12px;
	min-height: 0;
}

.api-preview-grid section {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.api-preview-grid strong {
	color: #f8fafc;
}

.api-preview-grid pre {
	background: rgba(2, 6, 23, 0.58);
	border: 1px solid rgba(96, 165, 250, 0.22);
	border-radius: 8px;
	color: #dbeafe;
	font-size: 0.78rem;
	line-height: 1.45;
	margin: 0;
	max-height: calc(100vh - 190px);
	overflow: auto;
	padding: 10px;
	white-space: pre-wrap;
	word-break: break-word;
}

.api-preview-grid--single {
	grid-template-columns: 1fr;
}

.feed-handoff-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 12px;
}

.feed-handoff-summary > div {
	display: grid;
	gap: 4px;
	min-width: 0;
	padding: 10px 12px;
	border: 1px solid rgba(148, 163, 184, 0.14);
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.5);
}

.feed-handoff-summary span,
.feed-handoff-id-grid span {
	color: #9fb0c5;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.feed-handoff-summary strong {
	color: #f8fafc;
	font-size: 13px;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.bookmark-workbench {
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
	align-items: start;
}

.bookmark-context-panel {
	align-content: start;
	display: grid;
	gap: 10px;
	position: sticky;
	top: 12px;
}

.bookmark-context-card,
.bookmark-step-card {
	background: rgba(9, 17, 31, 0.74);
	border: 1px solid rgba(96, 165, 250, 0.2);
	border-radius: 8px;
	box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.06);
	display: grid;
	gap: 10px;
	min-width: 0;
	padding: 12px;
}

.bookmark-context-card header,
.bookmark-step-card__head,
.bookmark-view-card__head {
	align-items: flex-start;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	min-width: 0;
}

.bookmark-context-card header > div,
.bookmark-step-card__head > div,
.bookmark-view-card__head > div {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.bookmark-context-card span,
.bookmark-context-facts span,
.bookmark-step-card__head span,
.bookmark-view-card__head span,
.bookmark-view-card__meta span {
	color: #93c5fd;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.bookmark-context-card strong,
.bookmark-context-facts strong,
.bookmark-step-card__head strong,
.bookmark-view-card__head strong,
.bookmark-view-card__meta strong {
	color: #f8fafc;
	font-size: 0.86rem;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.bookmark-context-card small,
.bookmark-context-facts small,
.bookmark-step-card__head small,
.bookmark-view-card__head small,
.bookmark-view-card__meta small {
	color: #9fb0c5;
	font-size: 0.76rem;
	font-weight: 800;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.bookmark-context-grid {
	grid-template-columns: 1fr;
}

.bookmark-tree-card {
	max-height: min(420px, calc(100vh - 260px));
	overflow: hidden;
}

.bookmark-folder-tree {
	display: grid;
	gap: 8px;
	min-width: 0;
	overflow-y: auto;
	padding-right: 2px;
	scrollbar-color: rgba(116, 154, 215, 0.65) rgba(15, 23, 42, 0.34);
	scrollbar-width: thin;
}

.bookmark-folder-node {
	background: rgba(15, 23, 42, 0.42);
	border: 1px solid rgba(148, 163, 184, 0.12);
	border-radius: 8px;
	display: grid;
	gap: 6px;
	min-width: 0;
	padding: 7px;
}

.bookmark-folder-node.is-selected {
	background: rgba(14, 116, 144, 0.16);
	border-color: rgba(56, 189, 248, 0.45);
}

.bookmark-folder-node.is-disabled {
	opacity: 0.62;
}

.bookmark-folder-node__button,
.bookmark-tree-view {
	background: transparent;
	border: 0;
	color: inherit;
	cursor: pointer;
	display: grid;
	min-width: 0;
	padding: 0;
	text-align: left;
}

.bookmark-folder-node__button {
	align-items: center;
	gap: 8px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.bookmark-folder-node__button span,
.bookmark-tree-view {
	gap: 2px;
}

.bookmark-folder-node__button strong,
.bookmark-folder-node__button small,
.bookmark-tree-view span,
.bookmark-tree-view small {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bookmark-folder-node__button em {
	background: rgba(96, 165, 250, 0.12);
	border: 1px solid rgba(96, 165, 250, 0.22);
	border-radius: 999px;
	color: #bfdbfe;
	font-size: 0.68rem;
	font-style: normal;
	font-weight: 900;
	padding: 3px 7px;
}

.bookmark-folder-node__views {
	display: grid;
	gap: 4px;
	margin-left: 10px;
	padding-left: 8px;
	border-left: 1px solid rgba(96, 165, 250, 0.16);
}

.bookmark-tree-view {
	border-radius: 7px;
	padding: 7px 8px;
}

.bookmark-tree-view:hover,
.bookmark-tree-view:focus-visible {
	background: rgba(96, 165, 250, 0.1);
	outline: none;
}

.bookmark-tree-view.is-selected {
	background: rgba(56, 189, 248, 0.18);
	box-shadow: inset 3px 0 0 rgba(56, 189, 248, 0.9);
}

.bookmark-folder-node__empty {
	color: #9fb0c5;
	font-size: 0.76rem;
	font-weight: 800;
	margin: 0 0 0 18px;
}

.bookmark-context-facts {
	display: grid;
	gap: 8px;
}

.bookmark-context-facts > div {
	background: rgba(15, 23, 42, 0.5);
	border: 1px solid rgba(148, 163, 184, 0.12);
	border-radius: 8px;
	display: grid;
	gap: 3px;
	min-width: 0;
	padding: 9px 10px;
}

.bookmark-context-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bookmark-context-actions .compact {
	justify-content: center;
	min-width: 0;
	width: 100%;
}

.bookmark-support-details {
	gap: 8px;
}

.bookmark-support-details summary {
	color: #dbeafe;
	cursor: pointer;
	display: grid;
	gap: 4px;
	list-style: none;
	min-width: 0;
}

.bookmark-support-details summary::-webkit-details-marker {
	display: none;
}

.bookmark-support-details summary span {
	color: #93c5fd;
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
}

.bookmark-support-details summary strong {
	color: #f8fafc;
	font-size: 0.92rem;
}

.bookmark-support-details:not([open]) {
	opacity: 0.84;
}

.bookmark-workflow {
	display: grid;
	gap: 12px;
	min-width: 0;
}

.bookmark-filter-card,
.bookmark-fixture-finder-card {
	align-content: start;
}

.bookmark-filter-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(190px, 0.45fr) minmax(420px, 1fr);
	min-width: 0;
}

.bookmark-filter-block {
	background: rgba(15, 23, 42, 0.42);
	border: 1px solid rgba(148, 163, 184, 0.12);
	border-radius: 8px;
	display: grid;
	gap: 8px;
	min-width: 0;
	padding: 10px;
}

.bookmark-filter-block--wide {
	align-content: start;
}

.bookmark-filter-block span,
.bookmark-fixture-filter-grid span {
	color: #93c5fd;
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
}

.bookmark-filter-block strong {
	color: #f8fafc;
	font-size: 0.86rem;
	overflow-wrap: anywhere;
}

.bookmark-league-toolbar {
	align-items: end;
	display: grid;
	gap: 10px;
	grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
	min-width: 0;
}

.bookmark-league-toolbar label,
.bookmark-fixture-filter-grid label {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.bookmark-league-strip {
	align-content: start;
	max-height: 76px;
	overflow-y: auto;
	padding-right: 2px;
	scrollbar-color: rgba(116, 154, 215, 0.65) rgba(15, 23, 42, 0.34);
	scrollbar-width: thin;
}

.bookmark-query-preview {
	background: rgba(2, 6, 23, 0.38);
	border: 1px solid rgba(96, 165, 250, 0.18);
	border-radius: 8px;
	color: #9fb0c5;
	justify-self: end;
	max-width: min(460px, 100%);
	min-width: 0;
	padding: 8px 10px;
}

.bookmark-query-preview summary {
	color: #dbeafe;
	cursor: pointer;
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
}

.bookmark-query-preview small {
	display: block;
	margin-top: 8px;
	overflow-wrap: anywhere;
	white-space: normal;
}

.bookmark-fixture-filter-grid {
	display: grid;
	gap: 10px;
	grid-template-columns: minmax(170px, 1.3fr) repeat(4, minmax(130px, 1fr));
	min-width: 0;
}

.bookmark-fixture-result-head {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	min-width: 0;
}

.bookmark-fixture-result-head small {
	color: #9fb0c5;
	font-size: 0.76rem;
	font-weight: 800;
}

.bookmark-state-empty {
	background: rgba(15, 23, 42, 0.42);
	border: 1px dashed rgba(96, 165, 250, 0.28);
	border-radius: 8px;
	display: grid;
	gap: 5px;
	min-width: 0;
	padding: 14px;
}

.bookmark-state-empty--error {
	background: rgba(127, 29, 29, 0.16);
	border-color: rgba(248, 113, 113, 0.38);
}

.bookmark-state-empty strong {
	color: #dbeafe;
	font-size: 0.92rem;
}

.bookmark-state-empty--error strong {
	color: #fecaca;
}

.bookmark-state-empty small {
	color: #9fb0c5;
	font-size: 0.78rem;
	line-height: 1.45;
}

.bookmark-fixture-list,
.bookmark-view-list {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.bookmark-fixture-list__head {
	align-items: center;
	background: rgba(15, 23, 42, 0.44);
	border: 1px solid rgba(148, 163, 184, 0.1);
	border-radius: 8px;
	color: #93c5fd;
	display: grid;
	font-size: 0.72rem;
	font-weight: 900;
	gap: 10px;
	grid-template-columns: minmax(76px, 0.45fr) minmax(260px, 1.55fr) minmax(160px, 0.85fr) minmax(132px, 0.72fr) minmax(148px, 0.78fr) minmax(86px, 0.42fr);
	min-width: 0;
	padding: 8px 12px;
	text-transform: uppercase;
}

.bookmark-fixture-row {
	align-items: center;
	background: rgba(8, 15, 28, 0.76);
	border: 1px solid rgba(96, 165, 250, 0.2);
	border-radius: 8px;
	color: inherit;
	cursor: pointer;
	display: grid;
	gap: 10px;
	grid-template-columns: minmax(76px, 0.45fr) minmax(260px, 1.55fr) minmax(160px, 0.85fr) minmax(132px, 0.72fr) minmax(148px, 0.78fr) minmax(86px, 0.42fr);
	min-width: 0;
	padding: 10px 12px;
	text-align: left;
	transition: background 120ms ease, border-color 120ms ease;
	width: 100%;
}

.bookmark-fixture-row:hover,
.bookmark-fixture-row:focus-visible {
	background: rgba(14, 116, 144, 0.18);
	border-color: rgba(56, 189, 248, 0.5);
	outline: none;
}

.bookmark-fixture-row__main,
.bookmark-fixture-row__sport,
.bookmark-fixture-row__league,
.bookmark-fixture-row__time,
.bookmark-fixture-row__provider {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.bookmark-fixture-row__main strong,
.bookmark-fixture-row__main small,
.bookmark-fixture-row__sport,
.bookmark-fixture-row__league,
.bookmark-fixture-row__time,
.bookmark-fixture-row__provider,
.bookmark-fixture-list__head span {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bookmark-fixture-row__main strong {
	color: #f8fafc;
	font-size: 0.92rem;
}

.bookmark-fixture-row__main small,
.bookmark-fixture-row__sport,
.bookmark-fixture-row__league,
.bookmark-fixture-row__time,
.bookmark-fixture-row__provider {
	color: #9fb0c5;
	font-size: 0.76rem;
	font-weight: 800;
}

.bookmark-fixture-row__main small {
	color: #93c5fd;
	text-transform: uppercase;
}

.bookmark-view-card {
	background: rgba(8, 15, 28, 0.82);
	border: 1px solid rgba(96, 165, 250, 0.18);
	border-radius: 8px;
	cursor: pointer;
	display: grid;
	gap: 10px;
	min-width: 0;
	padding: 12px;
	transition: background 120ms ease, border-color 120ms ease;
}

.bookmark-view-card:hover,
.bookmark-view-card:focus-visible {
	background: rgba(14, 116, 144, 0.13);
	border-color: rgba(56, 189, 248, 0.45);
	outline: none;
}

.bookmark-view-card.is-selected {
	background: rgba(14, 116, 144, 0.18);
	border-color: rgba(56, 189, 248, 0.62);
}

.bookmark-view-card__meta {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.bookmark-view-card__meta > div {
	background: rgba(15, 23, 42, 0.5);
	border: 1px solid rgba(148, 163, 184, 0.12);
	border-radius: 8px;
	display: grid;
	gap: 3px;
	min-width: 0;
	padding: 8px 9px;
}

.bookmark-view-card__actions {
	align-items: center;
	display: flex;
	gap: 6px;
	justify-content: flex-end;
}

.bookmark-view-card__actions .compact {
	min-width: 0;
}

.bookmark-view-actions-menu {
	position: relative;
}

.bookmark-view-actions-menu summary {
	align-items: center;
	background: rgba(15, 23, 42, 0.82);
	border: 1px solid rgba(96, 165, 250, 0.24);
	border-radius: 8px;
	color: #dbeafe;
	cursor: pointer;
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 900;
	min-height: 34px;
	padding: 0 10px;
	user-select: none;
}

.bookmark-view-actions-menu[open] summary {
	border-color: rgba(56, 189, 248, 0.55);
}

.bookmark-view-actions-menu > div {
	background: #0b1324;
	border: 1px solid rgba(96, 165, 250, 0.28);
	border-radius: 8px;
	box-shadow: 0 16px 36px rgba(2, 6, 23, 0.48);
	display: grid;
	gap: 6px;
	min-width: 160px;
	padding: 8px;
	position: absolute;
	right: 0;
	top: calc(100% + 6px);
	z-index: 20;
}

.bookmark-view-actions-menu > div .compact {
	justify-content: flex-start;
	width: 100%;
}

.bookmark-folder-actions-menu {
	justify-self: end;
}

.bookmark-folder-actions-menu > div {
	left: auto;
	right: 0;
}

.feed-handoff-id-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 12px;
}

.feed-handoff-id-grid label {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.feed-handoff-id-grid input {
	width: 100%;
	min-width: 0;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
	font-size: 12px;
}

.feed-fixture-id-grid {
	margin-top: 12px;
}

.feed-market-id-grid {
	display: grid;
	grid-column: 2;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 8px;
	min-width: 0;
}

.feed-market-id-grid label {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.feed-market-id-grid span {
	color: #9fb0c5;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.feed-market-id-grid input {
	min-width: 0;
	width: 100%;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
	font-size: 11px;
}

.feed-board-drawer .betting-market-row .betting-selection-grid {
	grid-column: 2;
}

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

.betting-fixture-card {
	min-width: 0;
	border: 1px solid rgba(56, 189, 248, 0.2);
	border-radius: 8px;
	background: rgba(9, 17, 31, 0.68);
	padding: 12px;
	transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.betting-fixture-card:hover {
	border-color: rgba(96, 165, 250, 0.68);
	background: rgba(15, 23, 42, 0.84);
	transform: translateY(-1px);
}

.betting-fixture-card__head {
	display: grid;
	gap: 6px;
	margin-bottom: 12px;
}

.betting-fixture-card__head > div:first-child {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	color: #e8eef7;
}

.betting-fixture-card__head span,
.betting-fixture-card__head small {
	color: #9fb0c5;
	font-weight: 800;
}

.betting-market-list {
	display: grid;
	gap: 10px;
}

.betting-market-row {
	display: grid;
	grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
	gap: 10px;
	align-items: stretch;
}

.betting-market-row__label {
	display: grid;
	align-content: center;
	gap: 4px;
	min-width: 0;
}

.betting-market-row__label strong {
	color: #f8fafc;
}

.betting-market-row__label small {
	color: #9fb0c5;
	font-weight: 800;
}

.betting-selection-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
	gap: 6px;
	min-width: 0;
}

.odds-button {
	display: grid;
	grid-template-rows: minmax(18px, auto) minmax(24px, auto);
	align-content: center;
	gap: 2px;
	min-height: 58px;
	border-color: rgba(34, 197, 94, 0.36);
	background: rgba(22, 101, 52, 0.22);
	text-align: left;
}

.odds-button span,
.odds-button small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.odds-button strong {
	color: #bbf7d0;
	font-size: 1.02rem;
}

.odds-button--suspended {
	border-color: rgba(239, 68, 68, 0.36);
	background: rgba(127, 29, 29, 0.3);
}

.odds-button--suspended strong {
	color: #fecaca;
}

.odds-provider-card {
	min-width: 0;
	border: 1px solid rgba(56, 189, 248, 0.2);
	border-radius: 8px;
	background: rgba(9, 17, 31, 0.58);
	padding: 12px;
}

.odds-provider-card--selected {
	border-color: rgba(34, 197, 94, 0.72);
	box-shadow: inset 4px 0 0 rgba(34, 197, 94, 0.9);
	background: linear-gradient(90deg, rgba(22, 101, 52, 0.28), rgba(9, 17, 31, 0.62) 42%);
}

.odds-provider-card__head {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
}

.odds-provider-card__head strong {
	color: #facc15;
}

.odds-provider-card__head span,
.odds-provider-card__head small {
	border: 1px solid rgba(148, 163, 184, 0.2);
	background: rgba(148, 163, 184, 0.1);
	border-radius: 999px;
	padding: 4px 8px;
	color: #9fb0c5;
	font-weight: 800;
}

.table-wrap--compact table {
	min-width: 560px;
}

.hash-code {
	display: inline-block;
	min-width: 96px;
	text-align: center;
}

.payload-viewer {
	min-width: 0;
}

.payload-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 10px;
	color: #dbeafe;
}

.payload-meta span,
.payload-meta small {
	border: 1px solid rgba(148, 163, 184, 0.2);
	background: rgba(148, 163, 184, 0.1);
	border-radius: 999px;
	padding: 4px 8px;
	color: #9fb0c5;
}

.odds-coverage {
	border: 1px solid rgba(56, 189, 248, 0.22);
	background: rgba(9, 17, 31, 0.66);
	border-radius: 8px;
	padding: 12px;
	margin-bottom: 10px;
}

.odds-coverage__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 10px;
}

.odds-coverage__head strong {
	color: #e8eef7;
}

.odds-coverage__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
}

.odds-coverage__grid div {
	border: 1px solid rgba(148, 163, 184, 0.14);
	background: rgba(15, 26, 44, 0.92);
	border-radius: 8px;
	padding: 9px;
	min-width: 0;
}

.odds-coverage__grid span,
.odds-coverage__issues strong {
	display: block;
	color: #9fb0c5;
	font-size: 0.75rem;
	font-weight: 900;
	text-transform: uppercase;
}

.odds-coverage__grid strong {
	display: block;
	margin-top: 4px;
	color: #facc15;
	font-size: 1.05rem;
}

.odds-coverage__issues {
	display: grid;
	gap: 10px;
	margin-top: 12px;
}

.odds-coverage__issues .signal-row {
	margin-top: 6px;
}

.payload-viewer pre {
	max-height: 420px;
	margin: 0;
	scrollbar-color: #3b82f6 #0b1424;
	scrollbar-width: thin;
}

.api-list {
	display: grid;
	gap: 10px;
}

.evidence-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.evidence-card {
	background: rgba(9, 17, 31, 0.42);
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: 8px;
	display: grid;
	gap: 12px;
	min-width: 0;
	padding: 14px;
}

.evidence-card > strong {
	display: block;
	font-size: 0.94rem;
}

.member-admin-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
	gap: 16px;
	align-items: start;
}

.site-settings-overview {
	margin-bottom: 14px;
}

.site-settings-shell {
	align-items: stretch;
	display: grid;
	gap: 12px;
	grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
	min-height: 0;
}

.site-settings-list {
	align-content: start;
	display: grid;
	gap: 8px;
	max-height: min(440px, calc(100vh - 220px));
	min-height: 0;
	overflow-y: auto;
	padding-right: 3px;
	scrollbar-color: rgba(96, 165, 250, 0.65) rgba(15, 23, 42, 0.34);
	scrollbar-width: thin;
}

.site-settings-card {
	align-items: start;
	background: rgba(15, 26, 44, 0.78);
	border: 1px solid rgba(59, 130, 246, 0.24);
	border-radius: 8px;
	color: #e8eef7;
	cursor: pointer;
	display: grid;
	gap: 8px;
	min-width: 0;
	padding: 11px;
	text-align: left;
}

.site-settings-card:hover,
.site-settings-card.is-active {
	background: linear-gradient(90deg, rgba(8, 145, 178, 0.24), rgba(15, 26, 44, 0.88));
	border-color: rgba(56, 189, 248, 0.72);
}

.site-settings-card.is-disabled {
	opacity: 0.58;
}

.site-settings-card strong,
.site-settings-card small {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.site-settings-card__counts {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.site-settings-card__counts small {
	background: rgba(96, 165, 250, 0.12);
	border: 1px solid rgba(96, 165, 250, 0.18);
	border-radius: 999px;
	color: #bfdbfe;
	font-size: 0.68rem;
	font-weight: 900;
	padding: 3px 7px;
}

.site-settings-detail {
	background: rgba(8, 15, 28, 0.56);
	border: 1px solid rgba(96, 165, 250, 0.18);
	border-radius: 8px;
	display: grid;
	gap: 12px;
	min-width: 0;
	padding: 12px;
}

.site-settings-detail__head {
	align-items: start;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	min-width: 0;
}

.site-settings-detail__head h3 {
	color: #f8fafc;
	font-size: 1.05rem;
	line-height: 1.2;
	margin: 2px 0 3px;
}

.site-settings-detail__head small {
	color: #9fb0c5;
}

.site-settings-detail-grid,
.site-settings-scope-grid {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.site-settings-detail-grid > div,
.site-settings-scope-grid > section {
	background: rgba(15, 23, 42, 0.66);
	border: 1px solid rgba(96, 165, 250, 0.14);
	border-radius: 8px;
	min-width: 0;
	padding: 10px;
}

.site-settings-detail-grid span {
	color: #9fb0c5;
	display: block;
	font-size: 0.74rem;
	font-weight: 850;
	line-height: 1.35;
}

.site-settings-detail-grid strong,
.site-settings-scope-grid strong,
.site-settings-scope-grid small {
	display: block;
	min-width: 0;
	overflow-wrap: anywhere;
}

.site-settings-detail-grid strong {
	color: #f8fafc;
	font-size: 0.9rem;
	line-height: 1.35;
	margin-top: 4px;
}

.site-settings-scope-grid small {
	color: #bfdbfe;
	font-size: 0.78rem;
	line-height: 1.35;
	margin-top: 4px;
}

.site-settings-subscriptions {
	background: rgba(15, 23, 42, 0.66);
	border: 1px solid rgba(96, 165, 250, 0.14);
	border-radius: 8px;
	display: grid;
	gap: 10px;
	min-width: 0;
	padding: 10px;
}

.site-settings-subscriptions > header {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: space-between;
	min-width: 0;
}

.site-settings-subscriptions strong,
.site-settings-subscriptions small {
	display: block;
	min-width: 0;
}

.site-settings-subscriptions small {
	color: #9fb0c5;
	font-size: 0.76rem;
	line-height: 1.35;
}

.site-settings-subscription-list {
	display: grid;
	gap: 8px;
}

.site-settings-subscription-item {
	background: rgba(8, 15, 28, 0.62);
	border: 1px solid rgba(96, 165, 250, 0.16);
	border-radius: 8px;
	display: grid;
	gap: 7px;
	min-width: 0;
	padding: 9px;
}

.site-settings-subscription-item.is-disabled {
	opacity: 0.58;
}

.site-settings-subscription-item code {
	display: block;
	font-size: 0.72rem;
	min-width: 0;
	overflow-wrap: anywhere;
	padding: 7px 8px;
}

.member-admin-panel {
	min-width: 0;
}

.member-admin-panel--wide {
	grid-column: 1 / -1;
}

.member-editor {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 14px;
}

.member-editor--bookmark {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.member-editor--single {
	grid-template-columns: minmax(0, 1fr);
}

.member-editor .filter-actions {
	align-self: end;
}

.member-editor__filter {
	grid-column: 1 / -1;
}

.feed-scope-picker-field {
	gap: 7px;
}

.feed-scope-picker {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	min-width: 0;
}

.feed-scope-picker .compact {
	min-height: 32px;
}

.feed-scope-picker--site-views {
	border-top: 1px solid rgba(96, 165, 250, 0.16);
	padding-top: 7px;
}

.feed-scope-picker--site-views .compact {
	font-size: 0.74rem;
	max-width: 100%;
	overflow-wrap: anywhere;
	white-space: normal;
}

.api-key-policy-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-width: 0;
	border: 1px solid rgba(96, 165, 250, 0.18);
	background: rgba(15, 26, 44, 0.76);
	border-radius: 8px;
	padding: 11px 12px;
}

.api-key-policy-card > div {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.api-key-policy-card span,
.api-key-policy-card small {
	color: #8ea7c4;
	font-size: 0.78rem;
}

.api-key-policy-card strong {
	color: #e8eef7;
	font-size: 0.92rem;
	overflow-wrap: anywhere;
}

.api-key-policy-actions {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
}

.member-management-modal {
	max-height: min(820px, calc(100vh - 36px));
}

.member-editor--dialog,
.collect-grid--dialog,
.odds-compare-grid--dialog {
	margin-bottom: 0;
	max-height: min(620px, calc(100vh - 180px));
	overflow-y: auto;
	padding-right: 4px;
	scrollbar-color: rgba(116, 154, 215, 0.65) rgba(15, 23, 42, 0.34);
	scrollbar-width: thin;
}

.member-card-list {
	display: grid;
	gap: 9px;
}

.member-card {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	text-align: left;
	border: 1px solid rgba(59, 130, 246, 0.24);
	background: rgba(15, 26, 44, 0.78);
	border-radius: 8px;
	padding: 12px;
	color: #e8eef7;
	cursor: pointer;
}

.member-card::after {
	content: "우클릭";
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	border: 1px solid rgba(96, 165, 250, 0.28);
	border-radius: 999px;
	padding: 0 8px;
	color: #bfdbfe;
	font-size: 0.7rem;
	font-weight: 900;
}

.member-card:hover,
.member-card--active {
	border-color: rgba(56, 189, 248, 0.72);
	background: linear-gradient(90deg, rgba(8, 145, 178, 0.24), rgba(15, 26, 44, 0.88));
}

.member-card--disabled {
	opacity: 0.58;
}

.member-bookmark-grid {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.member-bookmark-card {
	background: rgba(9, 17, 31, 0.62);
	border: 1px solid rgba(96, 165, 250, 0.18);
	border-radius: 8px;
	display: grid;
	gap: 9px;
	min-width: 0;
	padding: 11px;
}

.member-bookmark-card.is-disabled {
	opacity: 0.58;
}

.member-bookmark-card header {
	align-items: start;
	display: flex;
	gap: 8px;
	justify-content: space-between;
	min-width: 0;
}

.member-bookmark-card strong,
.member-bookmark-card small {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.member-bookmark-card small {
	color: #9fb0c5;
	font-size: 0.76rem;
}

.member-bookmark-card code {
	display: block;
	font-size: 0.72rem;
	min-width: 0;
	overflow-wrap: anywhere;
	padding: 7px 8px;
}

.member-bookmark-card__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.member-bookmark-card__facts span {
	background: rgba(96, 165, 250, 0.1);
	border: 1px solid rgba(96, 165, 250, 0.14);
	border-radius: 999px;
	color: #bfdbfe;
	font-size: 0.7rem;
	font-weight: 900;
	padding: 3px 7px;
}

.member-event-delivery-detail {
	display: grid;
	gap: 10px;
	margin-top: 12px;
}

.member-event-delivery-detail label,
.member-event-delivery-detail > div {
	background: rgba(9, 17, 31, 0.62);
	border: 1px solid rgba(96, 165, 250, 0.18);
	border-radius: 8px;
	display: grid;
	gap: 6px;
	min-width: 0;
	padding: 10px;
}

.member-event-delivery-detail span {
	color: #93c5fd;
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
}

.member-event-delivery-detail input,
.member-event-delivery-detail pre {
	min-width: 0;
	overflow: auto;
}

.member-event-delivery-detail pre {
	background: rgba(2, 6, 23, 0.52);
	border: 1px solid rgba(96, 165, 250, 0.16);
	border-radius: 8px;
	color: #dbeafe;
	margin: 0;
	max-height: 260px;
	padding: 10px;
	white-space: pre-wrap;
	word-break: break-word;
}

.api-key-secret-once {
	align-items: center;
	display: grid;
	gap: 8px;
	grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr) auto;
}

.api-key-secret-once strong,
.api-key-secret-once small {
	display: block;
}

.api-key-secret-once input {
	font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
	min-width: 0;
}

.member-card strong,
.member-card small {
	display: block;
}

.member-card small,
.member-card__metric {
	color: #9fb0c5;
	font-size: 0.78rem;
	font-weight: 800;
}

.member-card__metric {
	white-space: nowrap;
}

.auto-registration-insights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 14px;
}

.auto-registration-insights section {
	display: grid;
	align-content: start;
	gap: 8px;
	min-width: 0;
	padding: 12px;
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 8px;
	background: rgba(9, 17, 31, 0.56);
}

.auto-registration-insights header,
.auto-registration-insight-row {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.auto-registration-insights header strong,
.auto-registration-insight-row strong {
	color: #f8fafc;
	font-size: 13px;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.auto-registration-insights small,
.auto-registration-insight-row span,
.auto-registration-insight-row small {
	color: #9fb0c5;
	font-size: 11px;
	font-weight: 800;
	overflow-wrap: anywhere;
}

.auto-registration-insight-row {
	padding: 8px;
	border: 1px solid rgba(148, 163, 184, 0.12);
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.3);
}

.auto-registration-insight-row .signal-pill {
	justify-self: start;
	width: fit-content;
}

.auto-registration-insight-row .signal-pill--warning {
	color: #fed7aa;
}

.auto-registration-insight-row .signal-pill--rate {
	color: #fde68a;
}

.auto-registration-reason-line {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	min-width: 0;
}

.auto-registration-reason-line strong {
	flex: 1 1 180px;
	min-width: 0;
}

.auto-registration-gap-list {
	display: grid;
	gap: 10px;
	min-width: 0;
	overflow-y: auto;
	padding: 12px;
}

.auto-registration-gap-card {
	display: grid;
	gap: 9px;
	min-width: 0;
	padding: 12px;
	border: 1px solid rgba(251, 146, 60, 0.22);
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.58);
}

.auto-registration-gap-card header,
.auto-registration-gap-card footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-width: 0;
}

.auto-registration-gap-card > strong {
	color: #f8fafc;
	font-size: 0.95rem;
	overflow-wrap: anywhere;
}

.auto-registration-gap-card > div {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.auto-registration-gap-card span,
.auto-registration-gap-card small {
	color: #9fb0c5;
	font-size: 0.76rem;
	font-weight: 850;
}

.auto-registration-gap-card code {
	min-width: 0;
	overflow-wrap: anywhere;
}

.auto-registration-retry-summary {
	display: grid;
	gap: 4px;
	min-width: 0;
	padding: 10px 12px;
	border: 1px solid rgba(56, 189, 248, 0.24);
	border-radius: 8px;
	background: rgba(14, 116, 144, 0.14);
}

.auto-registration-retry-summary span,
.auto-registration-retry-summary small {
	color: #9fb0c5;
	font-size: 11px;
	font-weight: 800;
	overflow-wrap: anywhere;
}

.auto-registration-retry-summary strong {
	color: #e0f2fe;
	font-size: 13px;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.member-folder-grid {
	grid-template-columns: 1fr;
}

.category-setting-card--selected {
	border-color: rgba(56, 189, 248, 0.78);
	box-shadow: inset 4px 0 0 rgba(56, 189, 248, 0.95);
}

.permission-summary {
	display: grid;
	align-content: center;
	min-height: 58px;
	padding: 10px 12px;
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.28);
}

.permission-summary strong {
	color: #f8fafc;
	font-size: 22px;
	line-height: 1;
}

.permission-summary span {
	margin-top: 4px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
}

.permission-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(320px, 1fr));
	gap: 16px;
	align-items: start;
}

.permission-group {
	min-width: 0;
}

.permission-select-all {
	display: inline-grid;
	grid-template-columns: 16px auto;
	gap: 7px;
	align-items: center;
	min-height: 28px;
	color: #cbd5e1;
	font-size: 12px;
	font-weight: 900;
	white-space: nowrap;
}

.permission-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 12px;
	margin-top: 12px;
}

.permission-option {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	gap: 8px;
	align-items: start;
	min-height: 42px;
	cursor: pointer;
	user-select: none;
}

.permission-option input,
.permission-select-all input {
	width: 16px;
	height: 16px;
	margin: 2px 0 0;
	accent-color: var(--accent);
}

.permission-option strong,
.permission-option small {
	display: block;
}

.permission-option strong {
	color: #e5e7eb;
	font-size: 13px;
	line-height: 1.25;
}

.permission-option small {
	margin-top: 2px;
	color: #93c5fd;
	font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
	font-size: 11px;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.admin-permission-summary {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 14px;
}

.admin-permission-summary div {
	display: grid;
	align-content: center;
	min-height: 72px;
	padding: 12px 14px;
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.34);
}

.admin-permission-summary strong,
.admin-permission-summary span {
	display: block;
}

.admin-permission-summary strong {
	color: #f8fafc;
	font-size: 24px;
	line-height: 1;
}

.admin-permission-summary span {
	margin-top: 7px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.admin-permission-filterbar {
	display: grid;
	grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.2fr);
	gap: 12px;
	align-items: end;
	margin-bottom: 14px;
	padding: 14px;
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 8px;
	background: rgba(9, 17, 31, 0.58);
}

.admin-permission-search {
	display: grid;
	gap: 7px;
	min-width: 0;
	color: #cbd5e1;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.admin-permission-search input {
	width: 100%;
	min-height: 42px;
	padding: 0 12px;
	border: 1px solid rgba(148, 163, 184, 0.28);
	border-radius: 8px;
	background: #09111f;
	color: #f8fafc;
	font: inherit;
	font-size: 14px;
	font-weight: 800;
}

.admin-permission-role-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.admin-permission-role-filter button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	padding: 0 12px;
	border: 1px solid rgba(148, 163, 184, 0.24);
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.32);
	color: #cbd5e1;
	cursor: pointer;
	font: inherit;
	font-size: 12px;
	font-weight: 900;
}

.admin-permission-role-filter button.is-active {
	border-color: rgba(34, 197, 94, 0.52);
	background: rgba(34, 197, 94, 0.13);
	color: #bbf7d0;
}

.admin-permission-role-filter strong {
	min-width: 22px;
	padding: 2px 7px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	text-align: center;
}

.admin-permission-empty,
.admin-permission-user-table-wrap,
.admin-permission-group {
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 8px;
	background: rgba(9, 17, 31, 0.62);
}

.admin-permission-empty {
	display: grid;
	gap: 6px;
	padding: 24px;
}

.admin-permission-empty strong {
	color: #f8fafc;
	font-size: 18px;
}

.admin-permission-empty span {
	color: var(--muted);
}

.admin-permission-user-table-wrap {
	overflow-x: auto;
}

.admin-permission-user-table {
	width: 100%;
	min-width: 860px;
	border-collapse: collapse;
}

.admin-permission-user-table th,
.admin-permission-user-table td {
	padding: 14px 16px;
	border-bottom: 1px solid rgba(148, 163, 184, 0.13);
	text-align: left;
	vertical-align: middle;
}

.admin-permission-user-table th {
	color: #9fb0c5;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.admin-permission-user-table tbody tr:hover {
	background: rgba(34, 197, 94, 0.06);
}

.admin-permission-user-table tbody tr.is-full-access {
	background: rgba(34, 197, 94, 0.05);
}

.admin-permission-user-table td strong,
.admin-permission-user-table td small {
	display: block;
}

.admin-permission-user-table td strong {
	color: #f8fafc;
	font-size: 14px;
}

.admin-permission-user-table td small {
	margin-top: 4px;
	color: #9fb0c5;
	font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
	font-size: 11px;
	overflow-wrap: anywhere;
}

.admin-permission-role-strip,
.admin-permission-row-actions,
.admin-permission-diff-list {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.admin-permission-row-actions {
	justify-content: flex-end;
}

.admin-permission-role-strip span,
.admin-permission-access,
.admin-permission-count {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	border: 1px solid rgba(148, 163, 184, 0.22);
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.26);
	color: #dbeafe;
	font-size: 12px;
	font-weight: 900;
	white-space: nowrap;
}

.admin-permission-access--full,
.admin-permission-role-strip span {
	border-color: rgba(34, 197, 94, 0.36);
	background: rgba(34, 197, 94, 0.11);
	color: #bbf7d0;
}

.admin-permission-button {
	min-height: 36px;
	padding: 0 12px;
	border: 0;
	border-radius: 8px;
	background: var(--accent);
	color: #06211b;
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	font-weight: 900;
	white-space: nowrap;
}

.admin-permission-button--secondary {
	border: 1px solid rgba(56, 189, 248, 0.36);
	background: rgba(56, 189, 248, 0.12);
	color: #d9f1ff;
}

.admin-permission-button:disabled {
	cursor: not-allowed;
	opacity: 0.56;
}

.admin-permission-modal {
	display: flex;
	flex-direction: column;
	width: min(1120px, calc(100vw - 36px));
	max-height: min(880px, calc(100vh - 36px));
}

.admin-permission-modal-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.admin-permission-modal-summary div {
	display: grid;
	align-content: center;
	min-height: 60px;
	padding: 10px 12px;
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.24);
}

.admin-permission-modal-summary strong,
.admin-permission-modal-summary span {
	display: block;
}

.admin-permission-modal-summary strong {
	color: #ffffff;
	font-size: 20px;
	line-height: 1;
}

.admin-permission-modal-summary span {
	margin-top: 7px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.admin-permission-modal-body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 0;
	overflow-y: auto;
	padding-right: 3px;
}

.admin-permission-diff {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.admin-permission-diff > div {
	min-width: 0;
	padding: 12px;
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.24);
}

.admin-permission-diff h3 {
	margin: 0 0 9px;
	color: #f8fafc;
	font-size: 13px;
}

.admin-permission-diff-list span,
.admin-permission-diff-empty {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 9px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 900;
}

.admin-permission-diff-list span {
	border: 1px solid rgba(56, 189, 248, 0.32);
	background: rgba(56, 189, 248, 0.1);
	color: #d9f1ff;
}

.admin-permission-diff-empty {
	border: 1px solid rgba(148, 163, 184, 0.14);
	background: rgba(148, 163, 184, 0.08);
	color: #9fb0c5;
}

.admin-permission-group {
	overflow: hidden;
}

.admin-permission-group header {
	padding: 14px 14px 10px;
	border-bottom: 1px solid rgba(148, 163, 184, 0.14);
	background: rgba(15, 23, 42, 0.18);
}

.admin-permission-group h3 {
	margin: 0;
	color: #f8fafc;
	font-size: 15px;
}

.admin-permission-group p {
	margin: 4px 0 0;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.35;
}

.admin-permission-workflow-list {
	display: grid;
	gap: 14px;
	padding: 14px;
}

.admin-permission-workflow {
	display: grid;
	gap: 8px;
}

.admin-permission-workflow > header {
	display: grid;
	gap: 3px;
	padding: 0 2px;
}

.admin-permission-workflow > header strong {
	color: #7dd3fc;
	font-size: 14px;
	line-height: 1.25;
}

.admin-permission-workflow > header span {
	color: #9fb0c5;
	font-size: 11px;
	line-height: 1.4;
}

.admin-permission-surface-list {
	display: grid;
	gap: 9px;
}

.admin-permission-surface {
	display: grid;
	grid-template-columns: minmax(190px, 0.55fr) minmax(420px, 1.45fr);
	gap: 12px;
	align-items: stretch;
	padding: 11px;
	border: 1px solid rgba(148, 163, 184, 0.15);
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.18);
}

.admin-permission-surface.is-complete {
	border-color: rgba(34, 197, 94, 0.34);
	background: rgba(34, 197, 94, 0.07);
}

.admin-permission-surface.is-partial {
	border-color: rgba(56, 189, 248, 0.34);
	background: rgba(56, 189, 248, 0.06);
}

.admin-permission-surface-title {
	display: grid;
	align-content: center;
	min-width: 0;
}

.admin-permission-surface-title strong,
.admin-permission-surface-title span,
.admin-permission-surface-title small {
	display: block;
}

.admin-permission-surface-title strong {
	color: #f8fafc;
	font-size: 14px;
	line-height: 1.25;
}

.admin-permission-surface-title span {
	margin-top: 4px;
	color: #b8c5d8;
	font-size: 11px;
	line-height: 1.4;
}

.admin-permission-surface-title small {
	margin-top: 6px;
	color: #9fb0c5;
	font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
	font-size: 11px;
	overflow-wrap: anywhere;
}

.admin-permission-action-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
	align-items: stretch;
}

.admin-permission-action-check {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	gap: 8px;
	align-items: start;
	min-height: 54px;
	padding: 9px;
	border: 1px solid rgba(148, 163, 184, 0.14);
	border-radius: 8px;
	background: rgba(31, 39, 64, 0.62);
	cursor: pointer;
	user-select: none;
}

.admin-permission-action-check--grant {
	background: rgba(26, 34, 56, 0.82);
}

.admin-permission-action-check input {
	width: 16px;
	height: 16px;
	margin: 1px 0 0;
	accent-color: var(--accent);
}

.admin-permission-action-check strong,
.admin-permission-action-check small {
	display: block;
}

.admin-permission-action-check strong {
	color: #ecf2ff;
	font-size: 12px;
	line-height: 1.2;
}

.admin-permission-action-check small {
	margin-top: 3px;
	color: #9bd8ff;
	font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
	font-size: 10px;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

code,
pre {
	background: #09111f;
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: 8px;
	color: #bfdbfe;
}

code {
	padding: 8px 10px;
}

pre {
	padding: 14px;
	overflow-x: auto;
}

pre code {
	padding: 0;
	border: 0;
}

/* Sports feed operator board pass. Keep this screen dense and scannable. */
.feed-page-head {
	background: #111b2f;
	border-color: rgba(96, 165, 250, 0.22);
	border-radius: 8px;
	box-shadow: none;
	margin-bottom: 10px;
	padding: 12px;
}

.feed-page-head h1 {
	font-size: 1.18rem;
	line-height: 1.2;
}

.feed-page-head p {
	font-size: 0.86rem;
	line-height: 1.4;
	margin-bottom: 0;
	max-width: 860px;
}

.feed-section-nav {
	background: rgba(8, 15, 28, 0.72);
	border: 1px solid rgba(96, 165, 250, 0.18);
	border-radius: 8px;
	display: flex;
	gap: 8px;
	margin-bottom: 10px;
	overflow-x: auto;
	padding: 8px;
	scrollbar-width: thin;
}

.feed-section-nav__group {
	background: transparent;
	border: 0;
	display: flex;
	flex: 0 0 auto;
	gap: 6px;
	min-width: 0;
	padding: 0;
}

.feed-section-nav__group > strong {
	align-items: center;
	color: #71829f;
	display: inline-flex;
	font-size: 0.68rem;
	margin: 0 2px 0 0;
	min-width: max-content;
}

.feed-section-nav__group > div {
	display: flex;
	gap: 5px;
}

.feed-section-nav a {
	display: flex;
	gap: 6px;
	min-height: 34px;
	min-width: max-content;
	padding: 5px 8px;
}

.feed-section-nav a span {
	border-radius: 6px;
	font-size: 0.68rem;
	height: 24px;
	min-width: 28px;
}

.feed-section-nav a small {
	max-width: 132px;
}

.feed-board-shell {
	background: #0d1526;
	border-color: rgba(96, 165, 250, 0.32);
	box-shadow: 0 14px 34px rgba(2, 6, 23, 0.28);
	padding: 12px;
}

.feed-board-toolbar {
	align-items: center;
	background: rgba(9, 17, 31, 0.72);
	border: 1px solid rgba(96, 165, 250, 0.16);
	border-radius: 8px;
	margin-bottom: 10px;
	padding: 10px 12px;
}

.feed-board-toolbar strong {
	font-size: 1rem;
	line-height: 1.2;
}

.feed-board-toolbar .panel-title__actions,
.feed-main-odds__head .row-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.feed-board-choice-row {
	background: rgba(8, 15, 28, 0.82);
	grid-template-columns: 88px minmax(0, 1fr);
	margin-bottom: 8px;
	padding: 8px 10px;
}

.feed-board-choice-button,
.feed-board-view-shortcut {
	min-height: 30px;
	padding: 6px 9px;
}

.feed-board-filters {
	background: rgba(8, 15, 28, 0.76);
	border: 1px solid rgba(96, 165, 250, 0.18);
	border-radius: 8px;
	grid-template-columns: repeat(6, minmax(128px, 1fr));
	margin-bottom: 10px;
	padding: 10px;
}

.feed-board-filters .field span {
	color: #9fb0c5;
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
}

.feed-board-filters input,
.feed-board-filters select {
	min-height: 36px;
	padding: 8px 9px;
}

.feed-board-filters .filter-actions {
	display: flex;
	gap: 6px;
}

.feed-board-filters .filter-actions button {
	flex: 1 1 auto;
	min-height: 36px;
	padding: 8px 10px;
}

.feed-board-summary-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.feed-board-summary-grid .metric {
	padding: 10px;
}

.feed-board-summary-grid .metric strong {
	font-size: 1.18rem;
}

.feed-board-provider-grid {
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feed-board-layout {
	grid-template-columns: minmax(360px, 440px) minmax(0, 1fr);
	gap: 10px;
}

.feed-game-list,
.feed-main-odds {
	background: #0b1324;
	border-color: rgba(96, 165, 250, 0.26);
	box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.06);
}

.feed-game-list {
	align-content: start;
	gap: 0;
	max-height: calc(100vh - 186px);
	padding: 0;
	position: sticky;
	top: 12px;
}

.feed-game-group {
	gap: 0;
}

.feed-game-group h3 {
	background: #111b2f;
	border-bottom: 1px solid rgba(96, 165, 250, 0.18);
	color: #93c5fd;
	padding: 9px 10px;
	position: sticky;
	top: 0;
	z-index: 2;
}

.feed-game-league {
	gap: 0;
}

.feed-game-league > strong {
	background: rgba(15, 23, 42, 0.92);
	border-bottom: 1px solid rgba(148, 163, 184, 0.1);
	color: #dbeafe;
	padding: 8px 10px 6px;
}

.feed-game-row {
	background: rgba(9, 17, 31, 0.74);
	border-color: transparent;
	border-radius: 0;
	border-bottom-color: rgba(148, 163, 184, 0.12);
	border-left: 3px solid transparent;
	gap: 7px;
	padding: 9px 10px;
}

.feed-game-row:hover,
.feed-game-row.is-active {
	background: rgba(20, 31, 52, 0.96);
	border-color: rgba(96, 165, 250, 0.2);
	border-left-color: #38bdf8;
}

.feed-game-row > div:first-child {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto;
	gap: 6px;
}

.feed-game-row > div:first-child strong {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.feed-game-row > div:first-child span:not(.feed-score) {
	color: #71829f;
	font-size: 0.72rem;
	font-weight: 900;
	justify-self: center;
	text-transform: uppercase;
}

.feed-game-row__facts,
.feed-game-row__meta {
	gap: 4px;
}

.feed-game-row__facts span,
.feed-game-row__meta span {
	border-radius: 6px;
	font-size: 0.68rem;
	padding: 2px 6px;
}

.feed-game-row__odds {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feed-game-row__odd-chip {
	border-radius: 6px;
	padding: 5px 6px;
}

.feed-main-odds {
	max-height: calc(100vh - 186px);
	overflow-y: auto;
	position: sticky;
	top: 12px;
}

.feed-main-odds__head {
	background: #111b2f;
	border: 1px solid rgba(96, 165, 250, 0.18);
	border-radius: 8px;
	margin-bottom: 10px;
	padding: 10px;
	position: sticky;
	top: 0;
	z-index: 2;
}

.feed-main-odds__head h2 {
	font-size: 1.04rem;
	line-height: 1.25;
	margin: 2px 0 3px;
}

.betting-market-list {
	gap: 8px;
}

.betting-market-row {
	background: rgba(8, 15, 28, 0.72);
	border: 1px solid rgba(96, 165, 250, 0.16);
	border-radius: 8px;
	grid-template-columns: minmax(150px, 0.25fr) minmax(0, 1fr);
	padding: 8px;
}

.betting-market-row__label {
	border-right: 1px solid rgba(96, 165, 250, 0.14);
	padding-right: 8px;
}

.betting-market-row__label strong {
	font-size: 0.9rem;
	line-height: 1.2;
}

.betting-market-row__label small {
	font-size: 0.72rem;
	line-height: 1.25;
}

.betting-selection-grid {
	grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
	min-width: 0;
}

.feed-board-shell .odds-button {
	align-content: center;
	border-radius: 7px;
	justify-items: start;
	min-height: 54px;
	min-width: 0;
	padding: 8px 9px;
}

.feed-board-shell .odds-button:hover {
	background: rgba(37, 99, 235, 0.34);
	border-color: rgba(147, 197, 253, 0.62);
}

.feed-board-shell .odds-button span {
	color: #cbd5e1;
	font-size: 0.74rem;
	font-weight: 850;
	max-width: 100%;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.feed-board-shell .odds-button strong {
	font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
	font-size: 1.08rem;
	line-height: 1.1;
	max-width: 100%;
	overflow-wrap: anywhere;
}

.feed-board-layer {
	background: rgba(2, 6, 23, 0.36);
}

.feed-board-drawer {
	background: #0b1324;
	border-left: 1px solid rgba(96, 165, 250, 0.28);
	border-radius: 0;
	box-shadow: -18px 0 48px rgba(2, 6, 23, 0.46);
	width: min(980px, 100vw);
}

.feed-board-drawer .modal-card__head {
	background: #111b2f;
	position: sticky;
	top: 0;
	z-index: 3;
}

.feed-fixture-detail-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feed-fixture-detail-grid > div {
	background: rgba(8, 15, 28, 0.74);
}

.feed-additional-market-list {
	max-height: calc(100vh - 190px);
}

.feed-additional-filterbar {
	display: grid;
	gap: 8px;
	grid-template-columns: minmax(0, 1fr) minmax(150px, 0.28fr);
	margin-bottom: 10px;
}

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

	.sidebar {
		border-right: 0;
		border-bottom: 1px solid rgba(148, 163, 184, 0.16);
	}

	.sidebar-menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sidebar-menu__group {
		grid-column: 1 / -1;
	}

	.page-head,
	.fixture-card header {
		display: grid;
	}

	.feed-section-nav {
		grid-template-columns: 1fr;
	}

	.admin-topbar {
		grid-template-columns: 1fr;
	}

	.metric-grid {
		grid-template-columns: 1fr;
	}

	.evidence-grid {
		grid-template-columns: 1fr;
	}

	.archive-layout {
		grid-template-columns: 1fr;
	}

	.filter-grid {
		grid-template-columns: 1fr;
	}

	.collect-grid {
		grid-template-columns: 1fr;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.odds-compare-grid {
		grid-template-columns: 1fr;
	}

	.feed-board-filters,
	.feed-board-summary-grid,
	.feed-board-provider-grid,
	.feed-board-layout,
	.feed-additional-filterbar,
	.site-settings-shell,
	.site-settings-detail-grid,
	.site-settings-scope-grid,
	.api-key-secret-once,
	.feed-view-manager-grid,
	.feed-fixture-detail-grid,
	.feed-handoff-summary,
	.feed-handoff-id-grid,
	.feed-market-id-grid,
	.api-preview-grid,
	.bookmark-workbench,
	.bookmark-view-card__meta,
	.bookmark-draft-preview,
	.auto-registration-insights {
		grid-template-columns: 1fr;
	}

	.bookmark-context-panel {
		position: static;
		top: auto;
	}

	.bookmark-context-actions,
	.bookmark-fixture-row,
	.bookmark-filter-grid,
	.bookmark-league-toolbar,
	.bookmark-fixture-filter-grid {
		grid-template-columns: 1fr;
	}

	.bookmark-fixture-list__head {
		display: none;
	}

	.bookmark-fixture-row__main strong,
	.bookmark-fixture-row__main small,
	.bookmark-fixture-row__sport,
	.bookmark-fixture-row__league,
	.bookmark-fixture-row__time,
	.bookmark-fixture-row__provider {
		white-space: normal;
	}

	.bookmark-query-preview {
		justify-self: stretch;
	}

	.bookmark-fixture-result-head {
		align-items: stretch;
		display: grid;
	}

	.bookmark-view-card__head,
	.bookmark-step-card__head {
		display: grid;
	}

	.site-settings-detail__head {
		display: grid;
	}

	.site-settings-subscriptions > header {
		align-items: stretch;
		display: grid;
	}

	.feed-market-id-grid,
	.feed-board-drawer .betting-market-row .betting-selection-grid {
		grid-column: 1;
	}

	.feed-board-choice-row {
		grid-template-columns: 1fr;
	}

	.feed-board-choice-strip,
	.feed-board-view-strip {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 2px;
		scrollbar-width: thin;
	}

	.feed-board-choice-button {
		flex: 0 0 auto;
	}

	.feed-fixture-archive-card {
		align-items: stretch;
		display: grid;
		grid-template-columns: minmax(0, 1fr);
	}

	.feed-fixture-archive-card > div,
	.feed-fixture-archive-card .form-grid,
	.feed-fixture-archive-card .filter-actions {
		min-width: 0;
	}

	.feed-fixture-archive-card .feed-board-choice-strip {
		flex-wrap: wrap;
		overflow-x: visible;
	}

	.feed-fixture-archive-card .feed-board-choice-button {
		flex: 1 1 calc(50% - 6px);
		min-width: 0;
		text-align: center;
		white-space: normal;
		word-break: keep-all;
	}

	.feed-fixture-archive-card .filter-actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.feed-fixture-archive-card .filter-actions .signal-pill {
		grid-column: 1 / -1;
		min-width: 0;
		white-space: normal;
	}

	.feed-fixture-archive-card small {
		white-space: normal;
	}

	.feed-board-view-shortcut {
		flex: 0 0 220px;
	}

	.feed-board-provider-card__metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.feed-game-list {
		max-height: 420px;
		min-height: 220px;
		position: static;
		top: auto;
	}

	.feed-main-odds {
		max-height: none;
		overflow: visible;
		position: static;
		top: auto;
	}

	.feed-main-odds__head {
		position: static;
		top: auto;
	}

	.betting-market-row__label {
		border-right: 0;
		border-bottom: 1px solid rgba(96, 165, 250, 0.14);
		padding: 0 0 8px;
	}

	.feed-board-drawer {
		border-radius: 8px 8px 0 0;
		scrollbar-gutter: auto;
		width: 100%;
	}

	.betting-board {
		grid-template-columns: 1fr;
	}

	.betting-market-row {
		grid-template-columns: 1fr;
	}

	.odds-coverage__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.member-admin-layout,
	.member-editor,
	.member-editor--bookmark,
	.permission-grid,
	.permission-options {
		grid-template-columns: 1fr;
	}

	.admin-permission-summary,
	.admin-permission-filterbar,
	.admin-permission-modal-summary,
	.admin-permission-diff,
	.admin-permission-surface,
	.admin-permission-action-grid {
		grid-template-columns: 1fr;
	}

	.admin-permission-role-filter {
		justify-content: flex-start;
	}

	.admin-permission-user-table,
	.admin-permission-user-table thead,
	.admin-permission-user-table tbody,
	.admin-permission-user-table tr,
	.admin-permission-user-table th,
	.admin-permission-user-table td {
		display: block;
	}

	.admin-permission-user-table {
		min-width: 0;
	}

	.admin-permission-user-table thead {
		display: none;
	}

	.admin-permission-user-table tr {
		padding: 12px;
		border-bottom: 1px solid rgba(148, 163, 184, 0.13);
	}

	.admin-permission-user-table td {
		padding: 8px 0;
		border-bottom: 0;
	}

	.admin-permission-row-actions {
		justify-content: stretch;
	}

	.admin-permission-button {
		flex: 1;
	}

	.member-admin-panel--wide {
		grid-column: auto;
	}

	.filter-actions {
		justify-content: stretch;
	}

	.filter-actions button {
		flex: 1;
	}
}

@media (max-width: 560px) {
	.sidebar-menu {
		grid-template-columns: 1fr;
	}
}
