.mgb-booking-form {
	max-width: 520px;
	margin: 0 auto;
	padding-top: 32px;
	font-family: inherit;
}

.mgb-booking-form .mgb-field {
	margin-bottom: 16px;
}

.mgb-booking-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}

.mgb-booking-form input[type="text"],
.mgb-booking-form input[type="tel"],
.mgb-booking-form input[type="email"],
.mgb-booking-form input[type="date"],
.mgb-booking-form select,
.mgb-booking-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccd0d4;
	border-radius: 6px;
	font-size: 15px;
	box-sizing: border-box;
}

.mgb-slots {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}

.mgb-slots-placeholder {
	color: #666;
	font-style: italic;
	margin: 0;
}

.mgb-slot {
	padding: 8px 14px;
	border: 1px solid #2373bc;
	background: #fff;
	color: #2373bc;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
}

.mgb-slot:hover:not(.mgb-slot-disabled) {
	background: #2373bc;
	color: #fff;
}

.mgb-slot-selected {
	background: #2373bc;
	color: #fff;
}

.mgb-slot-disabled {
	border-color: #ddd;
	color: #bbb;
	cursor: not-allowed;
	text-decoration: line-through;
}

.mgb-submit-btn {
	background: #2373bc;
	color: #fff;
	border: none;
	padding: 12px 24px;
	border-radius: 6px;
	font-size: 16px;
	cursor: pointer;
}

.mgb-submit-btn:hover {
	background: #2595be;
}

.mgb-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.mgb-message {
	padding: 12px 14px;
	border-radius: 6px;
	margin-bottom: 16px;
}

.mgb-message.mgb-success {
	background: #e6f6ea;
	color: #1e7e34;
	border: 1px solid #b6e2c1;
}

.mgb-message.mgb-error {
	background: #fdecea;
	color: #c0392b;
	border: 1px solid #f5c6cb;
}
