/* Haim Voice Reader — floating Hebrew TTS controls */
#haim-voice-reader {
  position: fixed;
  top: 120px;
  left: 16px;
  z-index: 99998;
  display: flex;
  gap: 8px;
  direction: rtl;
  font-family: "Heebo", "Arial Hebrew", "David", Arial, sans-serif;
}
#haim-voice-reader button {
  background: linear-gradient(135deg, #4A148C 0%, #6A1B9A 100%);
  color: #fff;
  border: 2px solid #C9A14A;
  border-radius: 28px;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s, box-shadow 0.15s;
}
#haim-voice-reader button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
#haim-voice-reader button:active {
  transform: translateY(0);
}
#haim-voice-reader button[aria-pressed="true"] {
  background: linear-gradient(135deg, #C9A14A 0%, #E8C76F 100%);
  color: #4A148C;
}
#haim-voice-reader .hvr-icon {
  font-size: 16px;
  line-height: 1;
}
#haim-voice-reader .hvr-icon[hidden] {
  display: none;
}
#haim-voice-reader button[hidden] {
  display: none;
}
#haim-voice-reader .hvr-label {
  white-space: nowrap;
}
@media (max-width: 480px) {
  #haim-voice-reader {
    top: 80px;
    left: 8px;
  }
  #haim-voice-reader button {
    padding: 8px 14px;
    font-size: 13px;
  }
}
@media print {
  #haim-voice-reader { display: none !important; }
}
