.site-voice-input-target {
  outline-color: rgba(47, 91, 232, 0.55);
  outline-offset: 2px;
}

.site-voice-input-button {
  position: fixed;
  z-index: 2147483000;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(18, 24, 38, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: #1f4fe0;
  box-shadow: 0 10px 24px rgba(18, 24, 38, 0.14);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.site-voice-input-button.is-visible {
  display: flex;
}

.site-voice-input-button:hover {
  border-color: rgba(31, 79, 224, 0.45);
  color: #0f3bc8;
}

.site-voice-input-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.site-voice-input-button.is-recording {
  background: #e43d3d;
  border-color: #e43d3d;
  color: #ffffff;
}

.site-voice-input-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.site-voice-input-status {
  position: fixed;
  z-index: 2147483000;
  max-width: min(280px, calc(100vw - 32px));
  display: none;
  padding: 6px 10px;
  border: 1px solid rgba(18, 24, 38, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(18, 24, 38, 0.12);
  color: #303642;
  font: 600 12px/1.35 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transform: translate(-50%, 0);
  pointer-events: none;
}

.site-voice-input-status.is-visible {
  display: block;
}
