#map-container {
  position: relative;
  max-width: 1000px;
  max-height: 1000px;
}

#map-container svg {
  width: 100%;
  height: 100%;
}

.fil1,
.fil2 {
  pointer-events: none;
}

.region {
  fill: #f2f2f2 !important;
}

.map-region-selectable {
  transition: fill 0.2s ease;
  pointer-events: auto;
  cursor: pointer;
}

.map-region-selectable:hover,
.map-region-selectable:focus {
  filter: brightness(1.2);
}
 
.map-region-selectable:active {
  outline: none;
}

.map-tooltip {
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 5px;
  border-radius: 3px;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1000;
}

.map-legend-color{
  width: 20px;
  height: 20px;
  margin-right: 5px;
  display: inline-block;
}