@font-face {
  font-family: 'vazir';
  src: url('fonts/vazir.ttf') format('truetype');
}


.containermap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-height: 80vh;
  align-items: start;
}

.iran-map {
  grid-column: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.provinces-info {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.iran-map svg {
  width: 100%;
  max-width: 500px;
  height: auto;
  max-height: 500px;
}

.provinces-info h5 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

#province-svg-container svg {
  width: 100%;
  max-width: 500px;
  height: auto;
  max-height: 400px;
}

.iran-map svg text {
  font-family: 'vazir';
  fill: #454545;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
}

.react-map-water {
  fill: #7bdaff !important;
}

.city-path {
  cursor: pointer;
}

.text-gilan { font-size: 20px; }
.text-alborz { font-size: 18px; }
.text-khorasan-razavi { font-size: 21px; }
.text-khorasan-shomali { font-size: 18px; }
.text-golestan { font-size: 21px; }
.text-mazandaran { font-size: 20px; }
.text-ardabil { font-size: 15px; }
.text-azarbayjan-sharghi { font-size: 18px; }
.text-azarbayjan-gharbi { font-size: 19px; }
.text-zanjan { font-size: 20px; }
.text-kordestan { font-size: 20px; }
.text-kermanshah { font-size: 20px; }
.text-ilam { font-size: 20px; }
.text-hamedan { font-size: 19px; }
.text-qazvin { font-size: 20px; }
.text-lorestan { font-size: 21px; }
.text-khuzestan { font-size: 21px; }
.text-kohgiluyeh { font-size: 12px; }
.text-chaharmahal { font-size: 13px; }
.text-markazi { font-size: 19px; }
.text-qom { font-size: 18px; }
.text-esfahan { font-size: 21px; }
.text-tehran { font-size: 21px; }
.text-semnan { font-size: 21px; }
.text-khorasan-jonobi { font-size: 21px; }
.text-yazd { font-size: 21px; }
.text-fars { font-size: 21px; }
.text-kerman { font-size: 21px; }
.text-sistan-baluchistan { font-size: 21px; }
.text-bushehr { font-size: 21px; }
.text-hormozgan { font-size: 21px; }

@media (max-width: 1000px) {
  .containermap {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .iran-map {
    grid-column: 1;
  }

  .provinces-info {
    grid-column: 1;
  }

  .iran-map svg,
  #province-svg-container svg {
    max-width: 340px;
    max-height: 340px;
  }
}