/* BT Quiz - Program Seçici
   Yatay stepper (5 daire + bağlantı çizgisi) + aktif adım paneli aşağıda.
   Tüm seçiciler .bt-quiz-wrap altında — tema CSS'iyle çakışmaz. */

.bt-quiz-wrap {
	max-width: 1100px;
	margin: 40px auto;
	padding: 0 20px;
	font-family: inherit;
	color: #333;
	box-sizing: border-box;
}
.bt-quiz-wrap *,
.bt-quiz-wrap *::before,
.bt-quiz-wrap *::after {
	box-sizing: border-box;
}

.bt-quiz-wrap .bt-quiz-heading {
	text-align: center;
	margin-bottom: 30px;
}
.bt-quiz-wrap .bt-quiz-heading h2 {
	font-weight: 700;
	font-size: 28px;
	margin: 0;
	color: #222;
}

/* ============ STEPPER (yatay) ============ */
.bt-quiz-wrap .bt-stepper {
	display: flex;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0 0 40px;
	gap: 0;
}
.bt-quiz-wrap .bt-step {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	font-weight: 600;
	white-space: nowrap;
}
.bt-quiz-wrap .bt-step-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #d0d0d0;
	color: #999;
	font-weight: 700;
	font-size: 14px;
	flex-shrink: 0;
	margin-right: 10px;
	transition: all .2s;
	line-height: 1;
}
.bt-quiz-wrap .bt-step.active .bt-step-circle {
	background: #2196f3;
	border-color: #2196f3;
	color: #fff;
}
.bt-quiz-wrap .bt-step.passed .bt-step-circle {
	background: #28b16f;
	border-color: #28b16f;
	color: #fff;
}
.bt-quiz-wrap .bt-step.passed .bt-num { display: none; }
.bt-quiz-wrap .bt-step.passed .bt-step-circle::before {
	content: "\2713"; /* ✓ */
	font-size: 16px;
	font-weight: 700;
}

.bt-quiz-wrap .bt-step-label {
	color: #777;
	font-size: 15px;
}
.bt-quiz-wrap .bt-step.active .bt-step-label {
	color: #2196f3;
}
.bt-quiz-wrap .bt-step.passed .bt-step-label {
	color: #333;
}

/* Adımlar arası bağlantı çizgisi */
.bt-quiz-wrap .bt-step + .bt-step {
	margin-left: 0;
}
.bt-quiz-wrap .bt-step:not(:last-child)::after {
	content: "";
	display: inline-block;
	flex: 1;
	height: 2px;
	background: #d0d0d0;
	margin: 0 14px;
	min-width: 30px;
	align-self: center;
}
.bt-quiz-wrap .bt-step.passed:not(:last-child)::after {
	background: #28b16f;
}

/* flex stretch için adımları sarmalayalım */
.bt-quiz-wrap .bt-stepper {
	justify-content: space-between;
}
.bt-quiz-wrap .bt-step {
	flex: 1 1 auto;
}
.bt-quiz-wrap .bt-step:last-child {
	flex: 0 0 auto;
}

/* ============ PANELLER ============ */
.bt-quiz-wrap .bt-steps-panels {
	max-width: 560px;
	margin: 0 auto;
	padding: 10px 0 30px;
}
.bt-quiz-wrap .bt-step-panel {
	display: none;
}
.bt-quiz-wrap .bt-step-panel.active {
	display: block;
}

.bt-quiz-wrap .bt-step-brief {
	margin-bottom: 18px;
	color: #c97a3a;
	font-size: 14px;
	font-weight: 500;
}
.bt-quiz-wrap .bt-brief-strong {
	color: #555;
	font-weight: 700;
	letter-spacing: 0.3px;
}
.bt-quiz-wrap .bt-text-danger {
	color: #dc3545;
	font-size: 15px;
}

/* ============ BUTONLAR ============ */
.bt-quiz-wrap .bt-step-actions {
	margin-top: 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.bt-quiz-wrap .bt-actions-center {
	justify-content: center;
	margin-top: 22px;
}
.bt-quiz-wrap .bt-btn {
	display: inline-block;
	padding: 8px 22px;
	background: #fff;
	border: 1.5px solid #6c757d;
	color: #6c757d;
	border-radius: 50px;
	cursor: pointer;
	font-weight: 500;
	font-size: 14px;
	text-decoration: none;
	transition: all .2s;
	line-height: 1.4;
}
.bt-quiz-wrap .bt-btn:hover {
	background: #6c757d;
	color: #fff;
}
.bt-quiz-wrap .bt-btn.bt-primary {
	background: #2196f3;
	border-color: #2196f3;
	color: #fff;
	padding: 9px 28px;
}
.bt-quiz-wrap .bt-btn.bt-primary:hover {
	background: #1976d2;
	border-color: #1976d2;
}
.bt-quiz-wrap .bt-btn.bt-danger {
	background: #fff;
	border-color: #dc3545;
	color: #dc3545;
	padding: 9px 28px;
}
.bt-quiz-wrap .bt-btn.bt-danger:hover {
	background: #dc3545;
	color: #fff;
}
.bt-quiz-wrap .bt-btn.bt-selected {
	background: #6c757d;
	color: #fff;
}

/* ============ RADIO KARTLAR ============ */
.bt-quiz-wrap .bt-step-radio {
	display: block;
	padding: 14px 18px;
	margin-bottom: 12px;
	border: 1.5px solid #dee2e6;
	border-radius: 10px;
	cursor: pointer;
	position: relative;
	transition: all .15s;
	background: #fff;
}
.bt-quiz-wrap .bt-step-radio:hover {
	border-color: #aaa;
}
.bt-quiz-wrap .bt-step-radio.active {
	border-color: #2196f3;
	background: #f0f8ff;
}
.bt-quiz-wrap .bt-step-radio .bt-radio-input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.bt-quiz-wrap .bt-step-radio label {
	display: block;
	cursor: pointer;
	margin: 0;
	padding: 0;
	color: inherit;
	font-weight: normal;
}
.bt-quiz-wrap .bt-step-radio label b {
	display: block;
	margin-bottom: 4px;
	color: #444;
	font-size: 14px;
	font-weight: 700;
}
.bt-quiz-wrap .bt-step-radio label small {
	display: block;
	color: #c97a3a;
	font-size: 13px;
	line-height: 1.5;
}

.bt-quiz-wrap .bt-quiz-loading {
	color: #6c757d;
	font-size: 14px;
	align-self: center;
}

/* ============ MOBILE ============ */
@media (max-width: 760px) {
	.bt-quiz-wrap .bt-step-label { display: none; }
	.bt-quiz-wrap .bt-step-circle { margin-right: 0; }
	.bt-quiz-wrap .bt-step:not(:last-child)::after { margin: 0 8px; min-width: 20px; }
	.bt-quiz-wrap .bt-quiz-heading h2 { font-size: 22px; }
}
