#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: #111;
}

#drop-area {
  border: 2px dashed #FF8A08;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  color: #444;
  margin-bottom: 2rem;
}

.upload-text {
  font-weight: bold;
  color: #FF8A08;
  cursor: pointer;
  text-decoration: underline;
}

.formats {
  font-size: 0.9rem;
  color: #555;
  margin-top: 10px;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.button-group button {
  background-color: #FF8A08;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.button-group button:hover {
  background-color: #e97706;
}

#download-section {
  margin-top: 1.5rem;
  text-align: center;
}
