/**
 * CODER Indicators Maps Styles
 */

.coder-maps-container {
	margin: 20px 0;
}

.coder-map-slider-wrapper {
	margin-bottom: 40px;
}

.coder-map-title {
	font-size: 1.5em;
	margin-bottom: 20px;
	color: #333;
	font-weight: 600;
}

.coder-map-swiper {
	width: 100%;
	height: auto;
	position: relative;
}

.coder-map-swiper .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.coder-map-image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.coder-map-image:hover {
	transform: scale(1.02);
}

.coder-map-image-link {
	display: block;
	width: 100%;
	cursor: zoom-in;
}

.coder-map-swiper .swiper-button-next,
.coder-map-swiper .swiper-button-prev {
	color: #6366f1;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	width: 44px;
	height: 44px;
	margin-top: -22px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

.coder-map-swiper .swiper-button-next:hover,
.coder-map-swiper .swiper-button-prev:hover {
	background: #6366f1;
	color: #fff;
	transform: scale(1.1);
}

.coder-map-swiper .swiper-button-next::after,
.coder-map-swiper .swiper-button-prev::after {
	font-size: 20px;
	font-weight: bold;
}

.coder-map-swiper .swiper-pagination {
	bottom: 10px;
}

.coder-map-swiper .swiper-pagination-bullet {
	background: #6366f1;
	opacity: 0.5;
	width: 10px;
	height: 10px;
}

.coder-map-swiper .swiper-pagination-bullet-active {
	opacity: 1;
	width: 12px;
	height: 12px;
}

/* Lightbox styles */
.coder-map-lightbox {
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.coder-map-lightbox img {
	animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
	from {
		transform: scale(0.9);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.coder-map-lightbox-close {
	transition: all 0.2s ease;
}

.coder-map-lightbox-close:hover {
	transform: scale(1.2);
	color: #ff6b6b !important;
}

/* Responsive */
@media (max-width: 768px) {
	.coder-map-title {
		font-size: 1.2em;
	}
	
	.coder-map-swiper .swiper-button-next,
	.coder-map-swiper .swiper-button-prev {
		width: 36px;
		height: 36px;
		margin-top: -18px;
	}
	
	.coder-map-swiper .swiper-button-next::after,
	.coder-map-swiper .swiper-button-prev::after {
		font-size: 16px;
	}
}





