.hatchodia-configurator {
	margin: 20px 0;
}

.hatchodia-login-required {
	padding: 20px;
	background: #f8f8f8;
	border: 1px solid #ddd;
	border-radius: 4px;
	text-align: center;
}

.hatchodia-upload-zone {
	border: 2px dashed #ccc;
	border-radius: 6px;
	padding: 40px 20px;
	text-align: center;
	transition: border-color 0.2s;
	background: #fafafa;
}

.hatchodia-upload-zone.hatchodia-dragover {
	border-color: #0073aa;
	background: #f0f7ff;
}

.hatchodia-upload-prompt {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.hatchodia-upload-hint {
	font-size: 0.85em;
	color: #888;
	margin: 0;
}

.hatchodia-upload-spinner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: #555;
}

.hatchodia-upload-error {
	margin-top: 12px;
	padding: 10px 14px;
	background: #fef0f0;
	border: 1px solid #f5a0a0;
	border-radius: 4px;
	color: #c00;
	font-size: 0.9em;
}

.hatchodia-canvas-wrapper {
	margin-top: 20px;
}

#hatchodia-canvas {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hatchodia-canvas-wrapper {
	margin-top: 20px;
	width: 100%;
	overflow: hidden;
}

#hatchodia-canvas {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hatchodia-progress {
	width: 100%;
	height: 6px;
	background: #e0e0e0;
	border-radius: 3px;
	overflow: hidden;
	margin-bottom: 10px;
}

.hatchodia-progress-bar {
	height: 100%;
	width: 0%;
	background: #0073aa;
	border-radius: 3px;
	transition: width 0.4s ease;
}

.hatchodia-progress-label {
	font-size: 0.9em;
	color: #555;
	margin: 0;
	text-align: center;
}