.appointment-scheduler-wrapper {
	position: relative;
	border: 1px solid rgba(148, 163, 184, 0.5);
	border-radius: 20px;
	padding: 32px;
	background: linear-gradient(135deg, #eef2ff, #fff7ed);
	box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
	max-width: 680px;
	margin: 32px auto;
	overflow: hidden;
}

.appointment-scheduler-wrapper::before {
	content: "";
	position: absolute;
	inset: 12px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(6px);
	z-index: 0;
}

.appointment-scheduler-wrapper > * {
	position: relative;
	z-index: 1;
}

.appointment-scheduler-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}

.appointment-scheduler-form {
	--as-select-padding-end: 3rem;
	--as-select-chevron-left: calc(100% - 1.3rem);
	--as-select-chevron-right: calc(100% - 0.95rem);
	--as-select-chevron-offset-y: calc(50% - 0.14rem);
	--as-select-chevron-size: 0.55rem;
}

.appointment-scheduler-honeypot {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.appointment-scheduler-form label {
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
	display: flex;
	flex-direction: column;
	gap: 6px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.appointment-scheduler-form input,
.appointment-scheduler-form select,
.appointment-scheduler-form textarea {
	border: 1px solid rgba(99, 102, 241, 0.35);
	border-radius: 14px;
	padding: 12px 14px;
	font-size: 15px;
	width: 100%;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.9));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.appointment-scheduler-form select {
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.appointment-scheduler-form select:not([multiple]):not([size]) {
	padding-right: var(--as-select-padding-end);
	background-image:
		linear-gradient(45deg, transparent 50%, #64758b 50%),
		linear-gradient(135deg, #64758b 50%, transparent 50%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.9));
	background-position:
		var(--as-select-chevron-left) var(--as-select-chevron-offset-y),
		var(--as-select-chevron-right) var(--as-select-chevron-offset-y),
		0 0;
	background-repeat: no-repeat, no-repeat, repeat;
	background-size:
		var(--as-select-chevron-size) var(--as-select-chevron-size),
		var(--as-select-chevron-size) var(--as-select-chevron-size),
		auto;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	overflow: hidden;
	text-overflow: ellipsis;
}

.appointment-scheduler-form select[multiple],
.appointment-scheduler-form select[size]:not([size="1"]) {
	padding-right: 14px;
	background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.9));
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto;
}

.as-date-picker-wrap {
	position: relative;
	display: block;
}

.as-date-picker-wrap > .as-calendar-popover {
	left: 0;
	top: calc(100% + 6px);
}

.as-calendar-popover {
	display: none;
	position: absolute;
	z-index: 50;
	margin-top: 6px;
	padding: 12px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(99, 102, 241, 0.25);
	border-radius: 14px;
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
	backdrop-filter: blur(8px);
	overflow-x: hidden;
}

.as-calendar-popover.is-open {
	display: block;
}

.as-calendar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 10px;
}

.as-calendar-title {
	font-weight: 700;
	font-size: 13px;
	text-align: center;
	flex: 1;
	color: #0f172a;
}

.as-calendar-nav {
	width: 30px;
	height: 30px;
	padding: 0;
	border: 1px solid rgba(99, 102, 241, 0.25);
	border-radius: 10px;
	background: #eef2ff;
	color: #4f46e5;
	cursor: pointer;
}

.as-calendar-grid {
	user-select: none;
	min-width: 0;
}

.as-calendar-weekdays,
.as-calendar-days {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 4px;
	min-width: 0;
}

.as-calendar-weekday {
	font-size: 11px;
	color: #64748b;
	text-align: center;
	padding: 2px 0;
}

.as-calendar-day {
	height: 32px;
	border: 1px solid transparent;
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
	font-size: 12px;
	color: #0f172a;
	width: 100%;
	box-sizing: border-box;
	padding: 0 !important;
}

.as-calendar-day:hover {
	background: #eef2ff;
	border-color: rgba(99, 102, 241, 0.35);
}

.as-calendar-day.is-selected {
	background: #6366f1;
	color: #fff;
	border-color: #4f46e5;
}

.as-calendar-day--empty {
	background: transparent;
	border-color: transparent;
	cursor: default;
}

.appointment-scheduler-form input:focus,
.appointment-scheduler-form select:focus,
.appointment-scheduler-form textarea:focus {
	outline: none;
	border-color: transparent;
	box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.7), 0 0 25px rgba(236, 72, 153, 0.25);
	transform: translateY(-1px);
}

.appointment-scheduler-notes {
	display: block;
	margin-top: 16px;
}

.appointment-scheduler-slot-notice {
	display: block;
	font-size: 12px;
	margin-top: 4px;
	color: #8b5cf6;
}

