.connection-container {
    max-width: 1200px;
    margin: 20px 0;
    display: flex;
    gap: 30px;
}

.product-list-container {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.search-container {
    margin-bottom: 20px;
}

#wc-product-search,
#limbo-product-search {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.products-list {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.product-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 1px solid #e5e5e5;
    margin-bottom: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-item:hover {
    background-color: #f8f9fa;
    border-color: #ddd;
    transform: translateY(-1px);
}

.product-item.selected {
    background-color: #f0f7ff;
    border-color: #2271b1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.product-thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
    border: 1px solid #eee;
}

.product-info {
    flex: 1;
}

.product-name {
    font-weight: 500;
    color: #1d2327;
    margin-bottom: 4px;
    font-size: 14px;
}

.product-price {
    color: #666;
    font-size: 13px;
}

/* Scrollbar styling */
.products-list::-webkit-scrollbar {
    width: 8px;
}

.products-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.products-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.products-list::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Create Connection Button */
#create-connection-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
}

#create-connection-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
} 