.product-table-filter {
    margin-bottom: 15px;
}

.product-table-filter label {
    margin-right: 15px;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.product-table th, .product-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.product-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.product-table img {
    max-width: 60px;
    max-height: 60px;
    object-fit: cover;
}

.product-table .product-quantity {
    width: 50px;
}

.product-table .add-to-cart,
.product-table .order-now {
    background-color: #0071a1;
    color: #fff;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
}

.product-table .add-to-cart:hover,
.product-table .order-now:hover {
    background-color: #005a87;
}
/* Красный фон для заголовков таблицы */
.product-table thead {
    background-color: #ff0000;
    color: #ffffff;
    font-weight: bold;
    text-align: left;
}
