/* WP Appointment – Booking form (responsive) */
.wp-appointment-booking-form {
	max-width: 991px;
	margin: 1.5rem 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, sans-serif;
}

.wp-appointment-booking-form .wp-appointment-message {
	padding: 12px 16px;
	margin-bottom: 16px;
	border-radius: 4px;
	border-left: 4px solid;
}

.wp-appointment-booking-form .wp-appointment-success {
	background: #d4edda;
	border-color: #28a745;
	color: #155724;
}

.wp-appointment-booking-form .wp-appointment-error {
	background: #f8d7da;
	border-color: #dc3545;
	color: #721c24;
}

.wp-appointment-booking-form .wp-appointment-field {
	margin-bottom: 1.25rem;
}

.wp-appointment-booking-form label {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 600;
	font-size: 0.95rem;
}

.wp-appointment-booking-form .required {
	color: #b32d2e;
}

.wp-appointment-booking-form input[type="text"],
.wp-appointment-booking-form input[type="email"],
.wp-appointment-booking-form input[type="tel"],
.wp-appointment-booking-form input[type="date"],
.wp-appointment-booking-form select {
	width: 100%;
	max-width: 100%;
	padding: 10px 12px;
	font-size: 1rem;
	line-height: 1.4;
	border: 1px solid #8c8f94;
	border-radius: 4px;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	background: #fff;
}

.wp-appointment-booking-form select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232c3338' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 36px;
}

.wp-appointment-booking-form input:focus,
.wp-appointment-booking-form select:focus {
	border-color: #2271b1;
	outline: none;
	box-shadow: 0 0 0 1px #2271b1;
}

.wp-appointment-booking-form .wp-appointment-submit {
	margin-top: 1.5rem;
	margin-bottom: 0;
}

.wp-appointment-booking-form .wp-appointment-btn {
	display: inline-block;
	padding: 12px 24px;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	color: #fff;
	background: #2271b1;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.15s ease;
}

.wp-appointment-booking-form .wp-appointment-btn:hover {
	background: #135e96;
}

.wp-appointment-booking-form .wp-appointment-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

@media (max-width: 520px) {
	.wp-appointment-booking-form {
		margin-left: 0;
		margin-right: 0;
	}
	.wp-appointment-booking-form input[type="date"] {
		min-height: 44px;
	}
	.wp-appointment-booking-form select {
		min-height: 44px;
	}
	.wp-appointment-booking-form .wp-appointment-btn {
		width: 100%;
		padding: 14px;
	}
}
