.lsh-search-container {
    position: relative;
    display: flex;
    align-items: center;
}

#lsh-search-input {
    flex: 1;
    padding-right: 40px; /* Ensure there's space for the icon inside the input field */
    box-sizing: border-box;
	outline: 0;
}

#lsh-search-button {
    background: none;
    border: none;
    padding: 0;
    margin-left: -40px; /* Adjust this value as needed to position the button correctly */
    cursor: pointer;
}

#lsh-search-button img {
    height: 43px;
    width: 75px;

}

#lsh-search-suggestions {
    max-height: 430px;
    overflow-y: auto;
    position: absolute;
    z-index: 1000;
    background: #fff;
    width: 92%;
	
    
}

#lsh-search-suggestions ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#lsh-search-suggestions li {
    padding: 8px;
    cursor: pointer;
	color:#646464;
}

#lsh-search-suggestions li:hover {
    background-color: #f0f0f0;
	color:#080808;
	text-decoration:underline;
}

.lsh-highlight {
    background-color: yellow;
}


