.search-container {
    margin: 20px 0;
    max-width: 1200px;
}
#product-search {
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}
#product-search:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 1px 4px rgba(34,113,177,0.1);
}
#products-list {
    max-width: 1200px;
    margin: 20px 0;
}
.product-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #e2e2e2;
    margin-bottom: 10px;
    background: white;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.product-item:hover {
    background: #f9f9f9;
    border-color: #d0d0d0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}
.product-checkbox {
    margin-right: 15px;
    transform: scale(1.2);
    cursor: pointer;
}
.product-thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 20px;
    border: 1px solid #eee;
}
.product-info {
    flex-grow: 1;
    padding-right: 20px;
}
.product-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1d2327;
}
.product-details {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #666;
}
.detail-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.detail-label {
    color: #888;
    font-weight: 500;
}
.detail-value {
    color: #444;
}
.product-price-container {
    text-align: right;
    min-width: 100px;
}
.price-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.product-price {
    color: #2271b1;
    font-size: 16px;
    font-weight: 600;
}

.import-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

#selected-count {
    color: #666;
    font-size: 14px;
}

#import-selected {
    min-width: 150px;
}

#import-selected:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    margin: 0;
}

#select-all {
    margin-left: 15px;
}

.pagination-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

#page-info {
    min-width: 100px;
    text-align: center;
    color: #666;
}

.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
