/* =============================================================================
 * tooltip.css — styles for the Leaflet territory-name labels on the homelands
 * overlay. Loads on /map/.
 *
 * This file used to also carry a generic hover-tooltip component built on
 * `.tooltip` + `.tooltiptext`. No markup ever used those classes, but `.tooltip`
 * is also the class Bootstrap puts on ITS tooltip root — so the component's
 * `border-bottom: 1px dotted black` was landing on the real Bootstrap tooltips
 * (the legend "ⓘ" buttons), drawing a stray dotted rule under each one. Removed
 * in PR #101 review. Don't reintroduce a bare `.tooltip` rule here; scope any
 * future component to its own class name.
 * ============================================================================= */

/* map.js passes this as a Leaflet tooltip className for the homelands labels. */
.nativetooltip {
	border: none;

	/* background-color: transparent; */
	color: black;
}
