.umrezz-quiz-root {
	max-width: 640px;
	margin: 0 auto;
	font-family: inherit;
}

.umrezz-quiz-card {
	background: #ffffff;
	border: 1px solid #e6e6e6;
	border-radius: 14px;
	padding: 28px 24px;
	box-shadow: 0 4px 18px rgba(11, 31, 58, 0.08);
}

.umrezz-quiz-title {
	color: #0b1f3a; /* navy */
	font-size: 1.35rem;
	margin: 0 0 10px;
}

.umrezz-quiz-intro,
.umrezz-quiz-desc {
	color: #333;
	line-height: 1.7;
	margin: 0 0 20px;
}

.umrezz-quiz-btn {
	display: inline-block;
	border: none;
	border-radius: 10px;
	padding: 12px 26px;
	font-size: 1rem;
	cursor: pointer;
	text-decoration: none;
}

.umrezz-quiz-btn-primary {
	background: #c9a34e; /* gold */
	color: #0b1f3a;
	font-weight: 700;
}

.umrezz-quiz-btn-primary:hover {
	background: #b5903f;
}

.umrezz-quiz-btn-link {
	background: transparent;
	color: #0b1f3a;
	text-decoration: underline;
	padding: 8px 0;
	display: block;
	margin-top: 10px;
}

.umrezz-quiz-progress-track {
	background: #eee;
	border-radius: 6px;
	height: 8px;
	overflow: hidden;
	margin-bottom: 14px;
}

.umrezz-quiz-progress-fill {
	background: #c9a34e;
	height: 100%;
	transition: width 0.25s ease;
}

.umrezz-quiz-step-label {
	color: #888;
	font-size: 0.85rem;
	margin-bottom: 8px;
}

.umrezz-quiz-question {
	color: #0b1f3a;
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.6;
	margin: 0 0 22px;
}

.umrezz-quiz-scale {
	display: flex;
	gap: 10px;
	justify-content: space-between;
	margin-bottom: 6px;
}

.umrezz-quiz-scale-opt {
	flex: 1;
	border: 2px solid #e0e0e0;
	background: #fafafa;
	color: #0b1f3a;
	border-radius: 10px;
	padding: 14px 0;
	font-size: 1.05rem;
	font-weight: 700;
	cursor: pointer;
}

.umrezz-quiz-scale-opt:hover {
	border-color: #c9a34e;
}

.umrezz-quiz-scale-opt.is-selected {
	background: #0b1f3a;
	border-color: #0b1f3a;
	color: #c9a34e;
}

.umrezz-quiz-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.umrezz-quiz-input {
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 12px 14px;
	font-size: 1rem;
}

.umrezz-quiz-error {
	color: #b32d2e;
	font-size: 0.9rem;
}

.umrezz-quiz-result-code {
	display: inline-block;
	background: #0b1f3a;
	color: #c9a34e;
	font-weight: 800;
	letter-spacing: 2px;
	border-radius: 8px;
	padding: 6px 14px;
	margin-bottom: 14px;
}