/* Floating voice pop container */
#voicePop {
  position: fixed;
  top: 20px;
  right: 60px;
  background: #222;
  color: #fff;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1100; /* above modals */
  display: none; /* hidden by default */
  align-items: center;
  gap: 8px;
}

/* Stop button styling */
#stopAudioBtn {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #dc3545;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 1101; /* higher than voicePop */
  display: none; /* hidden by default */
}

#stopAudioBtn:hover {
  background: #b02a37;
}
