/* Self-hosted US coverage map (replaces SimpleMaps) */
.us-map {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 2rem auto 0;
}

.us-map__svg {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
}

.us-map__state {
  stroke: #ffffff;
  stroke-width: 1.5;
  cursor: pointer;
  transition: fill 0.12s ease, opacity 0.12s ease;
}

.us-map__state.is-hover,
.us-map__state:focus-visible {
  outline: none;
  opacity: 0.85;
}

.us-map__marker {
  cursor: pointer;
  fill: #ff0067;
  stroke: #ffffff;
  stroke-width: 2;
  transition: opacity 0.12s ease;
}

.us-map__marker:hover,
.us-map__marker:focus-visible {
  opacity: 1;
  outline: none;
}

.us-map__label {
  fill: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-anchor: middle;
  dominant-baseline: central;
  alignment-baseline: central;
  pointer-events: none;
  user-select: none;
}

.us-map__label-pill {
  fill: #88a4bc;
  stroke: #ffffff;
  stroke-width: 1;
  pointer-events: none;
}

.us-map__tooltip {
  position: absolute;
  z-index: 5;
  max-width: 240px;
  padding: 0.55rem 0.75rem;
  border-radius: 5px;
  background: #fff;
  color: #222;
  font: 12px/1.5 Verdana, Arial, Helvetica, sans-serif;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 10px));
  transition: opacity 0.1s ease;
}

.us-map__tooltip.is-visible {
  opacity: 0.95;
}

.us-map__tooltip strong {
  display: block;
  margin-bottom: 0.15rem;
}

.us-map__controls {
  display: flex;
  gap: 0.4rem;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}

.us-map__controls button {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid #636363;
  border-radius: 4px;
  background: #f7f7f7;
  color: #333;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.us-map__controls button:hover {
  background: #eee;
}

@media (max-width: 575px) {
  .us-map {
    margin-top: 1.25rem;
  }
}
