        
        .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 - uniform thumbnail sizes */
        .image-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }
        .image-grid > a {
            display: block;
            width: 100%;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            border-radius: 8px;
        }
        .image-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .image-grid img:hover {
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .image-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }

        @media (max-width: 480px) {
            .image-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Lightbox styling */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            justify-content: center;
            align-items: center;
            z-index: 10050;
            overflow-y: auto;
            box-sizing: border-box;
            padding: 60px 20px 20px;
        }
        .lightbox img {
            max-width: 90%;
            max-height: 80vh;
            object-fit: contain;
            position: relative;
            z-index: 1;
        }
        .lightbox:target {
            display: flex;
        }

        /* Close button styling */
        .lightbox .close-btn {
            color: #fff;
            font-size: 42px;
            line-height: 1;
            text-decoration: none;
            position: fixed;
            top: 16px;
            right: 20px;
            z-index: 10051;
            font-weight: bold;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.55);
            border-radius: 50%;
            cursor: pointer;
        }
        .lightbox .close-btn:hover {
            background: rgba(0, 0, 0, 0.8);
            color: #fff;
        }

        /* Navigation buttons styling */
        .lightbox .prev, .lightbox .next {
            position: fixed;
            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: 10051;
            text-decoration: none;
        }
        .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;
            }
        }











