.booking-flow-calendar {
	--booking-flow-calendar-border: #d0d7de;
	--booking-flow-calendar-muted: #57606a;
	--booking-flow-calendar-focus: #0969da;
	margin-block: 1.5rem;
}

.booking-flow-calendar__title {
	margin-block-end: .75rem;
}

.booking-flow-calendar__status {
	color: var(--booking-flow-calendar-muted);
	min-height: 1.5em;
}

.booking-flow-calendar__container {
	min-height: 14rem;
}

.booking-flow-calendar .fc {
	--fc-border-color: var(--booking-flow-calendar-border);
	--fc-button-bg-color: #1f2937;
	--fc-button-border-color: #1f2937;
	--fc-button-hover-bg-color: #111827;
	--fc-button-hover-border-color: #111827;
	--fc-button-active-bg-color: #0969da;
	--fc-button-active-border-color: #0969da;
	--fc-today-bg-color: #ddf4ff;
}

.booking-flow-calendar .fc-toolbar-title {
	font-size: clamp(1rem, 2vw, 1.35rem);
}

.booking-flow-calendar .fc-event {
	border-width: 1px;
	font-weight: 600;
}

.booking-flow-calendar .booking-flow-calendar__empty {
	margin: 0;
	padding: 1rem;
	color: var(--booking-flow-calendar-muted);
	text-align: center;
}

.booking-flow-calendar .booking-flow-calendar__event-content {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 1px 2px;
}

.booking-flow-calendar .booking-flow-calendar__event-content--with-image {
	flex-direction: row;
	align-items: flex-start;
	gap: .35rem;
}

.booking-flow-calendar .booking-flow-calendar__event-details {
	display: flex;
	min-width: 0;
	flex: 1;
	flex-direction: column;
}

.booking-flow-calendar .booking-flow-calendar__event-image {
	width: 2.25rem;
	height: 2.25rem;
	flex: 0 0 2.25rem;
	border-radius: 3px;
	object-fit: cover;
}

.booking-flow-calendar .booking-flow-calendar__event-title {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.booking-flow-calendar .booking-flow-calendar__event-time {
	font-size: .8em;
	font-weight: 700;
}

.booking-flow-calendar .booking-flow-calendar__event-state {
	font-size: .75em;
	font-weight: 400;
	opacity: .95;
}

.booking-flow-calendar .booking-flow-calendar-event--past {
	filter: grayscale(.7);
	opacity: .72;
}

.booking-flow-calendar .booking-flow-calendar-event--sold-out {
	background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgba(255,255,255,.22) 5px, rgba(255,255,255,.22) 7px);
}

.booking-flow-calendar .fc-event:focus-visible,
.booking-flow-calendar .fc-button:focus-visible {
	box-shadow: 0 0 0 3px rgba(9, 105, 218, .35);
	outline: 2px solid var(--booking-flow-calendar-focus);
	outline-offset: 2px;
}

@media (max-width: 720px) {
	.booking-flow-calendar .fc-header-toolbar {
		align-items: center;
		flex-wrap: wrap;
		gap: .5rem;
	}

	.booking-flow-calendar .fc-toolbar-chunk:nth-child(2) {
		order: -1;
		width: 100%;
	}

	.booking-flow-calendar .fc-toolbar-title {
		font-size: 1.1rem;
	}

	.booking-flow-calendar .fc-list-event-title {
		font-weight: 600;
	}

	.booking-flow-calendar .fc-list-event-time,
	.booking-flow-calendar .fc-list-event-title {
		padding-block: .5rem;
	}
}
