.word-wheel-container {
  background-color: #FAF7F0;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.word-wheel-tool {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.input-section, .output-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

input, textarea, button {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
}

textarea {
  height: 140px;
}

button {
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  padding: 0.5rem;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #45a049;
}

@media (max-width: 600px) {
  .word-wheel-tool {
    flex-direction: column;
  }
}