.ai-wheel-visualizer {
	border: 1px solid #e1e1e1;
	border-radius: 8px;
	padding: 1.25rem;
	max-width: 420px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.aiwv-label {
	display: block;
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
	color: #333;
}

.aiwv-label span {
	display: block;
	margin-bottom: 0.25rem;
	font-weight: 600;
}

.aiwv-label input,
.aiwv-label select {
	width: 100%;
	padding: 0.55rem;
	border: 1px solid #d5d5d5;
	border-radius: 4px;
	font-size: 1rem;
}

.aiwv-preview {
	min-height: 220px;
	border: 1px dashed #d5d5d5;
	border-radius: 6px;
	margin-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fafafa;
}

.aiwv-preview img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 4px;
	object-fit: contain;
}

.aiwv-placeholder {
	color: #777;
	font-size: 0.9rem;
	text-align: center;
}

.aiwv-status {
	min-height: 1.2rem;
	margin-top: 0.75rem;
	font-size: 0.95rem;
}

.aiwv-progress {
	height: 4px;
	border-radius: 999px;
	background: #e6e6e6;
	margin-top: 1rem;
	overflow: hidden;
	display: none;
}

.aiwv-progress--visible {
	display: block;
}

.aiwv-progress-bar {
	width: 0;
	height: 100%;
	background: linear-gradient(90deg, #0073aa, #00c2ff);
	transition: width 0.3s ease;
}

.aiwv-progress-bar--error {
	background: #d63638;
}

.aiwv-status--loading {
	color: #0073aa;
}

.aiwv-status--error {
	color: #d63638;
}
