/* Floating Mic */
.stm8-floating-mic {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 99999;
}
.stm8-floating-mic-label {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 12px;
    color: #2e2e2e;
    text-align: center;
    margin-bottom: 6px; /* small padding above the button */
    line-height: 1;
}


.stm8-floating-mic-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #2e502f;
  color: #fff;
  font-size: 32px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
  transition: 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stm8-floating-mic-btn:hover {
  transform: scale(1.07);
}

.stm8-floating-mic-btn.stm8-hangup {
  background: #ff5a5a;
}
