/* Style du tableau */
#tableau {
    border-spacing: 0;
    margin: 20px auto;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  #tableau td {
    width: 100px;
    height: 100px;
    border: 2px solid #ddd;
    text-align: center;
    font-size: 36px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #tableau td:hover {
    background-color: #f0f0f0;
  }
  
  table {
    border-collapse: collapse;
    width: 300px;
    height: 300px;
}
td {
    border: 1px solid black;
    width: 100px;
    height: 100px;
}

  /* Style des boutons */
  button {
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    color: white;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
  }
  


  button:hover {
    background-color: #0056b3;
  }
  
  /* Style des scores */
  #scores {
    margin-top: 20px;
  }
  
  #scores table {
    border-collapse: collapse;
    width: 200px;
  }
  
  #scores th, #scores td {
    border: 1px solid #ddd;
    padding: 10px;
  }
  
  #scores th {
    background-color: #007bff;
    color: white;
    text-align: left;
  }
  
  /* Style du titre */
  h1 {
    text-align: center;
    color: #333;
  }
  
  /* Style du conteneur principal */
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
