/**
 * Product Search Modal CSS for Dorcompare module
 */

 .product-search-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}

.product-search-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.product-search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
}

.product-search-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.product-search-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.product-search-modal-body {
    padding: 20px;
}

.product-search-form {
    margin-bottom: 20px;
}

#product-search-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.product-search-results {
    max-height: 400px;
    overflow-y: auto;
}

.search-loading,
.search-error,
.no-results {
    padding: 15px;
    text-align: center;
    color: #666;
}

.search-error {
    color: #e74c3c;
}

.product-search-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-search-item {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}

.product-search-item:hover {
    background-color: #f9f9f9;
}

.product-search-item-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.product-search-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-search-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-search-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.product-search-item-price {
    color: #2ecc71;
    font-weight: 600;
}
