/* Container for search results */
#wpf-product-search-results {
    position: relative;
    margin-top: -10px; /* Adjust as needed */
}

#wpf-product-search-results ul {
    position: absolute;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-top: none;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 100; /* Make sure it appears above other content */
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#wpf-product-search-results li {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

#wpf-product-search-results li:last-child {
    border-bottom: none;
}

#wpf-product-search-results li:hover {
    background-color: #f5f5f5;
}

#wpf-product-search-results span {
    display: block;
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #ddd;
    color: #888;
}
/* Hide the price injector field from the user */
.wpf-price-injector-field {
    display: none !important;
}