.wcfc-catalog-container {
    max-width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wcfc-catalog-filters {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
}

.wcfc-catalog-filters input,
.wcfc-catalog-filters select,
.wcfc-catalog-filters button {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.wcfc-catalog-filters button {
    background: #007cba;
    color: white;
    border: none;
    cursor: pointer;
}

.wcfc-catalog-filters button:hover {
    background: #005a87;
}

.wcfc-catalog-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.wcfc-catalog-table th,
.wcfc-catalog-table td {
    border: 1px solid #e5e5e5;
    padding: 12px;
    text-align: left;
    vertical-align: middle;
}

.wcfc-catalog-table th {
    background: #f5f5f5;
    font-weight: 600;
}

.wcfc-catalog-table .wcfc-catalog-image img {
    max-width: 60px;
    height: auto;
}

.wcfc-catalog-table .wcfc-catalog-qr img {
    max-width: 50px;
    height: auto;
}

.wcfc-catalog-table .button {
    padding: 5px 10px;
    font-size: 12px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 0 2px;
}

.wcfc-catalog-table .button:hover {
    background: #005a87;
}

.wcfc-catalog-table .wcfc-delete-product {
    background: #dc3545;
}

.wcfc-catalog-table .wcfc-delete-product:hover {
    background: #c82333;
}

.wcfc-catalog-table .wcfc-print-qr {
    background: #28a745;
}

.wcfc-catalog-table .wcfc-print-qr:hover {
    background: #218838;
}

.wcfc-pagination {
    margin-top: 20px;
    text-align: center;
}

.wcfc-pagination ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 5px;
}

.wcfc-pagination li {
    display: inline;
}

.wcfc-pagination a,
.wcfc-pagination span {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #ddd;
    background: white;
    text-decoration: none;
    color: #007cba;
    border-radius: 3px;
}

.wcfc-pagination .current {
    background: #007cba;
    color: white;
    border-color: #007cba;
}

.wcfc-pagination a:hover {
    background: #f0f0f0;
}

@media (max-width: 1024px) {
    .wcfc-catalog-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}