     #container {
        display: flex;
        
    }
    #placeList {
        width: 30%;
        padding-right: 20px;
    }
    #map {

        width: 70%;
    }
    .place-name {
        cursor: pointer;
        margin-bottom: 5px;
        font-weight: 900;
    }
    .additional-info {
        font-size: 0.9em;
        color: grey;
        margin-bottom: 10px;
        background-color: #ffffff;
        padding: 20px 0 5px 5px;
    }
    /* Style to show additional info */
    .hidden {
        display: none;
    }
    .place-container {
        padding: 10px;
        border-bottom: 1px solid #ccc;
    }

    .place-container:hover {
        background-color: #ccc;
        cursor: pointer;
    }
        .icon {
        float: left;
        width: 20px;
        margin-right: 10px;
    }

    .grayscale {
        filter: grayscale(100%);
    }
    .highlighted {
        background-color: #ccc;
    }
    .scrollbar {
    /*margin-left: 22px;*/
    float: left;
    height: 800px;
    background: #F5F5F5;
    overflow-y: scroll;
}
#placeList::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

/**  STYLE 1 */
#placeList::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #006851;
}

#placeList::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 0px;
    background-color: #F5F5F5;
}

