
#search-form {
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 40px;
    font-size: 1.2em;
}

#search-form *:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

#search-form *:last-child:dir(rtl) {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-right-radius: unset;
    border-bottom-right-radius: unset;
}

#search-form *:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

#search-form *:first-child:dir(rtl) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top-left-radius: unset;
    border-bottom-left-radius: unset;
}

.search {
    min-width: 40px;
    height: 40px;
    border-radius: 0px;
    border: 0px;
    background-color: #333333;
    color: white;
    font-size: 1.8em;
    font-weight: 800;
    text-align: center;
    display: flex;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
}

#food-search {
    width: 100%;
    border: none;
    outline: none;
    padding-inline: 10px;
    background-color: #222222;
    border: 2px solid #333333;
    color: white;
}

.sort-switch {
    width: 100px;
    height: 40px;
    border: 2px solid #333333;
    background-color: #333333;
    color: white;
    font-size: 0.6em;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sort-switch:hover {
    scale: 1.1;
}

.sort-switch {
    width: 200px;
}