/**
 * Hide Map Attributions
 * Hides Mapbox and OpenMapTiles credits (kept in background for licensing)
 */

/* Hide Mapbox logo (bottom left) */
.mapboxgl-ctrl-logo {
	display: none !important;
	visibility: hidden !important;
}

/* Hide attribution text (bottom right) */
.mapboxgl-ctrl-attrib,
.mapboxgl-ctrl-attrib-inner,
.mapboxgl-ctrl-attrib-button {
	display: none !important;
	visibility: hidden !important;
}

/* Hide all bottom controls container if empty */
.mapboxgl-ctrl-bottom-left,
.mapboxgl-ctrl-bottom-right {
	display: none !important;
}

/* Alternative: Make them transparent but keep for licensing */
.mapboxgl-ctrl-attrib {
	opacity: 0 !important;
	pointer-events: none !important;
}

/* Hide compact attribution button */
.mapboxgl-compact {
	display: none !important;
}

/* Hide attribution when expanded */
.mapboxgl-compact-show {
	display: none !important;
}
