html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}
.leaflet-container { 
    height: 100% !important; 
    width: 100% !important; 
}
.app-container {
    display: grid;
    grid-template-columns: 25% 75%;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}
.app-sidebar {
    padding: 20px;
    overflow-y: auto;
    background-color: #ffffff;
    border-right: 1px solid #dee2e6;
}
.app-map {
    height: 100%;
    width: 100%;
}
@media only screen and (max-width: 768px) {
    .app-container {
        display: flex !important;
        flex-direction: column !important;
        height: 100vh !important;
        width: 100vw !important;
        overflow: hidden !important;
    }
    .app-map {
        height: 50vh !important;
        width: 100% !important;
        order: 1 !important;
    }
    .app-sidebar {
        height: 50vh !important;
        width: 100% !important;
        order: 2 !important;
        overflow-y: auto !important;
        border-right: none !important;
        border-top: 2px solid #dee2e6 !important;
        padding: 15px !important;
        box-sizing: border-box !important;
    }
}
