#Asia-Map-container {
  width: 90vw;
  max-width: 800px;
  aspect-ratio: 8 / 5;
  max-height: 500px;
  min-width: 200px;
  min-height: 125px;
  /*border: 2px solid #333;*/
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  margin: auto;
}

.Asia-Map-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.Asia-Map-country {
  fill: #4682b4;
  stroke: #fff;
  stroke-width: 1;
}

.Asia-Map-country:hover {
  fill: #ff4500;
  cursor: pointer;
}

.Asia-Map-error {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 0, 0, 0.8);
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  z-index: 20;
  display: none;
  font-size: 14px;
  max-width: 90%;
  text-align: center;
}

.Asia-Map-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  pointer-events: none;
  z-index: 15;
  display: none;
}

.Asia-Map-button {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 8px 16px;
  background-color: #4682b4;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  z-index: 20;
}

.Asia-Map-button:hover {
  background-color: #ff4500;
}

@media screen and (max-width: 600px) {
  #Asia-Map-container {
    width: 95vw;
    min-width: 200px;
    min-height: 125px;
  }
}

@media screen and (max-width: 600px) {
  .Asia-Map-error {
    font-size: 12px;
    padding: 8px;
  }
}

@media screen and (max-width: 600px) {
  .Asia-Map-tooltip {
    font-size: 12px;
    padding: 4px 8px;
  }
}

@media screen and (max-width: 600px) {
  .Asia-Map-button {
    font-size: 12px;
    padding: 6px 12px;
    right: 5px;
  }
}

