body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #9ACDE2;
            color: #333;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 16px; /* Increased font size for body text */
        }

        header {
            text-align: center;
            margin-bottom: 20px;
			
        }


        header img {
			margin: 25px;
            max-width: 60%;
            height: auto;
        }

        .board {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 90%;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Changed to 'hidden' */
    margin-bottom: 40px; /* Increase this value to add more space at the bottom */
}


        .column {
            margin-bottom: 20px;
        }

        h2 {
            color: #333;
            font-size: 42px;
            margin-bottom: 10px;
            text-align: center;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        th,
        td {
            border: 1px solid #ddd;
            padding: 10px; /* Reduced padding */
            font-size: 24px; /* Increased font size for table cells */
            font-weight: bold; /* Added font-weight for bold text */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: none; /* Removed max-width to allow variable width */
			
        }

        th:nth-child(6),
        td:nth-child(6) {
            white-space: normal;
        }

        th {
            background-color: #f2f2f2;
            color: #333;
        }

        tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        @media (min-width: 901) {
            .board {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }

            th,
            td {
                font-size: 48px;
            }
        }

        @media (max-width: 900px) {
            #lastUpdateTimestamp {
                font-size: 12px;
                padding: 5px;
            }
            header img {
                max-width: 70%;
            }
				h2 {
            color: #333;
            font-size: 17px;
            margin-bottom: 10px;
            text-align: center;
        }
            th,
            td {
                padding-left: 2px;
                font-size: 9px; /* Increased font size for table cells */
                font-weight: regular; /* Added font-weight for bold text */
            }
			
            th:nth-child(6),
            td:nth-child(6) {
                display: table-cell;
            }
        }
