.wcpu-stage {
	position: relative;
	width: 100%;
	margin-bottom: 8px;
}

.wcpu-stage-canvas {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
	background: #eee;
}

.wcpu-room-picker {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 10px;
}

.wcpu-room-thumb {
	flex: 0 0 auto;
	padding: 2px;
	border: 2px solid transparent;
	border-radius: 6px;
	background: none;
	cursor: pointer;
	line-height: 0;
}

.wcpu-room-thumb img {
	width: 100px !important;
	height: 100px !important;
	max-width: 100px !important;
	max-height: 100px !important;
	object-fit: cover !important;
	border-radius: 4px;
	display: block;
}

.wcpu-room-thumb.active {
	border-color: #2271b1;
}

.wcpu-room-thumb:hover {
	border-color: #999;
}

.wcpu-room-thumb.active:hover {
	border-color: #2271b1;
}

/* ---------------------------------------------------------------------
 * Click-to-enlarge overlay (our own composite, never the theme's zoom)
 * ------------------------------------------------------------------- */

.wcpu-zoom-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba( 0, 0, 0, 0.82 );
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: zoom-out;
	padding: 20px;
	box-sizing: border-box;
}

.wcpu-zoom-overlay canvas {
	max-width: 100%;
	max-height: 100%;
	border-radius: 6px;
	box-shadow: 0 10px 40px rgba( 0, 0, 0, 0.5 );
}
