.tc-quiz-wrap {
	max-width: 720px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.tc-hidden {
	display: none !important;
}
.tc-cover-wrap {
	text-align: center;
	margin-bottom: 24px;
}
.tc-cover-img {
	max-width: 180px;
	width: 100%;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

/* --- Launcher "tab" card: the collapsed entry point into the form --- */
.tc-launcher {
	text-align: center;
	padding: 28px 24px;
	border: 1px solid #e2e2e2;
	border-radius: 12px;
	background: #fafafa;
}
.tc-launcher-title {
	margin: 0 0 8px;
	color: #1f4680;
}
.tc-launcher-desc {
	color: #555;
	max-width: 480px;
	margin: 0 auto 18px;
}
.tc-start-btn {
	display: inline-block;
	padding: 12px 28px;
	background: #2b5aa0;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
}
.tc-start-btn:hover {
	background: #1f4680;
}

/* --- Progress indicator above the wizard steps --- */
.tc-progress {
	margin-bottom: 20px;
}
.tc-progress-label {
	font-size: 13px;
	color: #777;
	margin-bottom: 6px;
	text-align: right;
}
.tc-progress-track {
	height: 6px;
	border-radius: 4px;
	background: #e6e6e6;
	overflow: hidden;
}
.tc-progress-fill {
	height: 100%;
	background: #2b5aa0;
	border-radius: 4px;
	transition: width 0.25s ease;
}

.tc-field {
	margin-bottom: 16px;
}
.tc-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 4px;
}
.tc-field input {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	box-sizing: border-box;
}
.tc-field input.tc-input-error {
	border-color: #c0392b;
}
.tc-category-step {
	margin: 0 0 28px;
	padding: 18px;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	background: #fafafa;
}
.tc-category-step h3 {
	margin-top: 0;
}
.tc-cat-desc {
	color: #666;
	font-size: 14px;
	margin-top: -6px;
}
.tc-question {
	margin: 18px 0;
}
.tc-question-text {
	font-weight: 600;
	margin-bottom: 8px;
}
.tc-options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.tc-option {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border: 1px solid #ddd;
	border-radius: 20px;
	background: #fff;
	cursor: pointer;
	font-size: 14px;
}
.tc-option input {
	margin: 0;
}
.tc-step-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 10px;
}
.tc-step-actions-start {
	justify-content: flex-end;
}
.tc-cat-summary {
	flex: 1;
	font-size: 14px;
	font-weight: 600;
	color: #2f8f3e;
	background: #eef6ec;
	border: 1px solid #cfe8c9;
	border-radius: 8px;
	padding: 8px 12px;
}
.tc-cat-summary-icon {
	display: inline-block;
	margin-right: 4px;
}
.tc-cat-summary-quote {
	display: block;
	margin-top: 6px;
	font-style: italic;
	font-weight: 400;
	color: #4a7a52;
}
.tc-next-btn {
	display: inline-block;
	padding: 12px 28px;
	background: #2b5aa0;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
	white-space: nowrap;
}
.tc-next-btn:hover {
	background: #1f4680;
}
.tc-next-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
.tc-back-btn {
	display: inline-block;
	padding: 12px 20px;
	background: transparent;
	color: #555;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 14px;
	cursor: pointer;
	white-space: nowrap;
}
.tc-back-btn:hover {
	background: #f0f0f0;
}
#tc-result {
	margin-top: 24px;
	padding: 20px;
	border-radius: 10px;
	background: #eef6ec;
	border: 1px solid #cfe8c9;
}
.tc-result-name {
	margin: 0 0 6px;
	color: #1f4680;
}
.tc-summary {
	font-size: 16px;
	font-weight: 600;
	color: #2f8f3e;
	margin: 0 0 10px;
}
#tc-result a.tc-download {
	display: inline-block;
	margin-top: 10px;
	padding: 10px 20px;
	background: #2f8f3e;
	color: #fff;
	border-radius: 6px;
	text-decoration: none;
}
.tc-error {
	color: #a02020;
	font-weight: 600;
}
