.tb-wizard {
	max-width: 900px;
	padding: 24px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	background: #fafafa;
}

.tb-step {
	margin-top: 4px;
}

/* Step indicator */
.tb-steps-indicator {
	display: flex;
	gap: 8px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.tb-step-dot {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 20px;
	background: #eee;
	color: #888;
	font-size: 0.85em;
	font-weight: 600;
}

.tb-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #ccc;
	color: #fff;
	font-size: 0.8em;
}

.tb-step-dot.tb-step-active {
	background: #2563eb;
	color: #fff;
}

.tb-step-dot.tb-step-active .tb-step-num {
	background: #fff;
	color: #2563eb;
}

.tb-step-dot.tb-step-done {
	background: #dcfce7;
	color: #166534;
}

.tb-step-dot.tb-step-done .tb-step-num {
	background: #16a34a;
	color: #fff;
}

/* Generic fields */
.tb-section-title {
	margin: 0 0 12px;
	font-size: 1em;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #666;
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 6px;
}

.tb-field {
	margin-bottom: 16px;
}

.tb-field-row {
	display: flex;
	gap: 12px;
}

.tb-field-row .tb-field {
	flex: 1;
}

.tb-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}

.tb-field select,
.tb-field input[type="number"],
.tb-field input[type="date"],
.tb-field input[type="text"],
.tb-field input[type="email"],
.tb-field input[type="tel"] {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.tb-transfer-type {
	display: flex;
	gap: 10px;
}

.tb-radio-pill {
	display: flex !important;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border: 1px solid #ccc;
	border-radius: 20px;
	cursor: pointer;
	font-weight: 400 !important;
	background: #fff;
}

.tb-radio-pill:has(input:checked) {
	border-color: #2563eb;
	background: #eff6ff;
	font-weight: 600 !important;
}

.tb-return-fields {
	margin: -4px 0 16px;
	padding: 12px;
	background: #fff;
	border: 1px dashed #ccc;
	border-radius: 6px;
}

.tb-round-trip-discount-note {
	margin: 0 0 12px;
	padding: 8px 12px;
	background: #dcfce7;
	color: #166534;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.9em;
}

.tb-payment-note {
	margin-top: 10px;
	font-size: 0.85em;
	color: #777;
	text-align: center;
}

.tb-message {
	min-height: 20px;
	margin-bottom: 12px;
	color: #555;
	font-size: 0.9em;
}

.tb-message.tb-error {
	color: #c0392b;
	font-weight: 600;
}

.tb-submit-button {
	width: 100%;
	padding: 12px;
	font-size: 1em;
}

.tb-step-nav {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 20px;
}

.tb-step-nav .tb-submit-button {
	width: auto;
	flex: 1;
}

/* Two-column layout for steps 2 & 3: ~70% main / ~30% summary */
.tb-wizard-layout {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

.tb-wizard-main {
	flex: 0 0 68%;
	max-width: 68%;
}

.tb-wizard-summary {
	flex: 0 0 30%;
	max-width: 30%;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 16px;
	position: sticky;
	top: 20px;
}

.tb-wizard-summary h4 {
	margin: 0 0 8px;
}

.tb-wizard-summary hr {
	border: none;
	border-top: 1px solid #eee;
	margin: 10px 0;
}

.tb-wizard-summary p {
	margin: 4px 0;
	font-size: 0.9em;
}

.tb-summary-return {
	color: #2563eb;
	font-weight: 600;
}

.tb-summary-extra span {
	color: #666;
}

.tb-summary-total {
	font-size: 1.15em;
	font-weight: 700;
}

@media (max-width: 700px) {
	.tb-wizard-layout {
		flex-direction: column;
	}
	.tb-wizard-main,
	.tb-wizard-summary {
		max-width: 100%;
		flex-basis: auto;
	}
}

/* Vehicle cards */
.tb-vehicle-cards {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 24px;
}

.tb-vehicle-card {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	padding: 16px;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.15s ease;
}

.tb-vehicle-card:hover {
	border-color: #93c5fd;
}

.tb-vehicle-card.tb-vehicle-selected {
	border-color: #2563eb;
	background: #eff6ff;
}

.tb-vehicle-photo {
	width: 160px;
	height: 100px;
	object-fit: contain;
	border-radius: 6px;
	flex-shrink: 0;
	background: #f8f8f8;
}

.tb-vehicle-photo-placeholder {
	display: flex;
}

.tb-vehicle-main {
	flex: 1;
	min-width: 160px;
}

.tb-vehicle-title {
	margin: 0 0 4px;
	font-size: 1.15em;
}

.tb-vehicle-price {
	font-size: 1.4em;
	font-weight: 700;
	color: #2563eb;
	margin: 0;
}

.tb-vehicle-fee-note {
	font-size: 0.55em;
	font-weight: 600;
	color: #b45309;
	vertical-align: middle;
}

.tb-vehicle-badge {
	display: inline-block;
	background: #16a34a;
	color: #fff;
	font-size: 0.75em;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 10px;
	margin-bottom: 6px;
}

.tb-vehicle-warning {
	color: #b45309;
	font-size: 0.85em;
	font-weight: 600;
	margin: 6px 0 0;
	flex-basis: 100%;
}

.tb-vehicle-specs-icons {
	display: flex;
	gap: 20px;
	align-items: center;
}

.tb-spec-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	color: #aaa;
	font-size: 0.85em;
}

.tb-spec-icon span {
	font-weight: 700;
	color: #444;
}

.tb-spec-svg {
	width: 26px;
	height: 26px;
}

.tb-vehicle-select-btn {
	padding: 10px 26px;
	border-radius: 20px;
	border: none;
	background: #eee;
	color: #555;
	font-weight: 700;
	font-size: 0.85em;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.tb-vehicle-select-btn:hover {
	background: #ddd;
}

.tb-vehicle-card.tb-vehicle-selected .tb-vehicle-select-btn {
	background: #2563eb;
	color: #fff;
}

/* Extras */
.tb-extras-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 24px;
}

.tb-extra-item {
	display: flex !important;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
	font-weight: 400 !important;
}

.tb-extra-price {
	margin-left: auto;
	color: #666;
	font-weight: 600;
}

/* Shared with admin screens */
.tb-payment-actions a {
	margin-right: 6px;
	text-decoration: none;
}

.tb-time-select {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.tb-time-select select {
	padding: 6px;
}

.tb-time-sep {
	font-weight: 700;
}

.tb-assign-vehicle-form {
	max-width: 100%;
}

.tb-vehicle-select {
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
}

/* Mobile */
@media (max-width: 600px) {
	.tb-wizard {
		padding: 16px;
		border-radius: 0;
		border-left: none;
		border-right: none;
	}

	.tb-field-row {
		flex-direction: column;
		gap: 0;
	}

	.tb-field-row .tb-field {
		width: 100%;
	}

	.tb-transfer-type {
		flex-wrap: wrap;
	}

	.tb-radio-pill {
		flex: 1 1 45%;
		justify-content: center;
	}

	.tb-step-nav {
		flex-direction: column;
	}

	.tb-step-nav .tb-submit-button {
		width: 100%;
	}

	.tb-vehicle-card {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.tb-vehicle-photo {
		width: 100%;
		height: 140px;
	}

	.tb-vehicle-specs-icons {
		justify-content: center;
	}

	.tb-vehicle-select-btn {
		width: 100%;
	}

	.tb-time-select select {
		flex: 1;
		min-width: 0;
	}
}
