/* Map container styling */
.map-container {
    position: relative;
    width: 1000px; /* Adjust to match the size of your map image */
    height: 1000px; /* Adjust to match the size of your map image */
    margin: 0 auto; /* Center the map horizontally */
}

/* Invisible hover areas for glowing effect */
.hover-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allow interactions with the map while preventing pointer events on hover areas */
}

.hover-area {
    position: absolute;
    pointer-events: auto;
    background-color: rgba(255, 255, 255, 0); /* Invisible background */
    transition: box-shadow 0.3s ease;
}

.hover-area:hover {
    box-shadow: 0 0 15px 5px rgba(0, 255, 0, 0.7); /* Glowing green outline */
}
