body {
background: #ebebeb;
}
textarea, input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  padding: 0.5rem;
}
textarea {
  height: 200px;
  margin-bottom: 1rem;
}
.stats {
display: flex;
flex-direction: column; /* Force les enfants à se placer en colonne */
margin-top: 1rem;
}

.word-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.tag {
  background: #eee;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.tag button {
  border: none;
  background: none;
  cursor: pointer;
  color: #c00;
  font-weight: bold;
}