.ajax-product-search {
    position: relative;
    margin-bottom: 15px;
}

#ajax-search-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#ajax-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
}

#ajax-search-results ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#ajax-search-results li {
    padding: 8px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

#ajax-search-results li:hover {
    background-color: #f5f5f5;
}