

/* Main Content Styling for Translator */
h1.tool-hero-title {
  /* Adjusted for the tool page */
  color: #2c3e50;
  margin-bottom: 25px;
  font-size: 2.2em;
  padding-top: 80px; /* Push content down to clear fixed header */
}
.translator-section {
  margin-bottom: 25px;
  text-align: left;
}
label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #4a6c8e;
  font-size: 1.1em;
}
textarea {
  width: calc(100% - 22px);
  min-height: 120px;
  padding: 11px;
  margin-bottom: 15px;
  border: 1px solid #b0c4de;
  border-radius: 8px;
  font-size: 1.05em;
  resize: vertical;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: border-color 0.3s, box-shadow 0.3s;
}
textarea:focus {
  border-color: #6a9ac9;
  box-shadow: 0 0 0 3px rgba(106, 154, 201, 0.2);
  outline: none;
}
button {
  background-color: #3498db;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.05em;
  font-weight: bold;
  margin: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
button:hover {
  background-color: #217dbb;
  transform: translateY(-2px);
}
button:active {
  transform: translateY(0);
}
.note {
  font-size: 0.9em;
  color: #666;
  margin-top: 15px;
  background-color: #f8f8f8;
  padding: 12px;
  border-left: 4px solid #aed6f1;
  border-radius: 4px;
  text-align: left;
}
.separator {
  margin: 30px 0;
  border-bottom: 1px dashed #d0e0ed;
}


