/* Minimal mic FAB for story page */
.voice-mic-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1050;
}
.voice-mic-fab svg { pointer-events: none; }
.voice-mic-fab.is-listening { background: #e74c3c; }
.voice-mic-tooltip {
  position: fixed;
  right: 84px;
  bottom: 28px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  z-index: 1050;
}
