@charset "UTF-8";

.absolute {
  position: absolute !important;
}

.inline-flex {
  display: inline-flex !important;
}

.text-black-3 {
  color: var(--black-color-3);
}

.bg-blue-grad-3 {
  background: var(--blue-grad-3);
}

.bg-blue-4 {
  background: var(--blue-color-4) !important;
}

.bg-black-2 {
  background: var(--black-color-2) !important;
}

.bg-black-5 {
  background: var(--black-color-5) !important;
}

.bg-black-6 {
  background: var(--black-color-6);
}

.border-0 {
  border-width: 0 !important;
}

.shadow-1 {
  box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.6);
}

.glass-1 {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 40px 40px 80px -6px rgba(0, 0, 0, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-2 {
  --input-placeholder-color: var(--white-color-3);
  color: white;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  box-shadow: 8px 8px 120px -6px rgba(0, 0, 0, 0.2);
  border: none;
}
.glass-2.activate:active {
  background: var(--black-color-4) !important;
}

.mask-arrow {
  mask-image: linear-gradient(black, black), url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='1rem' height='1rem' viewBox='0 0 1024 1024'%3E%3Cpath d='M648.362667 755.2a42.666667 42.666667 0 0 0 60.330666 0.554667l217.173334-213.333334a42.666667 42.666667 0 0 0 0-60.842666l-217.173334-213.333334a42.666667 42.666667 0 0 0-59.818666 60.842667L791.68 469.333333H128a42.666667 42.666667 0 1 0 0 85.333334h663.68l-142.805333 140.245333a42.666667 42.666667 0 0 0-0.512 60.330667z' %3E%3C/path%3E%3C/svg%3E");
  mask-composite: exclude;
  mask-repeat: no-repeat;
  mask-position: center;
}

.animated-bg-grad {
  background: var(--blue-grad-3);
  background-size: 400% 400%;
  animation: gradient 30s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.text-glow {
  text-shadow: 0 0 0.1em, 0 0 0.2em;
}

.bg-glow {
  filter: drop-shadow(0 0 0.1em);
}

.btn {
  cursor: pointer;
}

.form-control {
  --input-padding: 0.375rem 0.375rem 0.375rem 0.5rem;
  font-size: 0.8rem;
  line-height: 1.5;
}

.gg-arrow-right {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 22px;
}

.gg-arrow-right::after,
.gg-arrow-right::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  right: 3px;
}

.gg-arrow-right::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
  bottom: 7px;
}

.gg-arrow-right::before {
  width: 16px;
  height: 2px;
  bottom: 10px;
  background: currentColor;
}

.gg-time {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: 2px solid transparent;
  box-shadow: 0 0 0 2px currentColor;
}

.gg-time::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 7px;
  height: 7px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  top: 1px;
  left: 5px;
}

.shake-horizontal {
  animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}

@keyframes shake-horizontal {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70% {
    transform: translateX(-10px);
  }
  20%, 40%, 60% {
    transform: translateX(10px);
  }
  80% {
    transform: translateX(8px);
  }
  90% {
    transform: translateX(-8px);
  }
}

#nano-bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(1200px 1200px at 70% 20%, rgba(15, 23, 42, 0.25), rgba(31, 77, 187, 0.65) 60%, rgba(11, 28, 68, 0.85));
  backdrop-filter: blur(0.5px);
}

.hero h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 0 0 0.5rem;
    color: #fff;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.hero p {
  color: #c7d2fe;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  animation: pulse-white 2.5s infinite ease-in-out;
}

@keyframes pulse-white {
  0%, 100% {
    color: #c7d2fe;
    text-shadow: 0 0 7px rgba(255, 255, 255, 0.3);
  }
  50% {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.5);
  }
}
/* ============================================== */
/* ✅ NANO WIDGET CONTAINER                       */
/* ============================================== */
#nano-widget {
  position: fixed;
  bottom: 100px;
  right: 50px;
  width: 300px;
  height: 60px;
  padding: 0;
  box-sizing: border-box;
  z-index: 20001;
  border-radius: 9999px;
  transform-style: preserve-3d;
  transition: transform 0.6s ease-out;
  transform: perspective(1000px) rotateY(0deg);
  will-change: transform;
  overflow: visible;
  pointer-events: auto;
}

