#custom-quote-search .input-wrapper {
    position: relative;
    flex: 1 1 200px;
    display: flex;
    align-items: center;
}

#custom-quote-search .clear-input {
    position: absolute;
    left: 10px;
    top: 30px;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--dark-blue);
    cursor: pointer;
    display: none;
    z-index: 2;
}

#custom-quote-search .add-btn-icon {
    position: absolute;
    top: 0;
    right: 0;
    height: 60px;
    width: 60px;
    background-color: var(--green);
    color: #fff;
    border: none;
    border-radius: 0 15px 15px 0;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin: 0;
    padding: 0;
}

#custom-quote-search .add-btn-icon:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#custom-quote-search .add-btn-icon:hover:not(:disabled) {
    background-color: var(--dark-blue);
}

#custom-quote-search .quote-search-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

#custom-quote-search #product-search {
    flex: 1;
    height: 60px;
    padding: 0 80px 0 25px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 15px;
    background-color: #bddfee;
    outline: none;
    box-sizing: border-box;
}

#custom-quote-search input#product-search {
    margin-bottom: 5px !important;
}

#custom-quote-search #search-results {
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 15px;
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
    box-sizing: content-box !important;
    width: 100%;
}

#custom-quote-search #search-results.has-results {
    border: 1px solid #ccc;
}

#custom-quote-search #search-results li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 !important;
    padding: 8px 20px !important;
}

#custom-quote-search #search-results li img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
    background: #f2f2f2;
}

#custom-quote-search #search-results li div {
    display: flex;
    flex-direction: column;
}

#custom-quote-search #search-results li span {
    font-size: 16px;
}

#custom-quote-search #search-results li span:nth-child(2) {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

#custom-quote-search #search-results li:hover,
#custom-quote-search #search-results li.active {
    background-color: #f0f0f0;
}

.ywraq-wrapper {
    margin-top: 20px !important;
}
