.search-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding-top: 15px;
    padding-right: 10px;
}

.search-input {
    width: 100%;
    padding: 3px;
    border: 1px solid #ccc;
    border-radius: 25px;
    outline: none;
    font-size: 16px;
}

.autocomplete-results {
    position: absolute;
    top: none;
    left: 0;
    right: 0;
    border: 0px solid #ddd;
    border-top: none;
    background-color: #fff;
    z-index: 10000000;
    border-radius: 0 0 10px 10px;
	max-height: 400px;
	overflow-y: auto;
	overflow-x: hidden;
}

.autocomplete-item {
    display: flex;
    
    align-items: center;
    padding: 10px;
    cursor: pointer;
}

.autocomplete-item:hover {
    background-color: #f0f0f0;
}

.autocomplete-item img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 5px;
}

.autocomplete-item div {
    flex: 1;
   
}

.autocomplete-item .title {
    font-weight: bold;
}

.autocomplete-item .subtitle {
    font-size: 0.9em;
    color: #555;
}
