body {
    padding: 0;
    margin: 0;
}
html, body {
    height: 100vh;
    width: 100%;
}


:root {
    --original-leaflet-width: 50%;
    --original-leaflet-height: 50vh;
    --original-leaflet-top: 10px;
    --original-leaflet-left: 10px;
}

#map-old {
    width: var(--original-leaflet-width);
    height: var(--original-leaflet-height);
    background-color: #f2f2f2;
}

.container {
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-gap: 10px;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0px;
    height: 50vh;
}

.map,
#myWindyId {
    width: 100%;
    height: 100%;
}

#myFullscreenButton {
    margin-top: 10px;
    width: 50%;
}




.map.fullscreen, #myWindyId.fullscreen {
    /* Styles for the map container in fullscreen mode */
    /* Adjust these styles as per your requirements */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    border: none;
}

/*
body .leaflet-control-minimap {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 1000; 
    margin: 10px !important; /* Optional margin to adjust the position */
}
*/