        .image-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            padding: 20px;
        }

        td.village-name span.village-name {
            font-weight: bold;
            color: #000000;
            padding-left: 5px;
        }
        
        .image-item {
            width: 200px;
            height: 200px;
            border: 3px solid #333;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background-color: #fff;
        }
        h1 {
            text-align: center;
        }

           
        .content {
            border: 1px solid #ddd;
            padding: 20px;
            border-radius: 8px;
            background-color: #f9f9f9;
        }
        
        .text-with-image {
            text-align: justify;
        }
        
        .float-right-image {
            float: right;
            margin: 0 0 15px 15px;
            max-width: 400px;
            height: auto;
            border: 2px solid #ccc;
            border-radius: 5px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .clearfix::after {
            content: "";
            display: table;
            clear: both;
        }
        
        /* Responsive design */
        @media (max-width: 600px) {
            .float-right-image {
                float: none;
                margin: 0 0 15px 0;
                max-width: 100%;
            }
        }
        
        .image-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        
        .image-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .image-caption {
            text-align: center;
            padding: 10px;
            background-color: #fff;
            border-top: 1px solid #eee;
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .image-container {
                gap: 15px;
            }
            
            .image-item {
                width: 150px;
                height: 150px;
            }
        }
        
        @media (max-width: 480px) {
            .image-container {
                gap: 10px;
            }
            
            .image-item {
                width: 120px;
                height: 120px;
            }
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 16px;
        }
        
        th {
            background-color: #4CAF50;
            color: white;
            padding: 15px 10px;
            text-align: left;
            font-weight: bold;
        }
        
        td {
            padding: 12px 10px;
            border-bottom: 1px solid #ddd;
        }
        
        
        tr:hover {
            background-color: #e8f5e8;
            transition: background-color 0.3s ease;
        }
        
        .icon {
            width: 30px;
            height: 30px;
            vertical-align: middle;
            margin-right: 10px;
        }
        
        .event-name {
            font-weight: bold;
            color: #333;
        }
        
        .time-date {
            color: #666;
            font-size: 14px;
        }
        
        .location {
            color: #555;
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .container {
                padding: 10px;
                margin: 10px;
            }
            
            table {
                font-size: 14px;
            }
            
            th, td {
                padding: 8px 5px;
            }
            
            .icon {
                width: 24px;
                height: 24px;
            }
        }


                /* Bronze, Silver, Gold row colors */
        .pos3 { /* First row of each group (Bronze) */
            background-color: #f5a95d; /* Bronze color */
            color: white;
        }
        
        .pos2 { /* Second row of each group (Silver) */
            background-color: #dddcdc; /* Silver color */
            color: black;
        }
        
        .pos1 { /* Third row of each group (Gold) */
            background-color: #FFD700; /* Gold color */
            color: black;
        }