.chb-reservation-form-wrap {
	max-width: 900px;
}

.chb-field-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.chb-field-grid p {
	margin: 0 0 12px;
}

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

.chb-field-grid input,
.chb-field-grid select {
	width: 100%;
	max-width: 100%;
	padding: 8px;
	box-sizing: border-box;
}

.chb-full-width {
	grid-column: 1 / -1;
}

.chb-request-row {
	border: 1px solid #ddd;
	padding: 16px;
	margin-bottom: 16px;
	background: #fafafa;
}

.chb-message {
	padding: 12px 14px;
	margin-bottom: 18px;
	border-radius: 4px;
}

.chb-success {
	background: #ecf7ed;
	border: 1px solid #8bc48f;
}

.chb-error {
	background: #fdeeee;
	border: 1px solid #d88;
}

@media (max-width: 700px) {
	.chb-field-grid {
		grid-template-columns: 1fr;
	}
}





/* === Button Styling (Add / Remove / Submit) === */

.chb-reservation-form .button,
.chb-reservation-form .button-primary,
.chb-reservation-form button {
	border: 0;
	border-radius: 4px;
	padding: 10px 16px;
	cursor: pointer;
}

/* Add Another Request */
#chb-add-request-row {
	background: #2271b1;
	color: #fff;
}

#chb-add-request-row:hover {
	background: #135e96;
	color: #fff;
}

/* Remove button */
.chb-remove-request-row {
	background: #d63638;
	color: #fff;
}

.chb-remove-request-row:hover {
	background: #b32d2e;
	color: #fff;
}

/* Submit Reservation */
.chb-reservation-form .button.button-primary,
.chb-reservation-form button[type="submit"] {
	background: #2e7d32;
	color: #fff;
}

.chb-reservation-form .button.button-primary:hover,
.chb-reservation-form button[type="submit"]:hover {
	background: #256628;
	color: #fff;
}


.chb-reserve-btn:hover {
	background: #256628 !important;
	transform: translateY(-1px);
}

