/* /Components/Eg/EgAvatar.razor.rz.scp.css */
.eg-avatar[b-2h3w9kaahw] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.eg-avatar-image[b-2h3w9kaahw] {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eg-avatar-initials[b-2h3w9kaahw] {
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1;
	text-transform: uppercase;
}

.eg-avatar-fallback-icon[b-2h3w9kaahw] {
	font-size: inherit;
	line-height: 1;
}

.eg-avatar-small[b-2h3w9kaahw] {
	width: 24px;
	height: 24px;
	font-size: 0.875rem;
}

.eg-avatar-medium[b-2h3w9kaahw] {
	width: 32px;
	height: 32px;
	font-size: 1.125rem;
}

.eg-avatar-large[b-2h3w9kaahw] {
	width: 48px;
	height: 48px;
	font-size: 1.5rem;
}
/* /Components/Eg/EgBottomSheet.razor.rz.scp.css */
.eg-bottom-sheet-overlay[b-p193t4ulw7] {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(2px);
	display: flex;
	justify-content: center;
	z-index: 1000;
}

.eg-bottom-sheet-modal[b-p193t4ulw7] {
	background: var(--eg-palette-surface);
	width: 100%;
	max-width: 600px;
	border-radius: var(--eg-radius-xl) var(--eg-radius-xl) 0 0;
	box-shadow: var(--eg-shadow-elevated);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

@media (min-width: 600px) {
	.eg-bottom-sheet-overlay[b-p193t4ulw7] {
		align-items: center;
	}

	.eg-bottom-sheet-modal[b-p193t4ulw7] {
		border-radius: var(--eg-radius-xl);
		max-height: 90vh;
	}
}

.eg-bottom-sheet-header[b-p193t4ulw7] {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--eg-spacing-md);
	min-height: 56px;
}

.eg-bottom-sheet-body[b-p193t4ulw7] {
	flex: 1;
	overflow-y: auto;
	padding: var(--eg-spacing-md);
	-webkit-overflow-scrolling: touch;
}

.eg-bottom-sheet-footer[b-p193t4ulw7] {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: var(--eg-spacing-sm);
	padding: var(--eg-spacing-md);
	background: var(--eg-palette-surface-accent);
	border-top: 1px solid var(--eg-palette-divider);
}
/* /Components/Eg/EgCheckbox.razor.rz.scp.css */
.eg-checkbox[b-q053vf96e9] {
	display: inline-flex;
	align-items: center;
	gap: var(--eg-spacing-sm);
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	min-height: 48px; /* mobile touch target */
}

/* Hide the native input but keep it accessible */
.eg-checkbox-input[b-q053vf96e9] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Custom tick box */
.eg-checkbox-box[b-q053vf96e9] {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: var(--eg-radius-sm);
	border: 2px solid var(--eg-palette-divider-light);
	background-color: transparent;
	color: #fff;
	transition:
		background-color var(--eg-transition-fast),
		border-color var(--eg-transition-fast),
		box-shadow var(--eg-transition-fast);
}

/* Checked state: fill with the accent colour (driven by Razor class) */
.eg-checkbox-box--checked[b-q053vf96e9] {
	background-color: var(--eg-checkbox-color, var(--eg-palette-primary));
	border-color: var(--eg-checkbox-color, var(--eg-palette-primary));
}

/* Focus-visible ring for keyboard navigation */
.eg-checkbox-input:focus-visible + .eg-checkbox-box[b-q053vf96e9] {
	outline: 2px solid var(--eg-checkbox-color, var(--eg-palette-primary));
	outline-offset: 2px;
}

/* Hover glow */
.eg-checkbox:not(.eg-checkbox-disabled):hover .eg-checkbox-box[b-q053vf96e9] {
	border-color: var(--eg-checkbox-color, var(--eg-palette-primary));
	box-shadow: 0 0 0 4px rgba(var(--eg-color-primary-rgb), 0.14);
}

/* Active press */
.eg-checkbox:not(.eg-checkbox-disabled):active .eg-checkbox-box[b-q053vf96e9] {
	transform: scale(0.92);
}

/* Checkmark icon */
.eg-checkbox-icon[b-q053vf96e9] {
	font-size: 1rem;
	line-height: 1;
	color: #fff;
	display: block;
}

/* Label text */
.eg-checkbox-label[b-q053vf96e9] {
	color: var(--eg-palette-text-primary);
	font-size: 0.9375rem;
	line-height: 1.4;
}

/* Disabled state */
.eg-checkbox-disabled[b-q053vf96e9] {
	cursor: not-allowed;
	opacity: 0.45;
}
/* /Components/Eg/EgConfirmDialog.razor.rz.scp.css */
.eg-confirm-overlay[b-2ddh7szp5p] {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(2px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2000;
	padding: 1rem;
}

[b-2ddh7szp5p] .eg-confirm-card {
	width: 100%;
	max-width: 360px;
	border-radius: var(--eg-radius-xl);
}

.eg-confirm-body[b-2ddh7szp5p] {
	margin-top: 0.25rem;
}
/* /Components/Eg/EgEmptyState.razor.rz.scp.css */
[b-n9bwdhun21] .eg-empty-state {
	border-radius: var(--eg-radius-lg);
	border: 1px dashed var(--eg-palette-divider);
	background: transparent;
	text-align: center;
}

[b-n9bwdhun21] .eg-empty-state-icon {
	font-size: 3rem;
	margin-bottom: var(--eg-spacing-md);
}

[b-n9bwdhun21] .eg-empty-state-title {
	margin-bottom: var(--eg-spacing-sm);
}
/* /Components/Eg/EgInput.razor.rz.scp.css */
/* Wrapper makes the icon anchoring work */
.eg-input-wrapper[b-xczof9xh6e] {
	position: relative;
	display: flex;
	align-items: stretch;
	width: 100%;
}

/* Stretch the input to fill the wrapper */
.eg-input-wrapper input[b-xczof9xh6e] {
	flex: 1;
	min-width: 0; /* prevent overflow in flex containers */
}

/* Icon — absolute, vertically centred */
.eg-input-icon[b-xczof9xh6e] {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.125rem;
	color: var(--eg-palette-text-secondary);
	pointer-events: none;
	user-select: none;
}

.eg-input-icon--start[b-xczof9xh6e] {
	left: 0.75rem;
}

.eg-input-icon--end[b-xczof9xh6e] {
	right: 0.75rem;
}

/* Indent the native input text when icons are present */
.eg-input-wrapper--has-start input[b-xczof9xh6e] {
	padding-left: 2.5rem;
}

.eg-input-wrapper--has-end input[b-xczof9xh6e] {
	padding-right: 2.5rem;
}

.eg-input-suffix[b-xczof9xh6e] {
	position: absolute;
	top: 50%;
	right: 0.75rem;
	transform: translateY(-50%);
	font-size: var(--eg-font-body);
	color: var(--eg-palette-text-secondary);
	pointer-events: none;
	user-select: none;
}
/* /Components/Eg/EgMenu.razor.rz.scp.css */
.eg-menu-root[b-2afmtbgs7x] {
	position: relative;
	display: inline-block;
}

.eg-menu-trigger[b-2afmtbgs7x] {
	display: inline-flex;
}

/* Transparent full-screen backdrop — catches click-outside */
.eg-menu-backdrop[b-2afmtbgs7x] {
	position: fixed;
	inset: 0;
	z-index: 1499;
}

/* Floating panel */
.eg-menu-panel[b-2afmtbgs7x] {
	position: absolute;
	top: calc(100% + 4px);
	z-index: 1500;
	min-width: 180px;
	background-color: var(--eg-palette-surface);
	border: 1px solid var(--eg-palette-divider-light);
	border-radius: var(--eg-radius-md);
	box-shadow: var(--eg-shadow-elevated);
	padding: var(--eg-spacing-xs) 0;
	display: flex;
	flex-direction: column;
	animation: eg-menu-in-b-2afmtbgs7x 120ms ease;
}

.eg-menu-panel--end[b-2afmtbgs7x] {
	right: 0;
}

.eg-menu-panel--start[b-2afmtbgs7x] {
	left: 0;
}

@keyframes eg-menu-in-b-2afmtbgs7x {
	from {
		opacity: 0;
		transform: translateY(-6px) scale(0.97);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
/* /Components/Eg/EgMenuItem.razor.rz.scp.css */
.eg-menu-item[b-mur85ai4x9] {
	display: flex;
	align-items: center;
	gap: var(--eg-spacing-sm);
	width: 100%;
	padding: 0.625rem var(--eg-spacing-md);
	background: none;
	border: none;
	border-radius: 0;
	text-align: left;
	cursor: pointer;
	font-size: 0.9375rem;
	line-height: 1.4;
	white-space: nowrap;
	transition: background-color var(--eg-transition-fast);
}

.eg-menu-item:hover[b-mur85ai4x9] {
	background-color: rgba(255, 255, 255, 0.06);
}

.eg-menu-item:active[b-mur85ai4x9] {
	background-color: rgba(255, 255, 255, 0.1);
}

.eg-menu-item-icon[b-mur85ai4x9] {
	font-size: 1.125rem;
	flex-shrink: 0;
}

.eg-menu-item-label[b-mur85ai4x9] {
	flex: 1;
}

.eg-menu-item-disabled[b-mur85ai4x9] {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}
/* /Components/Eg/EgNumberInput.razor.rz.scp.css */
.eg-input-wrapper[b-xelnivg78p] {
	position: relative;
	display: flex;
	align-items: stretch;
	width: 100%;
}

.eg-input-wrapper input[b-xelnivg78p] {
	flex: 1;
	min-width: 0;
}

.eg-input-wrapper--has-suffix input[b-xelnivg78p] {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.eg-input-suffix[b-xelnivg78p] {
	background: var(--eg-palette-surface-accent);
	border: 1px solid var(--eg-palette-divider-light);
	border-left: none;
	border-radius: 0 var(--eg-radius-md) var(--eg-radius-md) 0;
	color: var(--eg-palette-text-secondary);
	font-size: var(--eg-font-body);
	padding: var(--eg-spacing-sm) var(--eg-spacing-md);
	min-height: var(--eg-touch-min);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	user-select: none;
}
/* /Components/Eg/EgSelect.razor.rz.scp.css */
.eg-select[b-yal1h9c30y] {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--eg-spacing-xs);
}

/* Optional label above the trigger */
.eg-select-label[b-yal1h9c30y] {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--eg-palette-text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Trigger button */
.eg-select-trigger[b-yal1h9c30y] {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--eg-spacing-sm);
	width: 100%;
	padding: 0.625rem var(--eg-spacing-md);
	background-color: var(--eg-palette-surface);
	border: 1px solid var(--eg-palette-divider-light);
	border-radius: var(--eg-radius-md);
	color: var(--eg-palette-text-primary);
	font-size: 0.9375rem;
	text-align: left;
	cursor: pointer;
	transition:
		border-color var(--eg-transition-fast),
		box-shadow var(--eg-transition-fast);
	min-height: 44px;
}

.eg-select-trigger:hover[b-yal1h9c30y] {
	border-color: var(--eg-palette-primary);
}

.eg-select-trigger:focus-visible[b-yal1h9c30y] {
	outline: 2px solid var(--eg-palette-primary);
	outline-offset: 2px;
}

.eg-select-value[b-yal1h9c30y] {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.eg-select-placeholder[b-yal1h9c30y] {
	color: var(--eg-palette-text-secondary);
}

/* Chevron icon */
.eg-select-arrow[b-yal1h9c30y] {
	font-size: 1.25rem;
	color: var(--eg-palette-text-secondary);
	flex-shrink: 0;
	transition: transform var(--eg-transition-fast);
}

.eg-select-arrow--open[b-yal1h9c30y] {
	transform: rotate(180deg);
}

/* Transparent backdrop to close on click-outside */
.eg-select-backdrop[b-yal1h9c30y] {
	position: fixed;
	inset: 0;
	z-index: 1499;
}

/* Dropdown panel */
.eg-select-panel[b-yal1h9c30y] {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	z-index: 1500;
	background-color: var(--eg-palette-surface);
	border: 1px solid var(--eg-palette-divider-light);
	border-radius: var(--eg-radius-md);
	box-shadow: var(--eg-shadow-elevated);
	padding: var(--eg-spacing-xs) 0;
	display: flex;
	flex-direction: column;
	max-height: 280px;
	overflow-y: auto;
	animation: eg-select-in-b-yal1h9c30y 120ms ease;
}

@keyframes eg-select-in-b-yal1h9c30y {
	from {
		opacity: 0;
		transform: translateY(-6px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* Individual option */
.eg-select-option[b-yal1h9c30y] {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--eg-spacing-sm);
	padding: 0.625rem var(--eg-spacing-md);
	background: none;
	border: none;
	width: 100%;
	text-align: left;
	color: var(--eg-palette-text-primary);
	font-size: 0.9375rem;
	cursor: pointer;
	transition: background-color var(--eg-transition-fast);
}

.eg-select-option:hover[b-yal1h9c30y] {
	background-color: rgba(255, 255, 255, 0.06);
}

.eg-select-option:active[b-yal1h9c30y] {
	background-color: rgba(255, 255, 255, 0.1);
}

.eg-select-option--selected[b-yal1h9c30y] {
	color: var(--eg-palette-primary);
	font-weight: 600;
}

.eg-select-option-label[b-yal1h9c30y] {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.eg-select-option-check[b-yal1h9c30y] {
	font-size: 1rem;
	color: var(--eg-palette-primary);
	flex-shrink: 0;
}

/* Disabled state */
.eg-select-disabled[b-yal1h9c30y] {
	opacity: 0.45;
	pointer-events: none;
}
/* /Components/Eg/EgSkiaChartView.razor.rz.scp.css */
/* EgSkiaChartView — themed host for SKCanvasView. The inner
   SKCanvasView renders a <canvas> element with no intrinsic size,
   so the wrapper div provides the layout box. */

.eg-skia-chart[b-m5k6ym5qjk] {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: var(--eg-radius-md);
	background-color: var(--eg-palette-surface-accent);
}

.eg-skia-chart canvas[b-m5k6ym5qjk] {
	display: block;
}

.eg-skia-chart__fallback[b-m5k6ym5qjk] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: var(--eg-spacing-md);
	border: 1px solid var(--eg-palette-divider);
	border-radius: inherit;
	color: var(--eg-palette-text-secondary);
	font-size: var(--eg-font-caption);
	text-align: center;
}
/* /Components/Eg/EgTextarea.razor.rz.scp.css */
.eg-textarea-resize-none[b-onkg2278x9] {
	resize: none;
}

.eg-textarea-resize-both[b-onkg2278x9] {
	resize: both;
}
/* /Components/Eg/EgToggle.razor.rz.scp.css */
.eg-toggle[b-xh6goffd82] {
	display: inline-flex;
	align-items: center;
	gap: var(--eg-spacing-sm);
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	min-height: 48px; /* mobile touch target */
}

/* Hide the native input but keep it accessible */
.eg-toggle-input[b-xh6goffd82] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Pill-shaped track */
.eg-toggle-track[b-xh6goffd82] {
	position: relative;
	flex-shrink: 0;
	width: 44px;
	height: 26px;
	border-radius: var(--eg-radius-pill);
	background-color: var(--eg-palette-divider-light);
	transition:
		background-color var(--eg-transition-fast),
		box-shadow var(--eg-transition-fast);
}

/* On state: fill track with accent colour */
.eg-toggle-track--on[b-xh6goffd82] {
	background-color: var(--eg-toggle-color, var(--eg-palette-primary));
}

/* Sliding thumb */
.eg-toggle-thumb[b-xh6goffd82] {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
	transition: transform var(--eg-transition-fast);
}

/* Slide thumb to the right when on */
.eg-toggle-track--on .eg-toggle-thumb[b-xh6goffd82] {
	transform: translateX(18px);
}

/* Focus-visible ring for keyboard navigation */
.eg-toggle-input:focus-visible + .eg-toggle-track[b-xh6goffd82] {
	outline: 2px solid var(--eg-toggle-color, var(--eg-palette-primary));
	outline-offset: 2px;
}

/* Hover glow */
.eg-toggle:not(.eg-toggle-disabled):hover .eg-toggle-track[b-xh6goffd82] {
	box-shadow: 0 0 0 4px rgba(var(--eg-color-primary-rgb), 0.14);
}

/* Active press — compress the thumb slightly */
.eg-toggle:not(.eg-toggle-disabled):active .eg-toggle-thumb[b-xh6goffd82] {
	width: 24px;
}

/* When pressed in "on" state, thumb grows leftward */
.eg-toggle:not(.eg-toggle-disabled):active .eg-toggle-track--on
	.eg-toggle-thumb[b-xh6goffd82] {
	transform: translateX(14px);
}

/* Label text */
.eg-toggle-label[b-xh6goffd82] {
	color: var(--eg-palette-text-primary);
	font-size: 0.9375rem;
	line-height: 1.4;
}

/* Disabled state */
.eg-toggle-disabled[b-xh6goffd82] {
	cursor: not-allowed;
	opacity: 0.45;
}
/* /Components/Game/SettingsPanel.razor.rz.scp.css */
/* Container is a plain div in this component — gets scoped automatically.
   EgStack's .schniffel-settings-form is a child component element → ::deep. */

.schniffel-settings[b-fpf8aon8zy] {
	max-width: 360px;
	margin: 0 auto;
	align-self: center;
	width: 100%;
	background: var(--eg-palette-surface);
	border: 1px solid var(--eg-palette-divider);
	border-radius: var(--eg-radius-lg);
	box-shadow: var(--eg-shadow-card);
}

.schniffel-settings-content[b-fpf8aon8zy] {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

[b-fpf8aon8zy] .schniffel-settings-form {
	gap: 0.75rem;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.schniffel-app[b-g9i1t9msmn] {
	min-height: 100vh;
	background: var(--eg-palette-background);
	color: var(--eg-palette-text-primary);
	padding-top: 3rem;
}

.schniffel-topbar[b-g9i1t9msmn] {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 100;
	padding: 0.5rem 0.75rem;
	display: flex;
	justify-content: flex-end;
}

/* Push the locale switcher select to a compact size */
.schniffel-topbar[b-g9i1t9msmn]  .locale-switcher {
	min-width: 130px;
}

.schniffel-topbar[b-g9i1t9msmn]  .eg-select-trigger {
	padding: 0.375rem 0.625rem;
	font-size: 0.8125rem;
}
