/* search bar */

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px;
}

#searchbar {
    width: 400px;
    background: #E8F0FD;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-left: -10px;
}

#suggestions {
    position: absolute;
    top: 57px;
    left: 0;
    width: 400px;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #E8F0FD;
    padding: 0;
    display: none;
}

#suggestions li {
    padding: 10px;
    list-style: none;
    cursor: pointer;
}

#suggestions li:hover {
    background-color: #ddd;
}

button{
    background: transparent;
    border: 0;
    outline: 0;
}

button .fa-solid{
    width: 25px;
    color: #555;
    font-size: 23px;
    cursor: pointer;
    margin-left: -60px;
}

@media (max-width:475px){
    #searchbar{
        margin-left: 0px;
    }
    .search-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
   }
   #suggestions {
    position: relative;
    top: 0;
    left: 0;
    width: 400px;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #E8F0FD;
    padding: 0;
    display: none;
    }
}