body  {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* height: 100vh; */
}
#container {
    height: 100vh;
}

#map {
    height: 99vh;
    position: relative;
}

.coords {
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(231, 231, 231);
    color: rgb(28, 28, 28);
    border: solid rgb(255, 255, 255) 1px;
    border-radius: 5px;
    padding: 5px 10px;

}

.btn- {
    position: absolute;
    background-color: white;
    color: black;
    border-color: rgba(0,0,0,0.3);   
    width: 33px;
    height: 33px;
    padding: 0px;
    z-index: 1000;
}
.btn-:hover {
    cursor: pointer;
    background-color: rgb(237, 236, 236);
}


/* fix blue buttons on some screens */
button svg {
    color: black;
    fill: black;
    text-align: center; 
    size: 100px;
    /* padding: 2px; */
    /* background-position: center; */
}

.bi {
    height: 16px;
    width: 16px;
    /* vertical-align: middle; */
    padding: 0px;
    display: inline-block;
    /* text-align: center; */
    
}

.fullscreen {
    top: 80px; 
    left: 11px;
}

.geolocate {
    top: 100px;
    right: 11px;
}

.zoomtolayer {
    top: 63px;
    right: 11px;
}

.sidebarToggle {
    bottom: 50px;
    left: 10px;
}

.clearRoute {
    position: absolute;
    bottom: 9px;
    left: 55px; 
    /* transform: translateX(-50%); */
    background-color: white;
    height: 32px;


}

/* .leaflet-browser-print, li.browser-print-mode, ul.browser-print-holder {
    position: relative;
    top:103px; 
    left: 0px;
    border: 2px solid rgba(0,0,0,0.2);
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid red;
}  */

/* resize layer control toggle */
a.leaflet-control-layers-toggle {
    width: 40px;
    height: 40px;
}

    /* .leaflet-control-browser-print, .print-dialog {
        position: absolute;
        top: 100px; 
        left: 11px;
    }   */

#directions {
    position: absolute;
    z-index: 500;
    width: 25%;
    max-height: 40%;
    right: 10px;
    bottom:14px;
    overflow-y: auto; /* Show a scrollbar if needed */
    background: white;
    font-family: Arial, Helvetica, Verdana;
    border-radius: 10px;
    line-height: 1.5;
    font-size: 12px;
    padding: 10px;
    display: block;
}


.hidden {
    display: none;
}

.leaflet-popup-content-wrapper table td, th {
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #4f4d4d;
    text-align: center;
    background-color: #f2f2f2;
     
} 

.leaflet-popup-scrolled {
   overflow-y: auto;
   overflow-x: hidden;
   scrollbar-width: 0px;

}

.my-table {
    margin-right: 1px;
    border-collapse: collapse;
}


.leaflet-control-search {
    position: absolute;
    top: 33px;
    left: 2px; 
    z-index: 1000; 
}




  

/* Media Queries */
@media only screen and (max-width: 480px) {
    #container {
        height: 100vh;
    }
    .coords {display: none;}
    
    .clearRoute {
        position: absolute;
        bottom: 9px;
        left: 50%; 
        transform: translateX(-90%);
        background-color: white;
        height: 32px;
        color: black;
    }  
    
    #map {
        height: 86vh;
    }
    #directions {
        position: absolute;
        z-index: 500;
        width: 25%;
        max-height: 40%;
        right: 10px;
        bottom: 9px;
        overflow-y: auto; /* Show a scrollbar if needed */
        background: white;
        font-family: Arial, Helvetica, Verdana;
        border-radius: 10px;
        line-height: 1.5;
        font-size: 12px;
        padding: 10px;
        /* display: block; */
    }

    #sidebar {
        /* width: 70%; */
        /* height: 70%; */
        
    }

    /* .leaflet-sidebar .close {
        position: absolute;
        right: 35%;
        top: 20px;
        width: 31px;
        height: 31px;
        color: #333;
        font-size: 25px;
        line-height: 1em;
        text-align: center;
        background: white;
        -webkit-border-radius: 16px;
        border-radius: 16px;
        cursor: pointer;
        z-index: 1000;
    } */
}