        
        .container-t {
            width: 90%;
            max-width: 1200px;
            margin: 20px auto;
            background-color: white;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
		.s-t {
            color: #1a1a1a;
            text-align: center;
            margin-bottom: 20px;
            font-size: 1.5em;
            font-weight: 700;
		}
        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }
        th, td {
            padding: 8px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: #b85a4a;
            color: #fff;
        }
        td {
            color: #222;
        }
        tr:hover {
            background-color: #f5f5f5;
        }
        .price-list-header {
            font-size: 1.5em;
            margin-bottom: 20px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container-t {
                width: 95%;
                padding: 15px;
            }
            table th, table td {
                padding: 8px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .container-t {
                width: 95%;
                padding: 10px;
            }
            table th, table td {
                padding: 6px;
                font-size: 12px;
            }
        }

		/* Image grid styling */
        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }
        .image-grid img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .image-grid img:hover {
            transform: scale(1.05);
        }

        /* Lightbox styling */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
            z-index: 1000;
            overflow-y: auto; /* Allow vertical scrolling */
        }
        .lightbox img {
            max-width: 90%;
            max-height: 80%;
            object-fit: contain; /* Ensure images scale proportionally */
        }
        .lightbox:target {
            display: flex;
        }

        /* Close button styling */
        .lightbox .close-btn {
            color: white;
            font-size: 40px;
            text-decoration: none;
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 1001;
            font-weight: bold;
        }

        /* Navigation buttons styling */
        .lightbox .prev, .lightbox .next {
            position: absolute;
            top: 50%;
            color: white;
            font-size: 40px;
            font-weight: bold;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 10px;
            cursor: pointer;
            transform: translateY(-50%);
            z-index: 1001;
        }
        .lightbox .prev {
            left: 10px;
        }
        .lightbox .next {
            right: 10px;
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 10px;
            background-color: #4CAF50;
            color: white;
            position: fixed;
            width: 100%;
            bottom: 0;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            header {
                font-size: 1.5em;
                padding: 15px;
            }
            .container {
                width: 95%;
                padding: 15px;
            }
            /* Smaller arrow buttons on mobile */
            .lightbox .prev, .lightbox .next {
                font-size: 30px;
                padding: 8px;
            }
        }

        @media (max-width: 480px) {
            header {
                font-size: 1.2em;
                padding: 10px;
            }
            .container {
                width: 95%;
                padding: 10px;
            }
            /* Smaller arrow buttons on mobile */
            .lightbox .prev, .lightbox .next {
                font-size: 25px;
                padding: 6px;
            }
        }











