  /* Styles pour le thème clair */
  table {
    background-color: white;
  }
  body {
    background-color: white;
    color: black;
  }
  th {
    color: black;
    text-transform: uppercase;
    font-weight: bold;
  }
  td {
    color: red;
    font-weight: bold;
    text-transform: uppercase;
  }

  /* Styles pour le thème sombre */
  @media (prefers-color-scheme: dark) {
    table {
      background-color: black;
    }
    body {
      background-color: black;
    color: white;
  }
    th {
      color: white;
    }
    td {
      color: white;
    }
  }


