#main {
    padding: 10px 10px 10px 10px;
    background-color: #f8f8f8;
}

#restaurants {
    display: flex;
    flex-direction: column;
}

#restaurants_info {
    padding: 16px 0px 16px 0px;
    width: 100%;
    box-shadow: 0px 1px 1px 0px black;
}

#restaurant_header_container {
    padding: 0px 16px 0px 16px;
}

#restaurant_name_and_engagement_icon_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#restaurant_name {
    font-size: 24px;
}

#visiting_icon {
    width: 32px;
    height: 32px;
}

#bookmark_icon {
    width: 32px;
    height: 32px;
}

#restaurant_detail {
    font-size: 12px;
    color: gray;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

#restaurants_images {
    display: flex;
    flex-direction: row;
    padding: 16px 0px 16px 0px;
}

#food_image {
    flex: 1 1 0;
    min-width: 0px;
}