.setian-map-container {
    position: relative;
    width: 100%;
    height: auto;
}

.setian-map-svg {
    width: 100%;
    height: auto;
}

.state {
    fill: #d3d3d3; /* Default light gray */
    cursor: pointer;
    transition: fill 0.3s ease;
}

.state:hover {
    fill: #FFD24A !important; /* Highlight (yellow) */
}

.corporate {
    fill: #CDE8F7 !important; /* Corporate (light blue) */
}

.available {
    fill: #A8FFAB !important; /* Available (green) */
}

.unavailable {
    fill: #FF6464 !important; /* Unavailable (red) */
}

.default {
    fill: #EEE; /* Default style for states with no data */
}

#tooltip{
  position: absolute;
  width: auto;
  background: rgba(255,255,255);
  color: #103958;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 5px 5px 10px gray;
  display: none;
  z-index: 1000;
}