.appointment-scheduler-submit {
	margin-top: 20px;
	background: linear-gradient(120deg, #6366f1, #8b5cf6);
	border: none;
	border-radius: 999px;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 12px 28px;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.appointment-scheduler-submit:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(99, 102, 241, 0.25);
}

.appointment-scheduler-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.appointment-scheduler-consent-wrapper {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	background: #ffffff;
}

.appointment-scheduler-form .appointment-scheduler-consent {
	margin: 0;
	color: #0f172a;
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	min-width: 0;
	padding-left: 0;
}

.appointment-scheduler-consent__input {
	appearance: auto !important;
	-webkit-appearance: checkbox !important;
	-moz-appearance: checkbox !important;
	accent-color: #0d6efd;
	flex: 0 0 1.15rem;
	width: 1.15rem !important;
	height: 1.15rem !important;
	min-width: 1.15rem;
	max-width: 1.15rem !important;
	margin: 0;
	margin-top: 0.15rem;
	padding: 0;
	float: none;
	display: inline-block;
	align-self: flex-start;
	box-sizing: border-box;
	border-radius: 0.25rem !important;
	cursor: pointer;
	background: revert;
	background-image: none !important;
	box-shadow: none !important;
}

.appointment-scheduler-consent__body {
	display: flex;
	flex: 1 1 auto;
	flex-wrap: wrap;
	gap: 0.15rem 0.4rem;
	align-items: flex-start;
	min-width: 0;
}

.appointment-scheduler-consent__text {
	font-size: 15px;
	line-height: 1.5;
	display: block;
	flex: 0 1 auto;
	min-width: 0;
	margin: 0;
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: break-word;
	cursor: pointer;
}

.appointment-scheduler-consent__link {
	text-decoration: underline;
	flex: 0 0 auto;
	align-self: flex-start;
}

.appointment-scheduler-consent__input:focus {
	outline: 2px solid rgba(13, 110, 253, 0.35);
	outline-offset: 2px;
}

.appointment-scheduler-notices {
	margin-bottom: 16px;
}

.appointment-scheduler-notice {
	border-radius: 16px;
	padding: 14px 18px;
	margin-bottom: 10px;
	font-weight: 600;
	color: #0f172a;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.95));
	border: 1px solid rgba(148, 163, 184, 0.4);
	box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.appointment-scheduler-notice--error {
	background: linear-gradient(125deg, rgba(254, 226, 226, 0.95), rgba(254, 215, 170, 0.9));
	color: #7f1d1d;
	border-color: rgba(248, 113, 113, 0.5);
}

.appointment-scheduler-notice--success {
	background: linear-gradient(125deg, rgba(209, 250, 229, 0.95), rgba(187, 247, 208, 0.9));
	color: #064e3b;
	border-color: rgba(34, 197, 94, 0.45);
}

.appointment-scheduler-notice--closed {
	background: linear-gradient(125deg, rgba(226, 232, 240, 0.9), rgba(224, 231, 255, 0.85));
	color: #0f172a;
	border: 1px dashed rgba(148, 163, 184, 0.8);
}

.appointment-scheduler-toast {
	position: fixed;
	top: 24px;
	right: 24px;
	width: min(360px, calc(100% - 32px));
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 12px;
	border-radius: 18px;
	background: rgba(15, 23, 42, 0.05);
	backdrop-filter: blur(12px);
	box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
	opacity: 0;
	transform: translateY(-12px);
	transition: opacity 0.25s ease, transform 0.25s ease;
	z-index: 9999;
	pointer-events: none;
}

.appointment-scheduler-toast .appointment-scheduler-notice {
	margin: 0;
}

.appointment-scheduler-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.appointment-scheduler-service-employees {
	margin-top: 12px;
	padding: 18px;
	border: 1px solid rgba(148, 163, 184, 0.4);
	border-radius: 20px;
	background: linear-gradient(130deg, rgba(248, 250, 252, 0.95), rgba(237, 233, 254, 0.9));
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.appointment-scheduler-service-employees[hidden] {
	display: none;
}

.appointment-scheduler-service-employees__label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: #0f172a;
	margin-bottom: 18px;
	padding: 8px 16px;
	border-radius: 999px;
	background: linear-gradient(120deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
	border: 1px solid rgba(148, 163, 184, 0.5);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.appointment-scheduler-service-employees__label::before {
	content: "✷";
	font-size: 12px;
	color: #ec4899;
}



.appointment-scheduler-service-employees__list {
	position: relative;
	margin: 0;
	padding: 18px 14px;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
	align-items: stretch;
	border-radius: 24px;
	background: linear-gradient(140deg, rgba(248, 250, 252, 0.95), rgba(232, 233, 252, 0.75));
	box-shadow: inset 0 0 40px rgba(99, 102, 241, 0.08);
}

.appointment-scheduler-service-employees__item {
	position: relative;
	display: flex;
	flex: 1 1 240px;
	max-width: 320px;
	min-width: 220px;
	align-items: stretch;
	cursor: pointer;
}

.appointment-scheduler-service-employees__item input[type="radio"] {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: 0;
	border: 0;
	padding: 0;
	opacity: 0;
	pointer-events: none;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
}

.appointment-scheduler-service-employees__card {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 16px 20px;
	border-radius: 24px;
	overflow: visible;
	width: 100%;
	transition: transform 0.2s ease;
}

.appointment-scheduler-service-employees__card-border {
	position: absolute;
	inset: 0;
	border-radius: 24px;
	border: 2px solid rgba(148, 163, 184, 0.3);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 244, 255, 0.9));
	box-shadow: 0 14px 26px rgba(15, 23, 42, 0.12);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	pointer-events: none;
	z-index: 0;
}

.appointment-scheduler-service-employees__card-inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	padding: 20px 18px;
	border-radius: 18px;
	background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(236, 233, 254, 0.9));
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
	flex: 1 1 auto;
	z-index: 1;
}

.appointment-scheduler-service-employees__item:hover .appointment-scheduler-service-employees__card {
	transform: translateY(-2px);
}

.appointment-scheduler-service-employees__item:hover .appointment-scheduler-service-employees__card-border {
	border-color: rgba(148, 163, 184, 0.6);
	box-shadow: 0 18px 38px rgba(99, 102, 241, 0.18);
}

.appointment-scheduler-service-employees__item input[type="radio"]:checked + .appointment-scheduler-service-employees__card {
	transform: translateY(-3px);
	filter: drop-shadow(0 20px 40px rgba(236, 72, 153, 0.25));
}

.appointment-scheduler-service-employees__item input[type="radio"]:checked + .appointment-scheduler-service-employees__card .appointment-scheduler-service-employees__card-border {
	border-color: transparent;
	background:
		linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(250, 245, 255, 0.92)) padding-box,
		linear-gradient(120deg, #ec4899, #6366f1) border-box;
	background-clip: padding-box, border-box;
	box-shadow:
		0 0 0 3px rgba(236, 72, 153, 0.35),
		0 24px 60px rgba(236, 72, 153, 0.25);
}

