body {
  font-family: 'Arial', sans-serif;
  background-color: #2c3e50;
  color: #333;
}

#letterCounter {
  width: 80%;
  margin: 20px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column; /* Revenir à la direction de la colonne pour que l'en-tête reste en haut */
}

#inputext {
  width: 60%;
  margin: 0 auto; /* Ajouter cette ligne pour centrer le contenu horizontalement */
}

h1 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 20px;
}

#contentWrapper {
  display: flex;
  flex-direction: row; /* Créer un conteneur pour le texte, le total de l'affichage et le tableau */
justify-content: space-between; /* Justifier le contenu pour créer un espace entre les éléments */
}

textarea {
  width: 100%;
  resize: none;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 20px;
}

#totalDisplay {
  text-align: right;
  margin-right: 20px;
  width: 100%;
}

table {
  width: 16%;
  border-collapse: collapse;
  border-radius: 5px;
  overflow: hidden;
}

th, td {
  padding: 12px;
  text-align: left;
}

th {
  background-color: #4caf50;
  color: white;
}

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