
/* ---------------------------
   Minimal Leaflet-like CSS
   --------------------------- */

/* Fullscreen map container */
#map {
    width: 100%;
    height: 100vh; /* full viewport height */
    position: relative;
    overflow: hidden;
    background: #ddd;
}

/* Tile images */
.tile {
    position: absolute;
    width: 256px;
    height: 256px;
}

/* Marker */
.marker {
    position: absolute;
    width: 25px;
    height: 41px;
    background: red;          /* simple red marker */
    border-radius: 50%;       /* circular */
    transform: translate(-50%, -50%);
    border: 2px solid white;  /* optional outline */
    box-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Optional: basic popup */
.popup {
    position: absolute;
    background: white;
    padding: 6px 8px;
    border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.65);
    pointer-events: auto;
    transform: translate(-50%, -100%);
    white-space: nowrap;
    font-family: sans-serif;
    font-size: 14px;
}

/* Zoom controls placeholder */
.zoom-control {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.65);
    padding: 4px;
    cursor: pointer;
    font-family: sans-serif;
    user-select: none;
}







