.speak-out {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  padding: 15px;
  max-width: 800px;
  margin: auto;
  border-radius: 8px;
}

.speak-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.speak-tabs li button {
  background: #0073aa;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
}

.tab-content {
  display: none;
  border-top: 2px solid #0073aa;
  padding-top: 15px;
}

.tab-content.active {
  display: block;
}