/* ✅ MOBILE: center + 25px gap from bottom */
@media (max-width: 768px) {
  #nano-widget {
    left: 50%;
    right: auto;
    transform: translateX(-50%) perspective(1000px) rotateY(0deg);
    bottom: 100px;
    width: min(332px, calc(100vw - 24px));
  }

  #nano-widget.is-flipped {
    transform: translateX(-50%) perspective(1000px) rotateY(180deg) !important;
  }
}
.nano-skin {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, #003366, #001122);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.nano-skin::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 9999px;
  background: linear-gradient(125deg, rgba(120, 200, 255, 0.75), rgba(255, 255, 255, 0.08), rgba(120, 200, 255, 0.55));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.85;
}

.nano-skin::after {
  content: "";
  position: absolute;
  top: -55%;
  left: -140%;
  width: 260%;
  height: 220%;
  background-image: linear-gradient(125deg, transparent 32%, rgba(180, 220, 255, 0.38) 50%, transparent 68%);
  animation: nanoWidgetGlint 5s linear infinite;
  animation-delay: -1.6s;
}

@keyframes nanoWidgetGlint {
  0% {
    left: -140%;
  }
  14% {
    left: 85%;
  }
  100% {
    left: 85%;
  }
}
.front-content, .back-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 5px;
  box-sizing: border-box;
  gap: 10px;
  backface-visibility: hidden;
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.back-content {
  transform: rotateY(180deg);
  opacity: 0;
  pointer-events: none;
}

#nano-widget.is-flipped .front-content {
  opacity: 0;
  pointer-events: none;
}

#nano-widget.is-flipped .back-content {
  opacity: 1;
  pointer-events: auto;
}

.front-content #widget-icon-front,
.back-content #widget-icon-back {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #000;
  padding: 1px;
  box-sizing: border-box;
  flex: 0 0 auto;
}

/* ✅ Audio bars: 8 bars (in voice mode) */
.nano-audio-bars {
  width: 100%;
  height: 40px;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding: 6px 6px;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  flex: 0 0 auto;
  opacity: 0.62;
  pointer-events: none;
}

.nano-audio-bars .bar {
  width: 5px;
  height: 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.16);
  transform-origin: bottom;
  transform: scaleY(var(--s, 0.35));
  opacity: 0.9;
}

.nano-audio-bars.is-speaking {
  opacity: 1;
}

.nano-audio-bars.is-speaking .bar {
  opacity: 1;
}

.nano-action-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
}

.nano-btn {
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  color: rgba(207, 248, 255, 0.96);
  font-family: "Geist", sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
  cursor: pointer;
  line-height: 1;
  transition: transform 0.15s ease, opacity 0.2s ease;
  user-select: none;
  white-space: nowrap;
  opacity: 0.95;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nano-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  opacity: 1;
}

.nano-btn:disabled {
  cursor: wait;
  opacity: 0.75;
}

.nano-btn.end {
  color: rgba(255, 230, 230, 0.96);
  opacity: 0.92;
}

.nano-btn.end:hover:not(:disabled) {
  opacity: 1;
}

.nano-btn .nano-rec-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
  background: rgba(200, 200, 200, 0.65);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transform: scale(1);
}

@keyframes nanoRecPulseYellowRed {
  0% {
    background: rgba(255, 230, 120, 0.98);
    box-shadow: 0 0 10px rgba(255, 230, 120, 0.45), 0 0 24px rgba(255, 230, 120, 0.18);
    transform: scale(1);
  }
  50% {
    background: rgba(255, 60, 60, 0.98);
    box-shadow: 0 0 14px rgba(255, 60, 60, 0.85), 0 0 34px rgba(255, 60, 60, 0.45), 0 0 60px rgba(255, 20, 20, 0.25);
    transform: scale(1.6);
  }
  100% {
    background: rgba(255, 230, 120, 0.98);
    box-shadow: 0 0 10px rgba(255, 230, 120, 0.45), 0 0 24px rgba(255, 230, 120, 0.18);
    transform: scale(1);
  }
}
.nano-btn.is-recording .nano-rec-dot {
  animation: nanoRecPulseYellowRed 0.85s ease-in-out infinite;
  will-change: transform, box-shadow, background;
}

