/* Arizona Counties Map – CSS */

#arizona-map-wrapper {
  font-family: system-ui, "Segoe UI", Roboto, Arial;
}

/* Buttons (same look as homepage) */
.alabama-btn {
  background: #F43676;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(244, 54, 118, 0.18);
}

/* County label text (reuse same class name as homepage) */
.leaflet-overlay-pane svg .state-label-text {
  font-family: system-ui, "Segoe UI", Roboto, Arial;
  font-size: 10px;
  font-weight: 600;
  fill: #fff;
  stroke: rgba(0, 0, 0, 0.45);
  stroke-width: 2;
  paint-order: stroke;
  text-anchor: middle;
  dominant-baseline: central;
  pointer-events: none;
}

@media (max-width: 768px) {
  .leaflet-overlay-pane svg .state-label-text {
    font-size: 8px;
  }
}

/* Dark mode effect (map container only) */
#arizona-map.dark-mode {
  filter: brightness(0.85) contrast(1.1);
}