#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-align: center;
}

#text-tool h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #333;
}

/* Drop area styling */
#uploadArea {
  border: 2px dashed #FF8A08;
  border-radius: 10px;
  padding: 3rem 2rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#uploadArea:hover {
  background-color: #fff4e6;
}

#uploadArea p {
  margin: 0.5rem 0;
  color: #444;
  font-size: 1rem;
}

#uploadArea .upload-link {
  font-weight: bold;
  color: #FF8A08;
  text-decoration: underline;
  cursor: pointer;
}

/* Button group */
.button-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.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-color 0.2s ease;
}

.button-group button:hover {
  background-color: #e97706;
}

#ocrResult {
  width: 100%;
  min-height: 180px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1rem;
  background-color: #f9f9f9;
  text-align: left;
  font-size: 1rem;
  white-space: pre-wrap;
  color: #333;
}
