/* Enforcer.css */

body {
	font-family: "Segoe UI", Tahoma, sans-serif;
	background-color: #1c1c1e;
	color: #f0f0f0;
	margin: 0;
	padding: 2em;
	text-align: center;
}

h1 {
	color: #ffd700;
	margin-bottom: 1em;
}

a {
	text-decoration: none;
	color: gold;
}

/* Canvas-specific styling */
canvas#LayoutCanvas {
	display: block;
	margin: 2em auto;
	background-color: #2a2a2d;
	border-radius: 1em;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);

	/* width: 100%; */ /* optional: control in JS */
	max-width: 95%;	/* remove the clamp */
	height: unset; /* Important: avoid fixed or inherited height */
}

/* Optional status footer */
.status {
	margin-top: 2em;
	color: #aaa;
	font-size: 0.9em;
}

canvas:hover {
	cursor: none;
}

