/*@import url('https://fonts.googleapis.com/css?family=Open+Sans');*/

*::-webkit-scrollbar {
    width: 0.25rem;
}

*::-webkit-scrollbar-thumb {
    background-color: lightgray;
    border-radius: 0.125rem;
}

html {
    width: 100%;
    height: 100%;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

a:visited {
    color: inherit; 
}

#app-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

#mainPage-container {
    flex-grow: 1;
    position: relative;
    width: 100%;
}

#map-container {
    width: 100%;
    height: 100%;
}

#searchBar-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 25rem;
    height: 2.8rem;
}


@media (max-width: 40rem) {
    #searchBar-container {
        width: 100%;
    }
}



