/* hoverHud.css */
/* Compact row/col HUD for .lh-box control container */

#hover-hud {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 2px 6px;
	border-radius: 6px;
	background: #eee;
	border: 1px solid #ccc;
	font: 12px/1.2 ui-monospace, monospace;
	color: #000;
}

#hover-hud .k {
	opacity: .6;
}

#hover-hud .v {
	min-width: 2ch;
	text-align: right;
}

/* #hud-back { pointer-events: none; } */



#gamepadOverlayToggle {
	padding: 0 10px;
	font-size: 13px;
	width: auto;
}

#gamepadOverlayToggle[aria-pressed="true"] {
	background: rgba(0, 102, 255, 0.72);
	border-color: rgba(120, 190, 255, 0.95);
	color: #fff;
	box-shadow: 0 0 8px rgba(0, 102, 255, 0.75);
}

#gamepad-enforcer-overlay {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 10000;
	width: min(95vw, 720px);
	height: auto;
	max-height: 95vh;
	image-rendering: pixelated;
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: 12px;
	box-shadow: 0 0 18px rgba(0, 0, 0, 0.75);
	background: rgba(0, 0, 0, 0.58);
	pointer-events: none;
}

#gamepad-enforcer-overlay[hidden] {
	display: none !important;
}
