/* Style riêng cho form chuyển đổi văn bản thành giọng nói [tts_form] ở trang chủ */
#tts-form-home {
  font-size: 95%;
  max-width: 700px;
  margin: 5px auto;
  padding: 0px;
  background: #ffffff;
  border: none;
  border-radius: 12px;
}
#tts-form-home textarea {
  font-size: 100%;
  width: 98%;
  min-height: 90px;
  padding: 5px;
  border-radius: 6px;
  border: 1.5px solid #f2f2f2;
  resize: vertical;
  background: #fff;
}
#tts-form-home-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
#tts-form-home-controls p {
  margin: 0;
  font-size: 85%;
}
#tts-form-home button[type="submit"] {
  background: #e5e5e5;
  font-size: 100%;
  color: #7f7a7a;
  border: none;
  padding: 4px 20px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 0;
  transition: background 0.2s;
}
#tts-form-home button[type="submit"]:hover {
  color: #fff;
  background: #4353ff;
}
#tts_word_count_home {
  font-size: 100%;
  font-weight: bold;
  color: #1565c0;
}
#tts-audio-result-home {
  margin-top: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
#tts-audio-result-home audio {
  width: 100%;
  max-width: 500px;
  outline: none;
  display: inline-block;
}

.tts-download-link {
  display: inline-block;
  padding: 6px 16px;
  background: #4353ff;
  color: #fff;
  font-size: 85%;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.2s;
}
.tts-download-link a {
  color: #ffffff;
  text-decoration: none;
  word-wrap: break-word;
}
.tts-download-link:hover,
.tts-download-link a:hover {
  color: #ffffff;
  background: #0216c5;
}