/*
 * Restricts WP Travel Engine's own calendar (flatpickr) in place — days
 * outside any fixed departure's start date are grayed out and inert;
 * only a departure's actual start date is highlighted and clickable.
 * See assets/modal-guard.js.
 */

.flatpickr-day.wptefd-day-unavailable {
	background: #f2f2f2 !important;
	color: #bbb !important;
	cursor: not-allowed !important;
	opacity: 0.6;
	pointer-events: none;
}

.flatpickr-day.wptefd-day-available {
	background: #f7941d !important;
	color: #fff !important;
	border-radius: 4px;
	font-weight: 600;
}

.wptefd-departure-ranges {
	margin: 0 0 20px;
	padding: 14px 16px;
	background: #fafafa;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
}

.wptefd-departure-ranges-title {
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 700;
}

.wptefd-departure-ranges-list {
	margin: 0;
	padding: 0 0 0 18px;
}

.wptefd-departure-ranges-list li {
	margin: 0 0 4px;
}