.bd-map-wrapper {
	width: 100%;
	margin: 0 auto;
}

.bd-map-stage {
	position: relative;
	width: 100%;
}

.bd-map-svg {
	display: block;
	width: 100%;
	height: auto;
}

.bd-map-svg path {
	transition: opacity 0.15s ease, filter 0.15s ease;
}

.bd-map-svg path:hover {
	opacity: 0.8;
	filter: brightness(0.97);
}

.bd-map-label-layer {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.bd-map-label {
	position: absolute;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	text-align: center;
	pointer-events: none;
}

.bd-map-label-name {
	font-size: 8px;
	line-height: 1.1;
	color: #222;
	white-space: nowrap;
	text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff;
}

.bd-map-label-logo {
	width: 16px;
	height: 16px;
	object-fit: contain;
	display: block;
}

.bd-map-tooltip {
	position: absolute;
	z-index: 20;
	transform: translate(-50%, calc(-100% - 10px));
	background: #222;
	color: #fff;
	padding: 5px 9px;
	border-radius: 5px;
	font-size: 12px;
	line-height: 1.3;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.1s ease;
}

.bd-map-tooltip.is-visible {
	opacity: 1;
	visibility: visible;
}
