/* Eventchamp - Leaflet map styling, tuned to match the site's teal brand color */

.gt-map-inner {
	z-index: 1;
}

.gt-map-inner .leaflet-marker-icon {
	background: none;
	border: none;
}

/* Cluster bubbles - match theme main color (#00c6c9) instead of Leaflet's default blue/yellow */
.gt-map-inner .marker-cluster-small,
.gt-map-inner .marker-cluster-medium,
.gt-map-inner .marker-cluster-large {
	background-color: rgba(0, 198, 201, 0.25);
}

.gt-map-inner .marker-cluster-small div,
.gt-map-inner .marker-cluster-medium div,
.gt-map-inner .marker-cluster-large div {
	background-color: #00c6c9;
	color: #ffffff;
	font-weight: 600;
}

/* Popup content reuses the theme's existing .gt-map-popup markup, just strip Leaflet's default padding/shadow so it isn't doubled up */
.gt-leaflet-popup .leaflet-popup-content-wrapper {
	padding: 0;
	border-radius: 8px;
	overflow: hidden;
}

.gt-leaflet-popup .leaflet-popup-content {
	margin: 0;
	width: auto !important;
}

.gt-leaflet-popup .gt-map-popup-wrapper {
	width: 100%;
}
