html {
  font-family: sans-serif;
}

table {
  border-collapse: collapse;
  border: 2px solid rgb(200,200,200);
  letter-spacing: 1px;
  font-size: 0.8rem;
}

td, th {
  border: 1px solid rgb(190,190,190);
  padding: 10px 20px;
}

th {
  background-color: rgb(235,235,235);
  padding: 0;
}

tr:nth-child(even) th { 
  background-color: lightgray;
}


td {
  text-align: center;
  padding: 0;
}

tr:nth-child(even) td {
  background-color: lightgray;
}

th:nth-child(even) td {
  background-color: lightgray;
}


ul {
  list-style: none;
  padding-left: 0;
}

li {
  margin: 0;
}

li:not(:last-child) {
  margin-bottom: 10px;
  /*white-space: nowrap;*/
}

tr:nth-child(odd) li:nth-child(even) { 
  background-color: lightgray;
}

tr:nth-child(even) li:nth-child(even) { 
  background-color: white;
}

caption {
  padding: 10px;
}

body.loading {
    visibility: hidden; /* Masque tout le contenu visuellement */
    overflow: hidden; /* Empêche le défilement */
}

  #loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white; /* Couleur de fond de l'écran de chargement */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid black;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
