.fnInt {
    font-family: "Noto Sans Thai", sans-serif !important;
}
.fnTha {
    font-family: "Prompt", sans-serif !important;
}

/* ------ Thailand Maps ------ */
#thailand-map svg {
    width: 100%;       /* ให้ SVG ขยายเต็ม div */
    height: auto;      /* ปรับความสูงตามสัดส่วน */
    display: block;    /* ป้องกัน space ใต้ SVG */
}
#thailand-map path {
    fill: #e0e0e0;
    stroke: #ffffff;
    stroke-width: 1;
    cursor: pointer;
    transition: fill 0.2s ease-in-out;
}
#thailand-map path:hover {
    fill: #f2c40b; /* เขียวเมื่อ hover */
}
#thailand-map path.active {
    fill: #3e9c44 !important; /* แดงค้างสำหรับจังหวัดที่ active */
}
.map-container svg {
  width: 100% !important;
  height: auto !important;
  display: block;
  aspect-ratio: 4 / 5; /* ใช้กับ browser ใหม่ */
}

@media (min-width: 768px) {
  .map-container {
    max-width: 100%;
    height: auto;
  }
}