/************************************************************
 * Vox5 Voice Core – Floating Mic Styles
 * Shared across all demos
 ************************************************************/

/* ----------------------------------------
 * Default Theme Variables
 * -------------------------------------- */
:root {
  --vox5-mic-color: #000000;
  --vox5-mic-hover-color: #111111;
  --vox5-mic-hangup-color: #ff5a5a;
  --vox5-label-color: #2e2e2e;
}

/* ----------------------------------------
 * Wrapper
 * -------------------------------------- */
.vox5-floating-mic {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ----------------------------------------
 * Click-to-Talk Label
 * -------------------------------------- */
.vox5-floating-mic-label {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  color: var(--vox5-label-color);
  text-align: center;
  margin-bottom: 6px;
  line-height: 1;
}

/* ----------------------------------------
 * Mic Button
 * -------------------------------------- */
.vox5-mic-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--vox5-mic-color);
  color: #fff;
  font-size: 32px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, background 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ----------------------------------------
 * Hover State
 * -------------------------------------- */
.vox5-mic-btn:hover {
  transform: scale(1.07);
  background: var(--vox5-mic-hover-color);
}

/* ----------------------------------------
 * Hangup State
 * -------------------------------------- */
.vox5-mic-btn.vox5-hangup {
  background: var(--vox5-mic-hangup-color);
}

.vox5-left-sidebar a.vox5-sidebar-link {
  display: block;
  color: #6c4bff !important;
  text-decoration: none !important;
  text-decoration-thickness: initial !important;
  text-underline-offset: initial !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  font-family: var(--wp--preset--font-family--outfit) !important;
  margin-left: 60px;
}


