.custom-map-wrapper-7b5324b8 {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.custom-map-container-7b5324b8 {
	width: 100%;
}

.map-zoom-controls-7b5324b8 {
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	z-index: 5;
}

.map-zoom-controls-7b5324b8 button {
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	border-bottom: 1px solid #e6e6e6;
	color: #333333;
	font-size: 24px;
	font-weight: 300;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: background-color 0.2s;
}

.map-zoom-controls-7b5324b8 button:last-child {
	border-bottom: none;
}

.map-zoom-controls-7b5324b8 button:hover {
	background-color: #f4f4f4;
}

.map-info-card-7b5324b8 {
	position: absolute;
	top: 10%;
	right: 5%;
	background-color: #ffffff;
	padding: 35px 40px;
	border-radius: 16px;
	width: auto;
	max-width: 400px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	z-index: 2;
}

.map-info-card-7b5324b8 h3 {
	margin: 0 0 12px;
	font-size: 26px;
	font-weight: 700;
	color: #0b132a;
}

.map-info-card-7b5324b8 p {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: #4f5665;
}

@media (max-width: 768px) {
	.map-info-card-7b5324b8 {
		top: auto;
		bottom: 20px;
		left: 50%;
		right: auto;
		transform: translateX(-50%);
		width: calc(100% - 40px);
		max-width: none;
		padding: 25px;
	}
	
	.map-zoom-controls-7b5324b8 {
		left: 10px;
	}
}