      h1 {
        color: white;
        border-radius: 10px;
        text-align: center;
        margin-bottom: 20px;
      }

      #resultsTable {
        width: 100%;
        margin-top: 8px;
        border-collapse: collapse;  
        font-size: 12px;
      }

      th {
        background: #222;
        color: white;
        text-align: left;
      }

      #resultsTable td {
        padding: 2px;
        border-bottom: 1px solid #ddd;
      }

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

      tr:hover {
        background: #eaf3ff;
      }

      .racetitle {
        padding: 8px;
        background: #a00217;
        color: white;
      }

      .winner {
        background: linear-gradient(45deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C) !important;
        font-weight: bold;
      }

      .silver {
        background: linear-gradient(45deg, #999, #fff 10%, #ccc 30%, #ddd 50%, #ccc 70%, #fff 80%, #999) !important;
        font-weight: bold;
      }

      .bronze {
        background: linear-gradient(45deg, #804A00, #9C7A3C, #B08D57, #895E1A, #804A00) !important;
        font-weight: bold;
      }

      .scored {
        background: #d9ffa7 !important;
        font-weight: bold;
      }

      .num {
        text-align: right;
        font-family: monospace;
      }

      .rank {
        text-align: center;
        font-weight: bold;
      }

      .bib {
        text-align: right;
      }

      .dnf {
        color: #999;
        font-style: italic;
      }

      .debugBox {
        width: 100%;
        box-sizing: border-box;
        margin-top: 8px;
        padding: 0px;
        background: #f4f4f4;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-family: monospace;
        padding-bottom: 4px;
        padding-top: 4px;
        padding-left: 4px;
        padding-right: 4px;
      }