.asp-search-container {
    position: relative;
    max-width: 400px;
}

#asp-search-input {
    width: 100%;
    padding: 5px 40px 5px 10px; 
    font-family: Roboto;
    font-weight: 400;
    font-size: 1rem;
    box-sizing: border-box;
    border: 0;
    border-bottom: 2px solid #f1f1f1;
}

.asp-search-icon {
    position: absolute;
    right: 10px;  
    top: 50%;
    transform: translateY(-50%); 
    pointer-events: none; 
    color: #ccc; 
}

.container-result {
    display: flex;
    flex-direction: column;
}

#asp-search-results {
    max-height: 300px;
    overflow-y: auto;
    position: absolute;
    background: white;
    width: 100%;
    z-index: 999;
    font-family: Roboto;
    font-weight: 400;
    font-size: 1rem;
}

.asp-result-item {
    padding: 10px;
}

.asp-result-item-last {
    padding: 10px;
    border-bottom: 2px solid #f1f1f1;
}

.asp-result-item-last:hover {
    background-color: #f9f9f9;
}

.asp-thumbnail {
    width: 70px;
    height: 70px;
    margin-right: 10px;
    float: left;
}
