table {
            width: 100%; /* Set the table width to 100% of the page width */
            /* margin: 20px auto; Center the table on the page */
            border-collapse: collapse; /* Collapse table borders into a single border */
            font-family: Arial, sans-serif; 
            font-size: 15px; /* Set the font style */
            margin-top: 0;
            
        }

        /* Style for the table headers with gradient */
        th {
            background-color: darkred;/* Gradient from brown to yellow */
            color: white; /* White text color for the header */
            text-align: center; /* Center-align text in header */
            padding: 5px; /* Add padding inside header cells */
            font-size: 18px; /* Default font size for header */
        }

        /* Style for the table cells */
        td {
            padding: 8px; /* Add padding inside data cells */
            border: 1px solid #ddd;
            text-align: center;
          
            line-height: 1.5; /* Adjust line-height to increase space between lines */
            vertical-align: top; /* Align content to the top of the cell */
        }

        /* Style for even rows (to alternate row colors) */
        tr {
            background-color: #f5ecce; 
            /* Light gray background for even rows */
        }

        /* Style for the first column with dark red background */
        td:first-line {
            color: #000; /* Change the color of the first letter to red */
            font-weight: bold; /* Optionally make the first letter bold */
            font-size: 15px; /* Optionally increase the size of the first letter */
        }
        th:first-line{
            color:white;
            font-size:15px;
        }
      
        /* Style for the second column with a different background */
        /* td:nth-child(2) {
            background-color: rgb(223, 208, 161);
            font-weight:bold;
        }
        td:nth-child(1){
            background-color: rgb(223, 208, 161);
            font-weight:bold;
        } */

        /* Add a border around the entire table */
        table, th, td {
            border: 1px solid black; 
        font-family: Georgia, serif;
        /* Light gray border around the table, header, and data cells */
        }
        td{
           
            font-weight:bold;
        }

        /* Specific style for the first row header */
        tr:first-child th {
            font-size: 20px; /* Make the font size larger for the first header row */
            color: darkred; /* Apply dark red color to the first header */
        }

        /* 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;
        }
