/* Base table */
table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 15px;
}

/* Header */
th {
    background: linear-gradient(to bottom, #8b0000, #a52a2a);
    color: white;
    padding: 8px;
    text-align: center;
    font-size: 16px;
}

/* Data cells */
td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: center;
    font-weight: bold;
    color: black;
}

/* Alternate row gradients */
tr:nth-child(even) td {
    background: linear-gradient(to right, #ffe5e5, #fff5f5);
}

tr:nth-child(odd) td {
    background: linear-gradient(to right, #fffaf0, #fff0f0);
}

/* Special column styles (optional) */
.date-col, .date-cell {
    font-weight: bold;
}

.result-cell {
    font-size: 16px;
}


        /* Additional customization for the time and numbers in the first header */
        .time {
            color: Gold; /* Change the color of the time span */
            margin-top: 5px; 
            font-size:18px;
            font-family:none;/* Optional: Add space between the time and the title */
        }

        .numbers {
            color: rgb(245, 245, 220); /* Change the color of the numbers */
            font-weight: bold;
            font-family:none;
            font-size:18px;/* Optional: Add space between the time and the title */

            
            /* margin-top: 5px; Optional: Make the numbers bold */
        }
        .second{
            color:green;
            font-weight:bold;
            font-size:15px;
            font-family:none;/* Optional: Add space between the time and the title */
        }
        td{
            font-family:none;
        }
        .num{
            font-size:15px;
        }