.nano-btn.is-paused .nano-rec-dot {
  animation: none !important;
  background: rgba(190, 200, 210, 0.4);
  box-shadow: none;
  transform: scale(1);
}

.nano-undertext {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.2px;
  color: white !important;
  user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 14px;
  position: relative;
  width: 100%;
}

/* ✅ Voice-mode undertext slot: reserve baseline; bars sit on that baseline (and do not push the button) */
.nano-undertext.voice-slot {
  height: 14px;
  min-height: 14px;
  width: 100%;
}

.nano-undertext.voice-slot .nano-audio-bars {
  position: absolute;
  left: 0;
  top: -18px;
}

.nano-right-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 46px;
}

.nano-info-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(33, 202, 231, 0.84);
  color: rgba(255, 255, 255, 0.92);
  font-size: 25px;
  font-weight: 800;
  padding: 10px;
  cursor: default;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  user-select: none;
  line-height: 1;
}

.nano-pause-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #22a6bd;
  color: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  font-size: 18px;
  line-height: 1;
  padding: 0;
  transform: translateY(0);
}

.nano-pause-icon:hover {
  background: #28d337;
  transform: translateY(-1px);
}

.nano-tooltip {
  position: fixed;
  left: 0;
  top: 0;
  width: 260px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 1.35;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.12s ease, transform 0.12s ease;
  transform: translateY(2px);
  z-index: 99999;
}

.nano-tooltip.visible {
  opacity: 1;
  transform: translateY(-2px);
  pointer-events: auto;
}

.nano-tooltip::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: -7px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid rgba(0, 0, 0, 0.78);
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.1));
}

#nano-close-button {
  position: absolute;
  top: -8px;
  right: -2px;
  width: 24px;
  height: 24px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  border: 2px solid #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
  z-index: 2001;
  line-height: 1;
  font-family: Arial, sans-serif;
}

#nano-close-button:hover {
  background-color: #D32F2F;
}

#nano-close-button.visible {
  display: flex;
}

/* ===================================================== */
/* ✅ UNIVERSAL TOOL CONTENT OVERLAY (DESKTOP + MOBILE)  */
/* Opens tool URLs INSIDE this page so mic + WS keep running */
/* ===================================================== */
#nano-tool-overlay {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: none;
  pointer-events: none;
}

#nano-tool-overlay.visible {
  display: block;
  pointer-events: auto;
}

#nano-tool-overlay .nto-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}

#nano-tool-overlay .nto-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1100px, calc(100vw - 24px));
  height: min(780px, calc(100vh - 24px));
  border-radius: 18px;
  overflow: hidden;
  background: rgba(8, 18, 40, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
}

#nano-tool-overlay .nto-bar {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(20, 40, 85, 0.9), rgba(10, 20, 45, 0.9));
  gap: 10px;
  flex: 0 0 auto;
}

#nano-tool-overlay .nto-title {
  font-size: 12px;
  color: rgba(230, 240, 255, 0.92);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1 1 auto;
}

#nano-tool-overlay .nto-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

#nano-tool-overlay .nto-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 8px 10px;
  font-family: "Geist", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

#nano-tool-overlay .nto-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

#nano-tool-overlay .nto-iframe {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

#nano-tool-overlay .nto-hint {
  font-size: 11px;
  color: rgba(200, 210, 255, 0.78);
  margin-left: 10px;
  display: none;
}

@media (max-width: 768px) {
  #nano-tool-overlay .nto-panel {
    width: calc(100vw - 12px);
    height: calc(100vh - 12px);
    border-radius: 16px;
  }

  #nano-tool-overlay .nto-hint {
    display: inline;
  }
}
/* (kept, but NOT USED) */
#nano-content-modal {
  display: none !important;
}

/* ===========================
 ✅ Make Voice Chat / End Call bigger (+2pt) and more vertically centered
 =========================== */
