#text-tool {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-family: "Segoe UI", sans-serif;
}

#text-tool h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: #333;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  border: 1px solid #FF8A08 !important;
  border-radius: 8px;
  resize: vertical;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.button-group button {
  background-color: #888; /* Neutral gray */
  border: none;
  color: white;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.button-group button:hover {
  background-color: #666;
}

/* Special styling for Copy and Clear buttons */
.button-group button:nth-child(7) { /* Copy */
  background-color: #007BFF;
}
.button-group button:nth-child(7):hover {
  background-color: #0056b3;
}

.button-group button:nth-child(8) { /* Clear */
  background-color: #DC3545;
}
.button-group button:nth-child(8):hover {
  background-color: #a71d2a;
}
