.limbo-export-wrapper {
    max-width: 1200px;
    margin: 20px 0;
}

.search-container {
    margin: 20px 0;
}

#product-search {
    width: 100%;
    padding: 12px 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 {
    margin: 20px 0;
}

.product-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid #e2e2e2;
    margin-bottom: 12px;
    background: white;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.product-item:hover {
    border-color: #2271b1;
    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: 80px;
    height: 80px;
    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: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d2327;
}

.product-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #666;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-label {
    color: #888;
    font-weight: 500;
}

.meta-value {
    color: #444;
    text-transform: capitalize;
}

.product-price {
    text-align: right;
    min-width: 120px;
}

.price-amount {
    color: #2271b1;
    font-size: 18px;
    font-weight: 600;
}

.price-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.pagination-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    padding: 20px 0;
}

#page-info {
    font-size: 14px;
    color: #666;
}

.export-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

#selected-count {
    color: #666;
    font-size: 14px;
}

#export-selected {
    min-width: 150px;
}

#export-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;
}

.attribute-item {
    margin: 5px 0;
    font-size: 13px;
}

.attribute-label {
    font-weight: 500;
    color: #666;
    margin-right: 5px;
}

.attribute-value {
    color: #444;
}

.categories {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
}

.product-description {
    margin-top: 10px;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.sale-price {
    color: #d63638;
    font-size: 14px;
    margin-top: 4px;
}
