#mbs-booking-form {
	max-width: 500px;
	margin: 0 auto;
	font-family: inherit;
}
#mbs-booking-form .mbs-field {
	margin-bottom: 16px;
}
#mbs-booking-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}
#mbs-booking-form select,
#mbs-booking-form input[type="date"],
#mbs-booking-form input[type="text"],
#mbs-booking-form input[type="email"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 15px;
}
#mbs-slots-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.mbs-slot-btn {
	padding: 8px 14px;
	border: 1px solid #7a4ee0;
	background: #fff;
	color: #7a4ee0;
	border-radius: 20px;
	cursor: pointer;
	font-size: 14px;
}
.mbs-slot-btn.selected,
.mbs-slot-btn:hover {
	background: #7a4ee0;
	color: #fff;
}
.mbs-btn {
	width: 100%;
	padding: 14px;
	background: #7a4ee0;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
}
.mbs-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
}
#mbs-message {
	margin-bottom: 12px;
	font-weight: 600;
}
#mbs-message.error { color: #c0392b; }
#mbs-message.success { color: #27ae60; }
