/* Clean, compatible, robust styling */
.wheel-visual {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}
.wheel-arrow {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: 36px;
	margin-bottom: -12px;
	z-index: 2;
	position: relative;
}
/* Basic styling for the Wheel of Fortune site */
#app h1 { text-align: center; font-size: 2.2rem; margin-bottom: 24px; color: #2563eb; }
body { font-family: Arial, sans-serif; background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%); margin: 0; padding: 0; }
#app { max-width: 900px; margin: 40px auto; background: #fff; border-radius: 16px; box-shadow: 0 4px 32px rgba(37,99,235,0.10); padding: 32px; }
.wheel-container { display: flex; gap: 32px; align-items: flex-start; justify-content: center; flex-wrap: wrap; }
#wheelCanvas { border: 4px solid #e5e7eb; border-radius: 50%; background: #f3f4f6; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.controls { display: flex; flex-direction: column; gap: 12px; }
#namesInput { width: 220px; font-size: 1rem; padding: 8px; border-radius: 8px; border: 1px solid #d1d5db; box-sizing: border-box; }
#spinBtn { padding: 10px 24px; font-size: 1.1rem; background: #2563eb; color: #fff; border: none; border-radius: 8px; cursor: pointer; transition: background 0.2s; box-shadow: 0 2px 8px rgba(37,99,235,0.08); }
#spinBtn:hover { background: #1d4ed8; }
#winnerDisplay { margin-top: 32px; font-size: 1.5rem; font-weight: bold; color: #16a34a; text-align: center; min-height: 2em; }

@media (max-width: 700px) {
	.wheel-container { flex-direction: column; align-items: center; gap: 20px; }
	#app { padding: 12px; }
	#namesInput { width: 100%; }
}
