.wheel-of-fortune__controls {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin: 16px 0 12px;
}

.wheel-of-fortune__textarea {
	display: block;
	margin: 12px auto;
	padding: 12px;
	width: 100%;
	max-width: 420px;
	border-radius: var(--radius);
	border: 1px solid var(--webtools-border, var(--border));
	background: var(--webtools-background, #fff);
	color: var(--webtools-text, inherit);
	font-size: 0.95rem;
	resize: vertical;
}

.wheel-of-fortune__wrapper {
	position: relative;
	display: block;
	margin: 20px auto 0;
	text-align: center;
}

#canvas {
	display: block;
	margin: 0 auto;
}

.wheel-of-fortune__result {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--webtools-primary, #e74c3c);
	pointer-events: none;
	background: rgba(255, 255, 255, 0.9);
	padding: 12px 20px;
	border-radius: var(--radius);
	display: none;
	min-width: 140px;
	text-align: center;
}

.pointer { position:absolute; top:-15px; left:50%; transform:translateX(-50%); width:0; height:0; border-left:20px solid transparent; border-right:20px solid transparent; border-top:30px solid #e74c3c; }
@media(max-width:480px){ #canvas { width:300px !important; height:300px !important; } }
@media(max-width:320px){ #canvas { width:250px !important; height:250px !important; } }
