
        .container {
            margin: 0 auto;
            padding: 10px 60px;
            border-radius: 10px;
        }


        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }

        th,
        td {
            border: 1px solid #ddd;
            padding: 15px;
            text-align: left;
        }

        th {
            background-color: #3498db;
            color: white;
            font-weight: bold;
        }

        tr:nth-child(even) {
            background-color: #f8f9fa;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            /* 6 equal-width columns */
            gap: 25px;
            margin: 10px 0;
        }


        .gallery-container img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-container img:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        .table-type {
            background-color: #f0f7fd;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid #3498db;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
            width: 100%;
            max-width: 1000px;
            margin: 20px auto;
        }

        .table-type h3 {
            margin-top: 0;
        }

        .table-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .table-text {
            flex: 1;
            min-width: 250px;
        }

        .table-image {
            width: 40%;
            max-width: 350px;
            border-radius: 20px;
            height: auto;
            object-fit: cover;
        }

        /* Features list columns */
        .features-list {
            margin-left: 15px;
            columns: 2;
            column-gap: 30px;
        }

        /* Tablet responsiveness */
        @media (max-width: 992px) {
            .table-type {
                padding: 18px;
                font-size: 16px;
            }
        }

        /* Mobile responsiveness */
        @media (max-width: 600px) {
            .table-type {
                padding: 16px;
                font-size: 15px;
                margin: 15px 10px;
                border-left-width: 3px;
                line-height: 1.8;
            }

            .table-content {
                flex-direction: column;
                align-items: center;
            }

            .table-image {
                width: 100%;
                max-width: 100%;
                margin-top: 20px;
            }

            .features-list {
                columns: 1;
            }
        }

        .table-content {
            display: flex;
            align-items: center;
            /* Vertically center image and text */
            gap: 20px;
            flex-wrap: wrap;
        }

        .table-image {
            width: 40%;
            max-width: 350px;
            border-radius: 20px;
            object-fit: cover;
            height: auto;
        }

        .table-text {
            flex: 1;
            min-width: 250px;
        }

        @media (max-width: 768px) {
            .table-content {
                flex-direction: column;
                align-items: flex-start;
                /* reset on small screens */
            }

            .table-image {
                width: 100%;
                max-width: 100%;
                margin-top: 20px;
            }

            .features-list {
                columns: 1;
            }
        }

        .box-suppliers {
            font-family: Arial, sans-serif;
            max-width: 1200px;
            margin: 40px auto;
            padding: 10px;
        }

        .box-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .box-category {
            background-color: #f9f9f9;
            border-left: 6px solid #ff8800;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 20px;
            flex: 1 1 calc(50% - 20px);
            /* Two per row */
            box-sizing: border-box;
            min-width: 300px;
        }

        .box-category h3 {
            margin-top: 0;
            font-size: 20px;
            color: #333;
        }

        .supplier-list {
            padding-left: 20px;
            margin-top: 10px;
        }

        .supplier-list li {
            margin-bottom: 10px;
            line-height: 1.6;
            font-size: 16px;
        }

        @media (max-width: 768px) {
            .box-category {
                flex: 1 1 100%;
                /* Stack on small screens */
            }
        }


        .page-break {
            page-break-after: always;
            border-top: 2px dashed #ccc;
            margin: 20px 0 0 0;
        }

        .price-high {
            color: #e74c3c;
            font-weight: bold;
        }

        .price-low {
            color: #27ae60;
            font-weight: bold;
        }

        .vendor-link {
            color: #3498db;
            text-decoration: none;
            font-weight: bold;
        }

        .vendor-link:hover {
            text-decoration: underline;
        }

        @media print {
            .page-break {
                page-break-after: always;
            }
        }
