.zeeuw-map-container {
    text-align: center;
    margin: auto !important;
}

.zeeuw-map-container img {
    max-width: 100%; /* Ensures responsiveness */
    height: auto; /* Keeps the aspect ratio */
    display: block; /* Removes any extra spacing */
    margin: auto; /* Centers the image */
}

.zeeuw-map {
    margin: auto;
    position: relative;
    background-color: gray;
    width: fit-content;
}

.map-lot {
    position: absolute; /* Matches the size of the image */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
    background-size: contain; /* Keeps aspect ratio */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
}

@media screen and (max-width: 992px) {
    .zeeuw-map-container img{
        width: 100% !important;
        height: auto !important;
    }
}
