.word-counter-container {
  max-width: 600px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.word-counter-container h2 {
  text-align: center;
  color: #333;
}

#text-input {
  width: 100%;
  height: 200px;
  padding: 12px;
  font-size: 16px;
  resize: vertical;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.counter-results {
  display: flex;
  justify-content: space-around;
  margin-top: 15px;
  font-size: 16px;
  color: #555;
}
