/**
 * Community Map – frontend styles
 */

.community-map-container {
	width: 100%;
	min-height: 300px;
	background: transparent !important;
	border: none !important;
}

.community-map-container .leaflet-container {
	background: transparent !important;
	font-family: inherit;
}

.community-map-container .leaflet-tile-pane,
.community-map-container .leaflet-overlay-pane {
	background: transparent;
}

.community-map-container .leaflet-control-attribution {
	background: rgba(0, 0, 0, 0.5) !important;
}

.community-map-container .community-map-tooltip {
	background: rgba(0, 0, 0, 0.85);
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 6px 10px;
	font-size: 13px;
	white-space: nowrap;
}

/* Region hover – oranžová ako na dvadsatjeden.org */
.community-map-container .region-layer {
	cursor: pointer;
}

.community-map-container .region-layer:hover {
	fill-opacity: 1;
}

/* Markery – min. 48px pre mobil (WCAG), priamy odkaz */
.community-map-container .location-marker {
	min-width: 48px;
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.community-map-container .location-marker .marker-link,
.community-map-container .location-marker .marker-span {
	min-width: 48px;
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: inherit;
}

.community-map-container .location-marker .marker-link {
	cursor: pointer;
}

.community-map-container .location-marker .marker-inner {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: darkorange;
	border: 2px solid #000;
	transition: transform 0.15s ease;
}

.community-map-container .location-marker .marker-link:hover .marker-inner,
.community-map-container .location-marker .marker-link:focus .marker-inner {
	transform: scale(1.2);
}

.community-map-container .location-marker img {
	width: 50px;
	height: 50px;
	object-fit: contain;
	border-radius: 50%;
}

/* Popup s odkazom – čistý <a> */
.community-map-container .leaflet-popup-content-wrapper {
	border-radius: 5px;
}

.community-map-container .leaflet-popup-content a {
	display: inline-block;
	padding: 8px 16px;
	background: darkorange;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 500;
}

.community-map-container .leaflet-popup-content a:hover {
	background: #cc7a00;
}

/* Menšie body na mobile */
@media (max-width: 768px) {
	.community-map-container .location-marker {
		min-width: 24px;
		min-height: 24px;
		transform: scale(0.5);
		transform-origin: center center;
	}

	.community-map-container .location-marker .marker-link,
	.community-map-container .location-marker .marker-span {
		min-width: 24px;
		min-height: 24px;
	}

	.community-map-container .location-marker .marker-inner {
		width: 24px;
		height: 24px;
		border-width: 1px;
	}

	.community-map-container .location-marker img {
		width: 28px;
		height: 28px;
	}
}