.appointment-scheduler-service-employees__item input[type="radio"]:checked + .appointment-scheduler-service-employees__card::after {
	content: "";
	position: absolute;
	inset: -6px;
	border-radius: 30px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(236, 72, 153, 0.15));
	opacity: 0.85;
	filter: blur(1px);
	z-index: -1;
}

.appointment-scheduler-service-employees__item input[type="radio"]:checked + .appointment-scheduler-service-employees__card .appointment-scheduler-service-employees__card-inner {
	background: linear-gradient(150deg, rgba(255, 255, 255, 0.99), rgba(237, 233, 254, 0.96));
}

.appointment-scheduler-service-employees__avatar {
	position: relative;
	width: 72px;
	height: 72px;
	border-radius: 22px;
	overflow: hidden;
	background: linear-gradient(135deg, #c7d2fe, #fecdd3);
	flex: 0 0 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6);
}

.appointment-scheduler-service-employees__avatar::after {
	content: "";
	position: absolute;
	inset: 4px;
	border-radius: 18px;
	box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.7);
	opacity: 0.6;
}

.appointment-scheduler-service-employees__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.appointment-scheduler-service-employees__avatar-fallback {
	width: 100%;
	height: 100%;
	display: block;
	background: linear-gradient(135deg, #cbd5f5, #94a3b8);
}

.appointment-scheduler-service-employees__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: center;
	text-align: center;
	flex: 1 1 auto;
}

.appointment-scheduler-service-employees__name {
	font-weight: 600;
	font-size: 16px;
	color: #0f172a;
}

.appointment-scheduler-service-employees__item input[type="radio"]:checked + .appointment-scheduler-service-employees__card .appointment-scheduler-service-employees__avatar {
	box-shadow:
		inset 0 0 0 2px rgba(255, 255, 255, 0.9),
		0 0 12px rgba(236, 72, 153, 0.45);
	transform: scale(1.03);
}

.appointment-scheduler-service-employees__item input[type="radio"]:checked + .appointment-scheduler-service-employees__card .appointment-scheduler-service-employees__body {
	background: linear-gradient(120deg, rgba(236, 72, 153, 0.12), rgba(99, 102, 241, 0.12));
	border-radius: 14px;
	padding: 6px 12px;
}

.appointment-scheduler-service-employees__item input[type="radio"]:checked + .appointment-scheduler-service-employees__card .appointment-scheduler-service-employees__name {
	color: #ec4899;
}

.appointment-scheduler-service-employees__status {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: #0f172a;
	background: linear-gradient(120deg, rgba(226, 232, 255, 0.9), rgba(248, 215, 248, 0.8));
	border-radius: 999px;
	padding: 5px 16px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.appointment-scheduler-service-employees__status::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
}


