.hall-canvas-wrap {
	position: relative;
	overflow: auto;
	background: radial-gradient(ellipse at center, var(--bg) 0%, var(--bg-2) 100%), var(--bg-1);
	padding: 24px;
}
.hall-canvas {
	position: relative;
	border-radius: 10px;
	background: var(--bg-1);
	border: 1px solid var(--border);
	transform-origin: top left;
	cursor: default;
	box-shadow:
		0 1px 0 var(--bg) inset,
		0 30px 60px -20px rgba(40, 30, 20, 0.18);
}
.hall-grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(40, 30, 20, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(40, 30, 20, 0.06) 1px, transparent 1px);
	background-size: 20px 20px;
	pointer-events: none;
}
[data-theme="dark"] .hall-grid {
	background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
}

.hall-zone-outline {
	position: absolute;
	border: 1px dashed var(--border-2);
	border-radius: 14px;
	pointer-events: none;
}
.hall-zone-outline.zone-vip {
	border-color: rgba(142, 93, 216, 0.4);
	background: rgba(142, 93, 216, 0.04);
}
.hall-zone-outline.zone-gaming {
	border-color: rgba(216, 165, 80, 0.4);
	background: rgba(216, 165, 80, 0.04);
}
.hall-zone-tag {
	position: absolute;
	top: -10px;
	left: 14px;
	padding: 0 8px;
	font-size: 10px;
	color: var(--fg-mute);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-variant-numeric: tabular-nums;
	background: var(--bg-1);
}

.hall-shape {
	position: absolute;
	border: 1.5px solid;
	border-radius: 8px;
	cursor: move;
	user-select: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 8px;
	transition: box-shadow 0.15s;
}
.hall-shape.shape-round {
	border-radius: 50%;
}
.hall-shape:hover {
	box-shadow: 0 4px 12px -4px rgba(40, 30, 20, 0.18);
}
.hall-shape.selected {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
	z-index: 10;
	box-shadow: 0 0 0 6px rgba(142, 93, 216, 0.15);
}
.hall-shape-label {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: -0.01em;
	text-align: center;
	line-height: 1.15;
}
.hall-shape-seats {
	font-size: 10px;
	display: inline-flex;
	align-items: center;
	gap: 3px;
	opacity: 0.7;
}
.hr-handle {
	position: absolute;
	width: 10px;
	height: 10px;
	background: #fff;
	border: 2px solid var(--accent);
	border-radius: 50%;
	pointer-events: none;
}
.hr-tl {
	top: -6px;
	left: -6px;
}
.hr-tr {
	top: -6px;
	right: -6px;
}
.hr-bl {
	bottom: -6px;
	left: -6px;
}
.hr-br {
	bottom: -6px;
	right: -6px;
}

.hall-empty {
	position: absolute;
	top: 30%;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	pointer-events: none;
}
.hall-empty-arrow {
	font-size: 60px;
	color: var(--accent);
	opacity: 0.7;

	font-style: italic;
}
.hall-empty-text {
	max-width: 280px;
}
.hall-empty-title {
	font-size: 26px;
	font-weight: 500;
	letter-spacing: -0.02em;
}
.hall-empty-title em {
	font-style: italic;
	color: var(--accent);
	font-weight: 400;
}
.hall-empty-sub {
	font-size: 13px;
	color: var(--fg-dim);
	margin-top: 6px;
	line-height: 1.5;
}
