/* Remove grid lines from Leaflet map tiles */
.leaflet-tile,
.leaflet-tile-container img,
.leaflet-layer img,
img.leaflet-tile,
.leaflet-tile-pane img,
.leaflet-pane img {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    image-rendering: auto !important;
}

/* Override any Bootstrap or global img styling for map tiles */
#mapID img {
    border: none !important;
    outline: none !important;
}

/* Fix container outline issues */
.leaflet-container {
    outline: none !important;
    outline-offset: 0 !important;
}

#mapID .leaflet-tile-pane {
    image-rendering: auto;
}

/* Fix tile seams by removing blend mode */
.leaflet-container img.leaflet-tile {
    mix-blend-mode: normal !important;
}
