/* Inline SVG Map State Selector */
.state-selector {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 3rem 1rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  max-width: 1000px;
  width: 100%;
}

.states-group .state-path {
  transition: all 0.3s ease;
  cursor: pointer;
}

.states-group .state-path:hover {
  fill: #a78bfa;
  stroke: #7c3aed;
  stroke-width: 2;
  filter: drop-shadow(0 4px 8px rgba(124, 58, 237, 0.3));
}

.states-group .state-link:focus .state-path,
.states-group .state-link:active .state-path {
  fill: #fb923c;
  stroke: #ea580c;
  stroke-width: 2.5;
}

.states-group text {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.states-group .state-link:hover text {
  font-size: 16px;
  fill: #7c3aed;
}

@media (max-width: 768px) {
  .map-container {
    padding: 1rem;
  }
  
  .states-group text {
    font-size: 12px;
  }
}
