.autocomplete {
    position: relative;
    width: 300px;
    margin: 50px auto;
}

#search-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 5px;
}

.autocomplete-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #d4d4d4; 
    display: flex;
    align-items: center;
    background-image: linear-gradient(125deg,rgba(255,255,255,.7),rgba(255,255,255,.5) 90%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #333;
}

.autocomplete-item:hover {
    background-image: linear-gradient(125deg,rgba(255,255,255,.9),rgba(255,255,255,.7) 90%);
}

.autocomplete-item img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
    object-fit: cover;
}

.autocomplete-active {
    background-color: DodgerBlue !important; 
    color: #ffffff; 
}