.banon-appt-form {
	max-width: 720px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid #eeeeee;
	border-radius: 10px;
	padding: 30px;
}
.banon-appt-step {
	margin-bottom: 26px;
}
.banon-appt-step h3 {
	margin-bottom: 12px;
	font-size: 18px;
}
.banon-appt-form label {
	display: block;
	margin: 10px 0 6px;
	font-weight: 600;
}
.banon-appt-form input[type="text"],
.banon-appt-form input[type="tel"],
.banon-appt-form input[type="email"],
.banon-appt-form input[type="date"],
.banon-appt-form select,
.banon-appt-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 15px;
	box-sizing: border-box;
}
.banon-appt-doctor-grid,
.banon-appt-slot-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}
.banon-appt-doctor-card {
	border: 2px solid #eeeeee;
	background: #fff;
	border-radius: 10px;
	padding: 10px;
	width: 140px;
	text-align: center;
	cursor: pointer;
}
.banon-appt-doctor-card img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 6px;
}
.banon-appt-doctor-card .name {
	display: block;
	font-weight: 700;
	font-size: 13px;
}
.banon-appt-doctor-card .sub {
	display: block;
	font-size: 11px;
	color: #6a6c72;
}
.banon-appt-doctor-card.is-selected,
.banon-appt-slot.is-selected {
	border-color: #237b34;
	background: rgba(35, 123, 52, 0.08);
}
.banon-appt-slot {
	border: 2px solid #eeeeee;
	background: #fff;
	border-radius: 8px;
	padding: 8px 14px;
	cursor: pointer;
	font-size: 14px;
}
.banon-appt-honeypot {
	/* 1.0.1: was `left: -9999px`, which inflates the document's scrollable
	   width to ~11000px (confirmed via document.documentElement.scrollWidth)
	   because an absolutely-positioned element still extends the page's
	   layout/scroll bounds even when placed off-screen. That produced a
	   full-width horizontal scrollbar on every page rendering this form and
	   broke automated rendering entirely. Kept invisible to sighted users
	   and out of the tab order (aria-hidden + tabindex="-1" on the markup
	   below), but positioned within normal document bounds via clip
	   instead of a large negative offset, so the page's actual layout
	   width is never affected. Bots that blindly fill every input still
	   populate this field and still trip the honeypot check server-side. */
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	left: 0;
	top: 0;
}
.banon-appt-policy {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-weight: 400;
}
.banon-appt-policy input {
	margin-top: 4px;
}
.banon-appt-actions {
	margin-top: 20px;
}
.banon-appt-schedule-status {
	margin: 8px 0 16px;
	padding: 14px 18px;
	border-radius: 8px;
	background: rgba(220, 107, 51, 0.1);
	color: #a85425;
	font-weight: 600;
}
.banon-appt-result {
	margin-top: 16px;
	padding: 14px 18px;
	border-radius: 8px;
	font-weight: 700;
}
.banon-appt-result.is-success {
	background: rgba(35, 123, 52, 0.1);
	color: #237b34;
}
.banon-appt-result.is-error {
	background: rgba(220, 107, 51, 0.12);
	color: #dc6b33;
}
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid #dc6b33;
	outline-offset: 2px;
}
