/* Custom Map Slider Styles - Independent from #mobileMap */

.custom-map-slider-container {
	width: 100%;
	position: relative;
}

.custom-map-swiper {
	width: 100%;
	height: 440px;
	position: relative;
	overflow: hidden;
}

.custom-map-swiper-wrapper {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.3s ease;
}

.custom-map-slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	position: relative;
	cursor: pointer;
	display: flex;
	flex-direction: column;
}

.custom-map-map {
	width: 100%;
	flex: 1 1 auto;
	min-height: 0; /* important for flex + Leaflet */
}

.custom-map-province-label {
	width: 100%;
    flex: 0 0 auto;
    color: #222;
    text-align: center;
    font-family: 'Avenir LT Std, 95 Black';
    font-size: 48px;
    line-height: 58px;
    opacity: 10%;
}

/* Navigation Arrows */
.custom-map-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 57px;
	height: 63px;
	cursor: pointer;
	z-index: 9999; /* keep above Leaflet panes/controls */
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
	opacity: 0.7;
	pointer-events: auto;
	user-select: none;
}

.custom-map-nav:hover {
	opacity: 1;
}

.custom-map-nav.disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.custom-map-nav-prev {
	left: 0;
}

.custom-map-nav-next {
	right: 0;
}

.custom-map-nav img {
	width: 100%;
	height: 100%;
	display: block;
	pointer-events: none; /* click targets the button div */
}

/* Mobile Styles */
@media (max-width: 1024px) {
	.custom-map-swiper {
		height: 440px;
	}
	
	.custom-map-nav {
		width: 57px;
		height: 63px;
	}
}

@media (max-width: 768px) {
	.custom-map-swiper {
		height: 400px;
	}
}

/* Ensure Leaflet maps render properly */
.custom-map-slider-container .leaflet-container {
	width: 100%;
	height: 100%;
	background: #f0f0f0;
}
