/* Product table styles */
.product-table-wrapper {
    overflow-x: auto;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

/* Table Header */
.product-table th {
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #f2f2f2;
    font-size: 16px;
    text-align: center;
}

/* Table Body Rows */
.product-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

/* Product Name */
.product-name {
    font-size: 16px;
    font-weight: bold;
    margin: 5px 0;
}

/* Add to Cart Button */
.add-to-cart-btn {
    background-color: #4CAF50;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    padding: 5px 10px;
    border: none;
    display: block;
    margin: 0 auto;
}

.add-to-cart-btn:hover {
    background-color: #45a049;
}

/* Price */
.product-table td:nth-child(3) {
    font-weight: bold;
}

/* Serial Number */
.product-table td:nth-child(1) {
    width: 40px; /* Adjust the width as needed */
    text-align: center;
}

/* Pagination styles */
.pagination {
    margin-top: 20px;
    display: flex;
    list-style: none;
    justify-content: center;
}

.pagination li {
    margin-right: 10px;
}

.pagination a {
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease-in-out;
}

.pagination a.active {
    background-color: #4CAF50;
    color: #fff;
}

/* Responsive styles */
@media (max-width: 767px) {
    .product-table th,
    .product-table td {
        display: block;
    }

    .product-table th {
        position: absolute;
        top: -9999px;
        left: -9999px;
        width: 100%;
        padding: 5px 10px;
    }

    .product-table td {
        border: none;
        border-bottom: 1px solid #ddd;
        position: relative;
        padding-left: 60px;
    }

    .product-table td:before {
        position: absolute;
        top: 10px;
        left: 10px;
        width: 40px;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
    }

    .product-table td:nth-of-type(1):before {
        content: "Serial";
    }

    .product-table td:nth-of-type(2):before {
        content: "Product";
    }

    .product-table td:nth-of-type(3):before {
        content: "Price";
    }

    .product-table td:nth-of-type(4):before {
        content: "Add to Cart";
    }

    /* Adjust the serial number width for responsiveness */
    .product-table td:nth-of-type(1) {
        width: 30px;
    }
}

.product-table td {
    text-align: center;
}

.product-table .quantity {
    width: 40px;
}

.product-table .price {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.product-table .regular-price {
    text-decoration: line-through;
    color: #999;
}