/* Altitude BRW Departure Dates Popup — front-end styles */

.brw-dates-icon-trigger {
	position: absolute;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: transform 0.15s ease, background-color 0.15s ease;
}

.brw-dates-icon-trigger:hover,
.brw-dates-icon-trigger:focus-visible {
	transform: scale(1.08);
}

.brw-dates-icon-trigger svg,
.brw-dates-icon-trigger i {
	pointer-events: none;
	line-height: 1;
}

/* Shared modal, injected once into the page, reused by every icon */

.brw-dates-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 100000;
	padding: 20px;
}

.brw-dates-modal-overlay.is-open {
	display: flex;
}

.brw-dates-modal {
	background: #fff;
	width: 100%;
	max-width: 420px;
	max-height: 80vh;
	overflow-y: auto;
	border-radius: 12px;
	padding: 24px;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.brw-dates-modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	border: none;
	background: #f2f2f2;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	color: #333;
}

.brw-dates-modal-close:hover {
	background: #e5e5e5;
}

.brw-dates-modal-title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 4px;
	padding-right: 32px;
}

.brw-dates-modal-subtitle {
	font-size: 13px;
	color: #777;
	margin: 0 0 16px;
}

.brw-dates-modal-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.brw-dates-modal-item {
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 0;
	overflow: hidden;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.brw-dates-modal-item:hover {
	border-color: #ccc;
	background-color: #fafafa;
}

.brw-dates-modal-item-link {
	display: block;
	padding: 12px 14px;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.brw-dates-modal-item-label {
	font-weight: 600;
	font-size: 14px;
	margin: 0 0 2px;
}

.brw-dates-modal-item-range {
	font-size: 13px;
	color: #555;
	margin: 0;
}

.brw-dates-modal-item-guests {
	font-size: 12px;
	color: #999;
	margin: 4px 0 0;
}

.brw-dates-modal-empty {
	font-size: 14px;
	color: #777;
	text-align: center;
	padding: 20px 0;
}

@media (max-width: 480px) {
	.brw-dates-modal {
		padding: 18px;
	}
}
