/* Import shared component styles */
@import url('../ui-wrappers/shared/styles.css');

/* Import UI wrapper styles */
@import url('../ui-wrappers/v1/styles.css');
@import url('../ui-wrappers/v3/styles.css');
@import url('../ui-wrappers/hybrid/styles.css');

.v3-widget .aizee-watermark {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -26px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--theme-primary-color, #2C0855);
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 999px;
  pointer-events: auto;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  z-index: 30;
  opacity: 0.98;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
}

.voice-widget-float .aizee-watermark,
.widget-float .aizee-watermark {
  position: absolute;
  right: 0;
  bottom: -26px;
  transform: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--theme-primary-color, #2C0855);
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 999px;
  pointer-events: auto;
  z-index: 30;
  opacity: 0.98;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
}

/* Centered watermark for Hybrid pill */
.hybrid-widget-pill .aizee-watermark {
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--theme-primary-color, #2C0855);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  pointer-events: auto;
  z-index: 30;
  opacity: 0.98;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.16);
  white-space: nowrap; /* prevent text wrapping/cutting */
}

/* On floating placement, avoid viewport cut-off by anchoring to the right edge */
.voice-widget-float .hybrid-widget-pill .aizee-watermark,
.widget-float .hybrid-widget-pill .aizee-watermark {
  left: auto;
  right: 0;
  transform: none;
}

.v3-widget .aizee-watermark::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.35);
  opacity: 0.85;
}

.v3-widget .aizee-watermark span {
  text-transform: uppercase;
  opacity: 0.68;
}

/* Unified link style: white with typical underline */
.aizee-watermark a {
  color: #ffffff !important;
  text-decoration: underline !important;
  font-weight: 600;
}