.nano-btn {
  align-items: center !important;
  font-size: 22px !important;
  line-height: 1.08 !important;
  margin-top: 10px;
}

.nano-btn .nano-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: translateY(1px);
}

.nano-btn .nano-phone-icon svg {
  width: 35px !important;
  height: 35px !important;
  display: block;
}

/* ===========================
   ✅ First-time info popup
   =========================== */
#nano-info-pop {
  position: fixed;
  z-index: 99999;
  width: min(320px, calc(100vw - 24px));
  padding: 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: auto;
}

#nano-info-pop.visible {
  opacity: 1;
  transform: translateY(0);
}

#nano-info-pop .nip-close {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 22px;
  height: 22px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  line-height: 1;
  user-select: none;
}

#nano-info-pop .nip-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===========================
   ✅ Network warning toast
   =========================== */
#nano-netwarn {
  position: fixed;
  z-index: 99999;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.95);
  padding: 10px 12px;
  border-radius: 14px;
  font-family: "Geist", system-ui, sans-serif;
  font-size: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
  white-space: nowrap;
}

#nano-netwarn.visible {
  opacity: 1;
}

/* ===========================
   ✅ Right-rail Gemini output indicator
   =========================== */
.nano-right-rail-voice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
}

.nano-rr-bars {
  width: 45px;
  height: 45px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: white;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  opacity: 1 !important;
  padding: 8px 7px;
  box-sizing: border-box;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.nano-rr-bars .b {
  width: 4px;
  height: 8px;
  border-radius: 6px;
  background: #00b4f0;
  transform-origin: bottom;
  transform: scaleY(var(--rrs, 0.35));
  opacity: 0.95;
}

.nano-rr-mic {
  width: 45px;
  height: 45px;
  border-radius: 999px;
  border: 1px solid #00b4f0;
  background: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: visible;
}

/* Pulsing animation for border + shadow */
@keyframes pulse-border {
  0%, 100% {
    border-color: #00b4f0;
    box-shadow: 0 0 0 0 #008fbe;
  }
  50% {
    border-color: #00536e;
    box-shadow: 0 0 0 10px rgba(220, 20, 60, 0);
  }
}
/* ✅ ONLY pulse the right-rail mic once the session is active */
.nano-session-active .nano-rr-mic:not(.nano-hidden) {
  animation: pulse-border 2.8s ease-in-out infinite;
}

.nano-hidden {
  display: none !important;
}

/* ===========================
   ✅ Front mic icon
   =========================== */
.nano-mic-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid  #00b4f0;
  background: rgba(255, 255, 255, 0.95);
  color: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  font-size: 18px;
  line-height: 1;
  padding: 0;
  transform: translateY(0);
}

/* SVG mic pulsing fill/stroke color */
@keyframes pulse-mic-svg {
  0%, 100% {
    fill: white;
  }
  50% {
    fill:  #00b4f0;
  }
}
/* ✅ ONLY pulse the mic SVG once the session is active */
.nano-session-active .nano-rr-mic svg path,
.nano-session-active .nano-mic-icon svg path {
  animation: pulse-mic-svg 0.5s ease-in-out infinite;
}

/* ===========================
   ✅ Widget icon background purple
   =========================== */
.front-content #widget-icon-front,
.back-content #widget-icon-back {
  background-color:  white;
}

/* ===========================
   ✅ Powered label inside undertext
   =========================== */

#nano-front > div.nano-action-wrap > div > span > a {
      text-decoration: none; 
        color: black;
}

      /* ✅ Minimal optional CSS hooks (doesn't require changing your hosted style.css) */
      .nano-phone-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      /* Optional inline text input row (only shown if input:true) */
      .nano-text-row {
        display: none;
        gap: 8px;
        margin-top: 10px;
        width: 100%;
      }
      .nano-text-row.nano-text-row--on {
        display: flex;
      }
      .nano-text-row input {
        flex: 1;
        min-width: 0;
        padding: 10px 12px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(0, 0, 0, 0.25);
        color: #fff;
        outline: none;
      }
      .nano-text-row button {
        padding: 10px 12px;
        border-radius: 10px;
        border: 0;
        cursor: pointer;
      }