.msb-booking-wrapper {
	max-width: 800px;
	margin: 0 auto;
	background: #ffffff;
	border: 1px solid #e4e4e7;
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.04);
	font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
	color: #18181b;
}
.msb-wizard-header {
	text-align: center;
	margin-bottom: 28px;
}
.msb-title {
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 6px 0;
}
.msb-subtitle {
	color: #71717a;
	font-size: 15px;
	margin: 0;
}
.msb-steps-indicator {
	display: flex;
	justify-content: space-between;
	border-bottom: 2px solid #f4f4f5;
	padding-bottom: 12px;
	margin-bottom: 28px;
	overflow-x: auto;
}
.msb-step {
	font-size: 13px;
	font-weight: 600;
	color: #a1a1aa;
	padding: 6px 12px;
	white-space: nowrap;
}
.msb-step.active {
	color: #000000;
	border-bottom: 2px solid #000000;
}
.msb-step-content {
	display: none;
}
.msb-step-content.active {
	display: block;
}
.msb-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
@media(max-width: 640px) {
	.msb-form-grid { grid-template-columns: 1fr; }
}
.msb-field label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 6px;
}
.msb-field input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d4d4d8;
	border-radius: 8px;
	font-size: 14px;
}
.msb-actions {
	display: flex;
	justify-content: space-between;
	margin-top: 28px;
}
.msb-btn {
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 700;
	cursor: pointer;
	border: none;
	font-size: 14px;
}
.msb-btn-primary {
	background: #000000;
	color: #ffffff;
}
.msb-btn-secondary {
	background: #f4f4f5;
	color: #18181b;
}
.msb-btn-success {
	background: #16a34a;
	color: #ffffff;
}
.msb-modal-backdrop {
	position: fixed;
	top:0; left:0; width:100%; height:100%;
	background: rgba(0,0,0,0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999;
}
.msb-modal-card {
	background: #ffffff;
	padding: 32px;
	border-radius: 16px;
	max-width: 480px;
	width: 90%;
	position: relative;
}
