﻿.map-viewer {
    width: 100%;
    height: 90vh;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-viewer img {
    display: block;
    max-width: 100%; 
    max-height: 100%;
    width: auto;     
    height: auto;    
    user-select: none;
    pointer-events: all;
    cursor: grab;
    object-fit: contain;
}

@media (max-width: 768px) {
    .map-viewer {
        height: auto;
        align-items: flex-start;
    }

    .map-viewer img {
        width: 100%;
        height: auto;
    }
}