.appointment-scheduler-service-employees__indicator {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid rgba(148, 163, 184, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex: 0 0 auto;
	margin-left: auto;
	transition: all 0.2s ease;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(226, 232, 255, 0.85));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.appointment-scheduler-service-employees__indicator::before {
	content: '';
	width: 12px;
	height: 8px;
	border-left: 2px solid rgba(15, 23, 42, 0.35);
	border-bottom: 2px solid rgba(15, 23, 42, 0.35);
	transform: rotate(-45deg);
}

.appointment-scheduler-service-employees__item input[type="radio"]:checked + .appointment-scheduler-service-employees__card .appointment-scheduler-service-employees__indicator {
	border-color: transparent;
	background: linear-gradient(135deg, #22c55e, #4ade80);
	box-shadow:
		0 0 12px rgba(34, 197, 94, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.appointment-scheduler-service-employees__item input[type="radio"]:checked + .appointment-scheduler-service-employees__card .appointment-scheduler-service-employees__indicator::before {
	border-left-color: #0f172a;
	border-bottom-color: #0f172a;
	border-width: 2.5px;
}

.appointment-scheduler-service-employees__empty {
	margin: 8px 0 0;
	font-size: 13px;
	color: #b45309;
	font-weight: 600;
}

/* Calendar layout + color */
.appointment-scheduler-calendar {
	background: linear-gradient(135deg, #eef2ff, #fdf2f8);
	padding: 18px;
	border-radius: 18px;
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.appointment-scheduler-calendar__table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 14px;
	overflow: hidden;
}

.appointment-scheduler-calendar__table thead th {
	background: linear-gradient(120deg, #a5b4fc, #f9a8d4);
	color: #0f172a;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 13px;
	padding: 12px;
}

.appointment-scheduler-calendar__table tbody td {
	padding: 0;
}

.appointment-scheduler-calendar__cell {
	min-height: 120px;
	padding: 12px;
	background: #fff;
	border: 1px solid #e2e8f0;
	position: relative;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.appointment-scheduler-calendar__cell:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(99, 102, 241, 0.15);
}

.appointment-scheduler-calendar__cell--today {
	border-color: #a5b4fc;
	box-shadow: inset 0 0 0 2px rgba(99, 102, 241, 0.35);
}

.appointment-scheduler-calendar__cell--busy {
	background: linear-gradient(145deg, rgba(250, 250, 250, 0.9), rgba(236, 252, 203, 0.6));
}

.appointment-scheduler-calendar__day-number {
	font-weight: 700;
	font-size: 18px;
	color: #1e1b4b;
	background: rgba(15, 23, 42, 0.05);
	border-radius: 12px;
	padding: 6px 10px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.appointment-scheduler-calendar__day-number::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: linear-gradient(120deg, #6366f1, #ec4899);
}

.appointment-scheduler-calendar__cell li {
	margin-bottom: 8px;
	list-style: none;
}

.appointment-scheduler-calendar__item {
	border-radius: 12px;
	padding: 10px 12px;
	background: #f8fafc;
	display: block;
	border: 1px solid transparent;
	color: #0f172a;
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}
.appointment-scheduler-calendar__item strong {
	display: block;
}

.appointment-scheduler-calendar__item--pending {
	background: linear-gradient(120deg, #fff7ed, #fce7f3);
	border-color: rgba(249, 115, 22, 0.35);
}
.appointment-scheduler-calendar__item--confirmed {
	background: linear-gradient(120deg, #dcfce7, #bbf7d0);
	border-color: rgba(25, 135, 84, 0.4);
}
.appointment-scheduler-calendar__item--waitlist {
	background: linear-gradient(120deg, #f3e8ff, #e9d5ff);
	border-color: rgba(111, 66, 193, 0.35);
}
.appointment-scheduler-calendar__item--completed {
	background: linear-gradient(120deg, #ecfccb, #d9f99d);
	border-color: rgba(74, 222, 128, 0.45);
}
.appointment-scheduler-calendar__item--cancelled {
	background: linear-gradient(120deg, #fee2e2, #ffe4e6);
	border-color: rgba(248, 113, 113, 0.4);
}

.appointment-scheduler-calendar__item-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 6px;
}

.appointment-scheduler-calendar__time {
	font-weight: 700;
	color: #0f172a;
}

.appointment-scheduler-calendar__status {
	border-radius: 999px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 4px 10px;
	color: #fff;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.appointment-scheduler-calendar__status::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
}

.appointment-scheduler-calendar__status--pending { background: #f97316; }
.appointment-scheduler-calendar__status--confirmed { background: #198754; }
.appointment-scheduler-calendar__status--waitlist { background: #6f42c1; }
.appointment-scheduler-calendar__status--completed { background: #16a34a; }
.appointment-scheduler-calendar__status--cancelled { background: #ef4444; }

.appointment-scheduler-calendar__cell--has-pending { box-shadow: inset 0 0 0 2px rgba(249, 115, 22, 0.3); }
.appointment-scheduler-calendar__cell--has-confirmed { box-shadow: inset 0 0 0 2px rgba(25, 135, 84, 0.28); }
.appointment-scheduler-calendar__cell--has-waitlist { box-shadow: inset 0 0 0 2px rgba(111, 66, 193, 0.28); }
.appointment-scheduler-calendar__cell--has-completed { box-shadow: inset 0 0 0 2px rgba(22, 163, 74, 0.35); }
.appointment-scheduler-calendar__cell--has-cancelled { box-shadow: inset 0 0 0 2px rgba(239, 68, 68, 0.3); }

/* Employee picker layout override */
.appointment-scheduler-service-employees__list,
.appointment-scheduler-service-employees__item,
.appointment-scheduler-service-employees__card {
	box-sizing: border-box;
}

.appointment-scheduler-service-employees__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	align-items: stretch;
	padding: 14px;
	background: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
	.appointment-scheduler-service-employees__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.appointment-scheduler-service-employees__item {
	display: block;
}

.appointment-scheduler-service-employees__card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 14px;
	border: 2px solid transparent;
	background: #fff;
	width: 100%;
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.appointment-scheduler-service-employees__card-border,
.appointment-scheduler-service-employees__indicator {
	display: none;
}

.appointment-scheduler-service-employees__card-inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	padding: 0;
	background: transparent;
	box-shadow: none;
	width: 100%;
}

.appointment-scheduler-service-employees__avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	flex: 0 0 50px;
	background: #e2e8f0;
}

.appointment-scheduler-service-employees__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.appointment-scheduler-service-employees__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	gap: 4px;
	min-width: 0;
}

.appointment-scheduler-service-employees__name {
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

.appointment-scheduler-service-employees__status {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: #475569;
	background: #f1f5f9;
	padding: 4px 10px;
}

.appointment-scheduler-service-employees__item input[type="radio"]:checked + .appointment-scheduler-service-employees__card {
	border-color: #0d6efd;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Booking form refresh */
.appointment-scheduler-form-wrapper {
	max-width: 820px;
	margin: 32px auto;
	padding: 28px;
	border-radius: 16px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
	overflow: visible;
}

@media (max-width: 640px) {
	.appointment-scheduler-form-wrapper {
		margin: 20px 16px;
		padding: 20px;
	}
}

.appointment-scheduler-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.appointment-scheduler-form-fields {
	display: grid;
	gap: 20px;
	overflow: visible;
}

.appointment-scheduler-form-field {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
	width: 100%;
	box-sizing: border-box;
}

.appointment-scheduler-form-field label {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	box-sizing: border-box;
	position: static;
	float: none;
	line-height: 1.4;
}

.appointment-scheduler-form-row--datetime {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	row-gap: 20px;
	column-gap: 20px;
	align-items: start;
	grid-auto-rows: auto;
	overflow: visible;
}

@media (min-width: 720px) {
	.appointment-scheduler-form-row--datetime {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.appointment-scheduler-form label {
	font-size: 13px;
	font-weight: 600;
	color: #475569;
	text-transform: none;
	letter-spacing: 0.01em;
}

.appointment-scheduler-form input,
.appointment-scheduler-form select,
.appointment-scheduler-form textarea {
	box-sizing: border-box;
	max-width: 100%;
}

.appointment-scheduler-label {
	font-size: 13px;
	font-weight: 600;
	color: #0f172a;
}

.appointment-scheduler-control {
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	padding: 12px 14px;
	font-size: 15px;
	line-height: 1.4;
	height: 48px;
	background: #ffffff;
	color: #0f172a;
	box-shadow: none;
	width: 100%;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.appointment-scheduler-control::placeholder {
	color: #94a3b8;
}

.appointment-scheduler-control:disabled {
	background: #f1f5f9;
	color: #64748b;
	border-color: #e2e8f0;
	cursor: not-allowed;
}

.appointment-scheduler-form-field .as-date-picker-wrap {
	width: 100%;
}

.appointment-scheduler-form-fields > * {
	min-width: 0;
}

.appointment-scheduler-form-row--datetime > .appointment-scheduler-form-field {
	min-width: 0;
	width: 100%;
	margin-bottom: 0;
}

.appointment-scheduler-form textarea.appointment-scheduler-control {
	height: auto;
	min-height: 120px;
}

.as-calendar-day.is-disabled {
	background: #f8fafc;
	color: #cbd5e1;
	border-color: transparent;
	cursor: not-allowed;
}

.as-calendar-day.is-disabled:hover {
	background: #f8fafc;
	border-color: transparent;
}

.appointment-scheduler-control:focus,
.appointment-scheduler-control:focus-visible {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
	outline: none;
}

.appointment-scheduler-control[aria-invalid="true"] {
	border-color: #ef4444;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
}

.appointment-scheduler-field-error,
.appointment-scheduler-slot-notice {
	color: #b91c1c;
	font-size: 12px;
	line-height: 1.4;
	margin: 0;
	min-height: 16px;
}

.appointment-scheduler-field-error:empty {
	display: none;
}

.appointment-scheduler-submit {
	border-radius: 12px;
	background: #111827;
	color: #fff;
	padding: 12px 20px;
	font-size: 15px;
	font-weight: 600;
	width: 100%;
	box-shadow: 0 10px 20px rgba(17, 24, 39, 0.2);
}

.appointment-scheduler-submit:hover {
	transform: none;
	box-shadow: 0 12px 26px rgba(17, 24, 39, 0.28);
	background: #0f172a;
}

@media (min-width: 720px) {
	.appointment-scheduler-submit {
		width: auto;
		align-self: flex-start;
	}
}

.appointment-scheduler-notice {
	border-radius: 12px;
	border: 1px solid transparent;
	background: #f8fafc;
}

.appointment-scheduler-notice--error {
	border-color: rgba(248, 113, 113, 0.35);
	background: #fef2f2;
	color: #b91c1c;
}

.appointment-scheduler-notice--success {
	border-color: rgba(74, 222, 128, 0.3);
	background: #ecfdf3;
	color: #166534;
}

.appointment-scheduler-status-screen {
	background: linear-gradient(180deg, #eef2ff 0%, #fff7ed 100%);
	min-height: 100vh;
	margin: 0;
}

.appointment-scheduler-status-page {
	max-width: 760px;
}

.appointment-scheduler-status-page__header {
	margin-bottom: 18px;
}

.appointment-scheduler-status-page__eyebrow {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #7c3aed;
}

.appointment-scheduler-status-page__title {
	margin: 0;
	font-size: clamp(28px, 5vw, 40px);
	line-height: 1.05;
	color: #0f172a;
}

.appointment-scheduler-status-page__summary {
	margin: 12px 0 0;
	color: #475569;
	font-size: 15px;
	line-height: 1.6;
}

.appointment-scheduler-status-card {
	border: 1px solid rgba(148, 163, 184, 0.4);
	border-radius: 20px;
	padding: 22px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

.appointment-scheduler-status-card__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
}

.appointment-scheduler-status-card__item {
	padding: 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(226, 232, 240, 0.9);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.appointment-scheduler-status-card__label {
	display: block;
	margin-bottom: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #64748b;
}

.appointment-scheduler-status-card__value,
.appointment-scheduler-status-card__badge {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	font-size: 16px;
	font-weight: 700;
	color: #0f172a;
}

.appointment-scheduler-status-card__badge {
	padding: 4px 12px;
	border-radius: 999px;
	border: 1px solid #dbeafe;
	background: #eff6ff;
	font-weight: 800;
}

.appointment-scheduler-status-card__badge--pending {
	background: #fff7ed;
	border-color: #fdba74;
	color: #9a3412;
}

.appointment-scheduler-status-card__badge--confirmed {
	background: #dcfce7;
	border-color: #4ade80;
	color: #14532d;
}

.appointment-scheduler-status-card__badge--completed {
	background: #ecfdf3;
	border-color: #86efac;
	color: #166534;
}

.appointment-scheduler-status-card__badge--cancelled {
	background: #fef2f2;
	border-color: #fca5a5;
	color: #991b1b;
}

.appointment-scheduler-status-card__badge--waitlist {
	background: #ede9fe;
	border-color: #a78bfa;
	color: #4c1d95;
}

.appointment-scheduler-status-card__actions {
	margin-top: 18px;
	display: flex;
	justify-content: flex-start;
}

.appointment-scheduler-status-card__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 999px;
	background: linear-gradient(135deg, #0f766e, #0f5f57);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 12px 24px rgba(15, 118, 110, 0.18);
}

.appointment-scheduler-status-card__action:hover,
.appointment-scheduler-status-card__action:focus {
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

@media (max-width: 640px) {
	.appointment-scheduler-status-page {
		margin: 16px;
		padding: 22px;
	}

	.appointment-scheduler-status-card {
		padding: 16px;
	}

	.appointment-scheduler-status-card__grid {
		grid-template-columns: 1fr;
	}

	.appointment-scheduler-status-card__item {
		padding: 14px;
	}
}

/* Bootstrap-friendly overrides for public plugin UI. */
.appointment-scheduler-bootstrap.appointment-scheduler-wrapper {
	border: 1px solid var(--bs-border-color, #dee2e6);
	border-radius: 1rem;
	padding: 2rem;
	background: #fff;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
	max-width: 760px;
}

.appointment-scheduler-bootstrap.appointment-scheduler-wrapper::before {
	display: none;
}

.appointment-scheduler-bootstrap .appointment-scheduler-form label {
	text-transform: none;
	letter-spacing: normal;
	font-size: 0.95rem;
	font-weight: 600;
	color: #212529;
}

.appointment-scheduler-bootstrap .appointment-scheduler-form input,
.appointment-scheduler-bootstrap .appointment-scheduler-form select,
.appointment-scheduler-bootstrap .appointment-scheduler-form textarea {
	border: 1px solid var(--bs-border-color, #ced4da);
	border-radius: 0.75rem;
	padding: 0.75rem 0.875rem;
	background: #fff;
	box-shadow: none;
}

.appointment-scheduler-bootstrap .appointment-scheduler-form select:not([multiple]):not([size]) {
	padding-right: 2.75rem;
	background-image:
		linear-gradient(45deg, transparent 50%, #6c757d 50%),
		linear-gradient(135deg, #6c757d 50%, transparent 50%);
	background-position:
		calc(100% - 1.15rem) calc(50% - 0.14rem),
		calc(100% - 0.8rem) calc(50% - 0.14rem);
	background-repeat: no-repeat, no-repeat;
	background-size: 0.55rem 0.55rem, 0.55rem 0.55rem;
}

.appointment-scheduler-bootstrap .appointment-scheduler-form select[multiple],
.appointment-scheduler-bootstrap .appointment-scheduler-form select[size]:not([size="1"]) {
	padding-right: 0.875rem;
	background-image: none;
}

.appointment-scheduler-bootstrap .appointment-scheduler-form input:focus,
.appointment-scheduler-bootstrap .appointment-scheduler-form select:focus,
.appointment-scheduler-bootstrap .appointment-scheduler-form textarea:focus {
	border-color: #86b7fe;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
	transform: none;
}

.appointment-scheduler-bootstrap .appointment-scheduler-notice {
	border-radius: 0.85rem;
	box-shadow: none;
	font-weight: 500;
}

.appointment-scheduler-bootstrap .appointment-scheduler-submit {
	margin-top: 1.25rem;
	border-radius: 0.75rem;
	background: var(--bs-primary, #0d6efd);
	box-shadow: none;
}

.appointment-scheduler-bootstrap .appointment-scheduler-submit:hover {
	background: #0b5ed7;
	transform: none;
	box-shadow: none;
}

.appointment-scheduler-bootstrap .appointment-scheduler-consent-wrapper,
.appointment-scheduler-bootstrap .appointment-scheduler-status-card {
	border-radius: 1rem;
	border: 1px solid var(--bs-border-color, #dee2e6);
	background: #fff;
	box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.06);
}

.appointment-scheduler-bootstrap .appointment-scheduler-status-page__eyebrow {
	color: var(--bs-primary, #0d6efd);
}

.appointment-scheduler-bootstrap .appointment-scheduler-status-card__action {
	border-radius: 0.75rem;
}

.appointment-scheduler-bootstrap {
	--as-switch-width: 3rem;
	--as-switch-height: 1.6rem;
	--as-switch-knob-size: 1.2rem;
	--as-switch-knob-offset: 0.2rem;
	--as-switch-track-color: #d1d5db;
	--as-switch-track-active: #0d6efd;
	--as-switch-track-disabled: #adb5bd;
	--as-switch-knob-color: rgba(255, 255, 255, 0.98);
	--as-switch-knob-disabled: #e9ecef;
	--as-switch-focus-ring: rgba(13, 110, 253, 0.25);
}

.appointment-scheduler-bootstrap .custom-switch-wrap {
	background: #fff;
	border: 1px solid #dee2e6;
	border-radius: 14px;
	padding: 14px 16px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
	max-width: 420px;
}

.appointment-scheduler-bootstrap .custom-switch-wrap.custom-switch-wrap--full {
	max-width: none;
	width: 100%;
}

.appointment-scheduler-bootstrap .custom-switch-wrap.custom-switch-wrap--inline,
.appointment-scheduler-bootstrap .custom-switch-wrap.custom-switch-wrap--compact {
	display: inline-block;
	max-width: none;
	padding: 10px 14px;
	width: auto;
}

.appointment-scheduler-bootstrap .custom-switch-wrap.custom-switch-wrap--table {
	display: inline-block;
	max-width: none;
	min-width: 180px;
	padding: 10px 14px;
}

.appointment-scheduler-bootstrap .custom-switch-wrap.custom-switch-wrap--center {
	margin-inline: auto;
	text-align: center;
}

.appointment-scheduler-bootstrap .custom-switch-wrap .form-check {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin: 0;
	min-height: 44px;
	padding-left: 0;
}

.appointment-scheduler-bootstrap .custom-switch-wrap.custom-switch-wrap--inline .form-check,
.appointment-scheduler-bootstrap .custom-switch-wrap.custom-switch-wrap--compact .form-check,
.appointment-scheduler-bootstrap .custom-switch-wrap.custom-switch-wrap--table .form-check {
	min-height: 0;
}

.appointment-scheduler-bootstrap .custom-switch-wrap .form-check-label {
	flex: 1 1 auto;
	font-size: 15px;
	font-weight: 600;
	color: #212529;
	cursor: pointer;
	margin: 0;
}

.appointment-scheduler-bootstrap .custom-switch-wrap.custom-switch-wrap--inline .form-check-label,
.appointment-scheduler-bootstrap .custom-switch-wrap.custom-switch-wrap--compact .form-check-label,
.appointment-scheduler-bootstrap .custom-switch-wrap.custom-switch-wrap--table .form-check-label {
	font-size: 14px;
}

.appointment-scheduler-bootstrap .form-check-input {
	background-image: none !important;
}

.appointment-scheduler-bootstrap .form-check-input:checked[type="checkbox"] {
	background-image:
		linear-gradient(45deg, transparent 43%, #fff 43%, #fff 57%, transparent 57%),
		linear-gradient(-45deg, transparent 52%, #fff 52%, #fff 66%, transparent 66%) !important;
	background-position:
		calc(50% - 0.12rem) calc(50% + 0.02rem),
		calc(50% + 0.1rem) calc(50% - 0.06rem);
	background-repeat: no-repeat, no-repeat;
	background-size: 0.45rem 0.85rem, 0.82rem 0.82rem;
}

.appointment-scheduler-bootstrap .form-check-input:checked[type="radio"] {
	background-image: radial-gradient(circle, #fff 0 34%, transparent 36%) !important;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.appointment-scheduler-bootstrap .form-check-input[type="checkbox"]:indeterminate {
	background-image: linear-gradient(#fff, #fff) !important;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 0.65rem 0.14rem;
}

.appointment-scheduler-bootstrap .form-switch input.form-check-input {
	width: 48px;
	height: 26px;
	padding: 0;
	appearance: none;
	-webkit-appearance: none;
	background-color: #d1d5db;
	background-image: radial-gradient(circle, #fff 0 56%, transparent 57%) !important;
	background-repeat: no-repeat;
	background-size: 20px 20px;
	background-position: left 4px center !important;
	border-radius: 50px;
	border: none;
	position: relative;
	cursor: pointer;
	transition: background-color 0.25s ease-in-out, background-position 0.25s ease-in-out;
	box-shadow: none !important;
}

.appointment-scheduler-bootstrap .form-switch input.form-check-input:checked {
	background-color: #0d6efd;
	background-image: radial-gradient(circle, #fff 0 56%, transparent 57%) !important;
	background-position: right 4px center !important;
}

.appointment-scheduler-bootstrap .form-switch input.form-check-input:checked[type="checkbox"] {
	background-image: radial-gradient(circle, #fff 0 56%, transparent 57%) !important;
	background-position: right 4px center !important;
}

.appointment-scheduler-bootstrap .form-switch input.form-check-input:focus {
	box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, .25) !important;
}

.appointment-scheduler-bootstrap .form-switch input.form-check-input:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.appointment-scheduler-bootstrap .form-switch .form-check-input:hover {
	filter: brightness(0.95);
}

.appointment-scheduler-bootstrap .form-switch .form-check-label {
	margin-left: 10px;
	user-select: none;
}

.appointment-scheduler-bootstrap .custom-switch-wrap .form-check-input {
	flex: 0 0 auto;
	width: 48px;
	height: 26px;
	padding: 0;
	appearance: none;
	-webkit-appearance: none;
	margin-left: 0;
	margin-top: 0;
	cursor: pointer;
	background-color: #d1d5db;
	background-image: radial-gradient(circle, #fff 0 56%, transparent 57%) !important;
	background-repeat: no-repeat;
	background-size: 20px 20px;
	background-position: left 4px center !important;
	border: none;
	border-radius: 50px;
	box-shadow: none !important;
	transition: background-color 0.25s ease-in-out, background-position 0.25s ease-in-out;
}

.appointment-scheduler-bootstrap .custom-switch-wrap .form-check-input:checked {
	background-color: #0d6efd;
	border: none;
	background-image: radial-gradient(circle, #fff 0 56%, transparent 57%) !important;
	background-position: right 4px center !important;
}

.appointment-scheduler-bootstrap .custom-switch-wrap .form-check-input:focus {
	box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, .25) !important;
}

.appointment-scheduler-bootstrap .custom-switch-wrap .form-check-input:disabled {
	background-color: #d1d5db;
	background-image: radial-gradient(circle, #fff 0 56%, transparent 57%) !important;
	cursor: not-allowed;
	opacity: 0.5;
}

.appointment-scheduler-bootstrap .custom-switch-wrap .custom-switch-desc,
.appointment-scheduler-bootstrap .custom-switch-wrap .form-text {
	margin-top: 6px;
	font-size: 13px;
	color: #6c757d;
}

/* Final UI polish */
.appointment-scheduler-bootstrap .appointment-scheduler-form-wrapper {
	max-width: min(960px, 100%);
	margin: 24px auto;
	padding: clamp(18px, 2vw, 32px);
	border: 1px solid #d9e2ec;
	border-radius: 1.25rem;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.08);
}

.appointment-scheduler-bootstrap .appointment-scheduler-form {
	gap: 1.5rem;
}

.appointment-scheduler-bootstrap .appointment-scheduler-form-fields {
	display: grid;
	gap: 1rem 1.25rem;
}

@media (min-width: 768px) {
	.appointment-scheduler-bootstrap .appointment-scheduler-form-fields {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.appointment-scheduler-bootstrap .appointment-scheduler-form-row--datetime {
		grid-column: 1 / -1;
	}

	.appointment-scheduler-bootstrap .appointment-scheduler-submit {
		width: auto;
		min-width: 15rem;
		align-self: flex-start;
	}
}

.appointment-scheduler-bootstrap .appointment-scheduler-form label,
.appointment-scheduler-bootstrap .appointment-scheduler-label {
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
	color: #0f172a;
}

.appointment-scheduler-bootstrap .appointment-scheduler-control {
	min-height: 3.2rem;
	padding: 0.85rem 1rem;
	border: 1px solid #cbd5e1;
	border-radius: 0.9rem;
	background: #fff;
	color: #0f172a;
	box-shadow: none;
}

.appointment-scheduler-bootstrap textarea.appointment-scheduler-control {
	min-height: 7.5rem;
}

.appointment-scheduler-bootstrap .appointment-scheduler-control::placeholder {
	color: #94a3b8;
}

.appointment-scheduler-bootstrap .appointment-scheduler-field-error,
.appointment-scheduler-bootstrap .appointment-scheduler-slot-notice {
	font-size: 0.8rem;
	line-height: 1.5;
}

.appointment-scheduler-bootstrap .appointment-scheduler-submit {
	width: 100%;
	min-height: 3.2rem;
	margin-top: 0.25rem;
	border-radius: 0.9rem;
	font-weight: 700;
	box-shadow: 0 0.75rem 1.5rem rgba(13, 110, 253, 0.16);
}

.appointment-scheduler-bootstrap .appointment-scheduler-notice {
	padding: 0.95rem 1rem;
	border-radius: 1rem;
	border-width: 1px;
	box-shadow: none;
}

.appointment-scheduler-bootstrap .appointment-scheduler-consent-wrapper {
	padding: 1rem 1.1rem;
	border-radius: 1rem;
	background: #fff;
}

.appointment-scheduler-bootstrap .appointment-scheduler-consent__text {
	font-size: 0.95rem;
	line-height: 1.6;
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees {
	margin-top: 0;
	padding: 1.1rem;
	border: 1px solid #dbe4ee;
	border-radius: 1rem;
	background: #f8fafc;
	box-shadow: none;
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__label {
	margin-bottom: 0.9rem;
	font-size: 0.92rem;
	color: #0f172a;
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__label::before {
	content: none;
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__list {
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
	background: transparent;
	box-shadow: none;
	border-radius: 0;
	justify-content: stretch;
}

@media (min-width: 768px) {
	.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1200px) {
	.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__item {
	flex: initial;
	max-width: none;
	min-width: 0;
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__card {
	padding: 0;
	border: 1px solid #dbe4ee;
	border-radius: 1rem;
	background: #fff;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__card-border,
.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__item input[type="radio"]:checked + .appointment-scheduler-service-employees__card::after,
.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__avatar::after {
	display: none;
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__card-inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.9rem;
	padding: 1rem;
	border-radius: 0;
	background: #fff;
	box-shadow: none;
	text-align: left;
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__avatar {
	width: 3.5rem;
	height: 3.5rem;
	flex: 0 0 3.5rem;
	border-radius: 1rem;
	background: #e2e8f0;
	box-shadow: none;
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__body {
	align-items: flex-start;
	text-align: left;
	min-width: 0;
	padding: 0;
	background: transparent;
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__name {
	max-width: 100%;
	font-size: 0.95rem;
	line-height: 1.45;
	white-space: normal;
	overflow: visible;
	text-overflow: clip;
	overflow-wrap: anywhere;
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__status {
	padding: 0.25rem 0.65rem;
	border-radius: 999px;
	background: #eff6ff;
	color: #1d4ed8;
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	box-shadow: none;
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__indicator {
	width: 1.35rem;
	height: 1.35rem;
	flex: 0 0 1.35rem;
	margin-left: 0.25rem;
	border: 2px solid #94a3b8;
	background: #fff;
	box-shadow: none;
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__indicator::before {
	width: 0.48rem;
	height: 0.28rem;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	opacity: 0;
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__item:hover .appointment-scheduler-service-employees__card {
	transform: translateY(-1px);
	border-color: #93c5fd;
	box-shadow: 0 0.75rem 1.75rem rgba(15, 23, 42, 0.08);
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__item input[type="radio"]:checked + .appointment-scheduler-service-employees__card {
	transform: none;
	border-color: #0d6efd;
	box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12);
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__item input[type="radio"]:checked + .appointment-scheduler-service-employees__card .appointment-scheduler-service-employees__card-inner,
.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__item input[type="radio"]:checked + .appointment-scheduler-service-employees__card .appointment-scheduler-service-employees__body {
	background: transparent;
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__item input[type="radio"]:checked + .appointment-scheduler-service-employees__card .appointment-scheduler-service-employees__name {
	color: #0f172a;
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__item input[type="radio"]:checked + .appointment-scheduler-service-employees__card .appointment-scheduler-service-employees__avatar {
	transform: none;
	box-shadow: inset 0 0 0 2px rgba(13, 110, 253, 0.16);
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__item input[type="radio"]:checked + .appointment-scheduler-service-employees__card .appointment-scheduler-service-employees__status {
	background: #dbeafe;
	color: #1d4ed8;
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__item input[type="radio"]:checked + .appointment-scheduler-service-employees__card .appointment-scheduler-service-employees__indicator {
	border-color: #0d6efd;
	background: #0d6efd;
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__item input[type="radio"]:checked + .appointment-scheduler-service-employees__card .appointment-scheduler-service-employees__indicator::before {
	opacity: 1;
}

.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__empty {
	margin-top: 0.85rem;
	padding: 0.85rem 1rem;
	border: 1px dashed #cbd5e1;
	border-radius: 0.9rem;
	background: #fff;
	color: #8b5e34;
	font-weight: 600;
}

.appointment-scheduler-status-screen {
	background: #f8fafc;
}

.appointment-scheduler-status-page {
	max-width: 820px;
	padding: clamp(18px, 2vw, 32px);
	border: 1px solid #dbe4ee;
	border-radius: 1.25rem;
	background: #fff;
	box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.08);
}

.appointment-scheduler-status-page::before {
	content: none;
	display: none;
}

.appointment-scheduler-status-page__eyebrow {
	color: #0d6efd;
}

.appointment-scheduler-status-card {
	padding: 1.25rem;
	border: 1px solid #dbe4ee;
	border-radius: 1rem;
	background: #f8fafc;
	box-shadow: none;
}

.appointment-scheduler-status-card__item {
	padding: 1rem;
	border-radius: 0.9rem;
	background: #fff;
	box-shadow: none;
}

.appointment-scheduler-status-card__action {
	box-shadow: none;
}

@media (max-width: 640px) {
	.appointment-scheduler-bootstrap .appointment-scheduler-form-wrapper {
		margin: 16px;
		padding: 18px;
	}

	.appointment-scheduler-status-page {
		margin: 16px;
		padding: 18px;
	}

	.appointment-scheduler-bootstrap .appointment-scheduler-service-employees__card-inner {
		align-items: flex-start;
	}
}
