/* ----------------------------------------------------
   Remove any fixed width/height on the SVG:
   (We comment out the 100vw x 100vh rules)
------------------------------------------------------ */

/* 
svg {
    width: 100vw;
    height: 100vh;
    background-color: #f8f8f8;
}
*/

/* Keep a background color if desired, and let the viewBox handle scaling */
svg {
    /* background-color: #f8f8f8; */
    /* No fixed width or height here */
}

/* Ensure the SVG scales responsively within its container */
#map {
    width: 100%;
    height: auto;
    display: block; /* Helps remove scrollbars in some browsers */
}

/* Province paths */
.province {
    /* fill: #BBBBBB; */
    stroke: #FFFFFF;
    stroke-width: 0.5;
    cursor: pointer; /* pointer cursor on hover */
}

/* Region boundaries (optional) */
.region-boundary {
    fill: none;
    stroke: #333;
    stroke-width: 1;
    pointer-events: none;
}

/* Tooltip styling */
.map-tooltip {
    font-family: sans-serif;
    font-size: 14px;
    position: absolute;
    padding: 4px 8px;
    background: #333;
    color: #fff;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.15s ease;
}

/* Province labels (if you have text labels) */
.province-label {
    font-family: sans-serif;
    font-size: 10px;
    fill: #333;
    pointer-events: none; /* So clicks go through to the province path */
}