html, body {
    margin: 0;
    padding: 0;
    height:100vh;
    width: 100%;
}

#map {
    height: 100%;
    margin: 5px
}

:root {
    color-scheme: only light;
}


.establishment {
    background-color: #AAAAAA;
    border-radius: 8px;
    color: #000000;
    font-size: 14px;
    padding: 10px 15px;
    position: relative;
    align-content: center;
}

.establishment-red {
    background-color: #e63900;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 14px;
    padding: 10px 15px;
    position: relative;
    align-content: center;
}

.establishment-orange {
    background-color: #ff9933;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 14px;
    padding: 10px 15px;
    position: relative;
    align-content: center;
}

.establishment-green {
    background-color: #009933;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 14px;
    padding: 10px 15px;
    position: relative;
    align-content: center;
}



.establishment::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #4285F4;
}



::backdrop {
}

#place-autocomplete-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
    margin: 10px;
    padding: 5px;
    font-family: Roboto, sans-serif;
    font-size: large;
    font-weight: bold;
}

gmp-place-autocomplete {
    width: 300px;
}

#infowindow-content .title {
    font-weight: bold;
}

#map #infowindow-content {
    display: inline;
}


