.us-map-section {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 40px 0;
}
.us-map-grid {
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 400px;
}
.us-map-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}
.map-col {
  flex: 2 1 0%;
  align-items: center;
  justify-content: center;
}
.content-col {
  flex: 1 1 0%;
  background: #fff;
  align-items: flex-start;
  justify-content: center;
}
.us-map-placeholder {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: #eee;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.us-map-svg {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.state-path {
  transition: all 0.3s ease;
  stroke: #fff;
  stroke-width: 1;
  cursor: pointer;
}
.state-path:hover {
  opacity: 0.8;
  stroke: #222;
  stroke-width: 2;
}
.insets {
  opacity: 0.8;
}
.map-legend {
  margin-top: 30px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 8px;
}
.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  margin-right: 10px;
}
.legend-text {
  font-size: 14px;
  color: #333;
}
@media (max-width: 900px) {
  .us-map-grid {
    flex-direction: column;
  }
  .us-map-col {
    padding: 24px 12px;
  }
  .us-map-placeholder {
    min-height: 220px;
  }
  .map-container {
    max-width: 100%;
  }
  .insets {
    transform: scale(0.8);
  }
}

/* Adding tooltip styles */
.tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  pointer-events: none;
  z-index: 1000;
  display: none;
}

/* Show tooltip on hover */
.state-path:hover + .tooltip {
  display: block;
} 