@charset "utf-8";

.search-box {
    background: #fff;
    border: 1px solid #000;
    box-shadow: none;
    border-radius: 16px;
    z-index: 13;
    height: 44px;
    margin: 0 auto;
}

.search-box-input {
    width: 100%;
    height: 100%;
    border: 0;
    font-size: 1.4em;
}

.search-autocomplete{
    display: none;
    list-style: none;
    padding-left: 0;
    background-color:white;
    max-height: 200px;
    overflow: auto;
}

.search-autocomplete-item {
    white-space: pre;
    max-height: 11em;
}

.search-autocomplete-item:hover {
    background-color: #87CEFA;
    cursor: pointer;
}
.food-food-search-source{
    position: relative;
}

.food-search-source-list{
    display: none;
    list-style: none;
    padding-left: 0;
    background-color: #87CEFA;
    max-height: 200px;
    overflow: auto;
    position: absolute;
    z-index: 25;
    transform: translateX(-40%);
}

.food-search-source-list-item{
    white-space: pre;
}

.food-search-source-list-item .food-source-flag {
    width: 40px; /* Set the width of the flag */
    margin-right: 5px; /* Adjust spacing between flag and text */
    display: flex;
    justify-content: center;
}