.map-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 20px 0;
}
.map-item {
	background: #2a2a2a;
	border-radius: 6px;
	padding: 12px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	transition: background 0.2s ease;
}
.map-item:hover {
	background: #333333;
}
.map-name {
	color: #cc5200;
	font-size: 1rem;
	font-weight: bold;
	text-align: center;
	flex: 1;
	transition: color 0.2s ease;
}
.map-item:hover .map-name {
	color: #ff6a00;
}
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.95);
	overflow-y: auto;
}
.modal-content {
	margin: 2% auto;
	max-width: 1200px;
	padding: 20px;
}
.close {
	position: fixed;
	top: 20px;
	right: 40px;
	color: #f1f1f1;
	font-size: 50px;
	font-weight: bold;
	cursor: pointer;
	z-index: 1001;
}
.close:hover {
	color: #cc5200;
}
.carousel-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
.main-image-container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 400px;
}
.main-image {
	max-width: 100%;
	max-height: 70vh;
	width: auto;
	height: auto;
	cursor: pointer;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}
.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.8);
	color: white;
	border: none;
	font-size: 1.8rem;
	width: 60px;
	height: 60px;
	cursor: pointer;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}
.carousel-arrow.left {
	left: 10px;
}
.carousel-arrow.right {
	right: 10px;
}
.carousel-arrow:hover {
	background: rgba(0, 0, 0, 0.9);
}
.carousel-arrow:disabled {
	opacity: 0.3;
	cursor: not-allowed;
	transform: translateY(-50%);
}
.thumbnail-container {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 100%;
	overflow-x: auto;
	padding: 10px 0;
}
.thumbnail {
	width: 120px;
	height: 80px;
	object-fit: cover;
	cursor: pointer;
	border-radius: 5px;
	border: 3px solid transparent;
	transition: all 0.2s ease;
}
.thumbnail:hover {
	border-color: #cc5200;
	transform: scale(1.05);
}
.thumbnail.active {
	border-color: #cc5200;
	box-shadow: 0 0 10px rgba(204, 82, 0, 0.5);
}
