#wizbot-root {
  --wb-grad-start: #252746;
  --wb-grad-mid: #3a4f8f;
  --wb-grad-end: #d48a3f;
  --wb-grad: linear-gradient(145deg, #252746 0%, #3558a8 62%, #d48a3f 100%);
  --wb-grad-soft: linear-gradient(145deg, rgba(37, 39, 70, 0.12) 0%, rgba(212, 138, 63, 0.14) 100%);
  --wb-white: #ffffff;
  --wb-bg: #f7f2e7;
  --wb-bot-bubble: #fbf7ef;
  --wb-bot-border: #dcc8a2;
  --wb-text: #252746;
  --wb-text-muted: #6a7085;
  --wb-radius: 20px;
  --wb-shadow: 0 14px 40px rgba(37, 39, 70, 0.28), 0 4px 14px rgba(212, 138, 63, 0.18);
  --wb-wizard-icon: url("./wizbot-avatar-full.png");
  --wb-launcher-size: 60px;
  --wb-launcher-right: 16px;
  --wb-launcher-bottom: 148px;
  --wb-panel-width: 375px;
  --wb-panel-top-gap: 20px;
  --wb-panel-bottom-offset: calc(var(--wb-launcher-bottom) + var(--wb-launcher-size));
  position: fixed !important;
  right: calc(var(--wb-launcher-right) + env(safe-area-inset-right)) !important;
  bottom: calc(var(--wb-launcher-bottom) + env(safe-area-inset-bottom)) !important;
  z-index: 99999 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif !important;
  line-height: normal !important;
}

#wizbot-root,
#wizbot-root *,
#wizbot-root *::before,
#wizbot-root *::after {
  box-sizing: border-box !important;
}

#wizbot-root [hidden] {
  display: none !important;
}

#wizbot-root button,
#wizbot-root input,
#wizbot-root textarea,
#wizbot-root select {
  font: inherit !important;
}

#wizbot-root .wizbot-launcher {
  position: relative !important;
  width: var(--wb-launcher-size) !important;
  height: var(--wb-launcher-size) !important;
}

#wizbot-root .wizbot-toggle {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: var(--wb-launcher-size) !important;
  min-width: var(--wb-launcher-size) !important;
  height: var(--wb-launcher-size) !important;
  min-height: var(--wb-launcher-size) !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 50% !important;
  background: transparent !important;
  box-shadow: 0 8px 20px rgba(37, 39, 70, 0.24), 0 3px 10px rgba(212, 138, 63, 0.14) !important;
  cursor: pointer !important;
  outline: none !important;
  overflow: hidden !important;
  transition: transform 0.22s ease, box-shadow 0.2s ease !important;
}

#wizbot-root .wizbot-toggle:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 12px 26px rgba(37, 39, 70, 0.28), 0 4px 12px rgba(212, 138, 63, 0.18) !important;
}

#wizbot-root .wizbot-toggle__ask {
  position: absolute !important;
  top: -7px !important;
  right: -8px !important;
  z-index: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  padding: 4px 8px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: #252746 !important;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  box-shadow: 0 6px 14px rgba(37, 39, 70, 0.14) !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}

#wizbot-root .wizbot-toggle__ask::before {
  content: "" !important;
  width: 7px !important;
  height: 7px !important;
  flex: 0 0 7px !important;
  border-radius: 999px !important;
  background: #56f58a !important;
  box-shadow: 0 0 0 2px rgba(86, 245, 138, 0.16), 0 0 10px rgba(86, 245, 138, 0.55) !important;
}

#wizbot-root .wizbot-toggle__avatar {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 50% !important;
  margin: 0 !important;
}

#wizbot-root .wizbot-panel {
  position: fixed !important;
  right: calc(var(--wb-launcher-right) + env(safe-area-inset-right)) !important;
  bottom: calc(var(--wb-panel-bottom-offset) + env(safe-area-inset-bottom)) !important;
  width: min(var(--wb-panel-width), calc(100vw - 24px - env(safe-area-inset-left) - env(safe-area-inset-right))) !important;
  height: min(620px, calc(100dvh - var(--wb-panel-top-gap) - var(--wb-panel-bottom-offset) - env(safe-area-inset-bottom))) !important;
  max-height: calc(100dvh - var(--wb-panel-top-gap) - var(--wb-panel-bottom-offset) - env(safe-area-inset-bottom)) !important;
  display: grid !important;
  grid-template-rows: auto minmax(0, 1fr) auto auto !important;
  border: none !important;
  border-radius: var(--wb-radius) !important;
  background: #fff !important;
  box-shadow: var(--wb-shadow) !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

#wizbot-root .wizbot-panel[hidden] {
  display: none !important;
}

#wizbot-root .wizbot-panel__glow {
  display: none !important;
}

#wizbot-root .wizbot-panel__header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 14px 16px !important;
  background: var(--wb-grad) !important;
  color: #fff !important;
  position: relative !important;
  overflow: hidden !important;
}

#wizbot-root .wizbot-panel__header::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%) !important;
  pointer-events: none !important;
}

#wizbot-root .wizbot-panel__identity {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  align-items: center !important;
  gap: 13px !important;
  min-width: 0 !important;
}

#wizbot-root .wizbot-panel__avatar {
  position: relative !important;
  width: 62px !important;
  height: 74px !important;
  border-radius: 22px !important;
  border: 2.5px solid rgba(255, 255, 255, 0.5) !important;
  background: rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
  display: grid !important;
  place-items: center !important;
  font-size: 0 !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18) !important;
  overflow: hidden !important;
}

#wizbot-root .wizbot-panel__avatar::before {
  content: "" !important;
  position: absolute !important;
  inset: 4px 4px 2px !important;
  border-radius: inherit !important;
  background-image: var(--wb-wizard-icon) !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

#wizbot-root .wizbot-panel__eyebrow {
  display: none !important;
}

#wizbot-root .wizbot-panel__header h2 {
  margin: 0 !important;
  color: #fff !important;
  font-size: 18px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}

#wizbot-root .wizbot-panel__status {
  margin: 3px 0 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

#wizbot-root .wizbot-panel__status-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  display: inline-block !important;
  background: #4ade80 !important;
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.3) !important;
  flex: 0 0 auto !important;
}

#wizbot-root .wizbot-panel__actions {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

#wizbot-root .wizbot-panel__action {
  position: relative !important;
  z-index: 2 !important;
  width: 40px !important;
  min-width: 40px !important;
  height: 40px !important;
  min-height: 40px !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.15) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: auto !important;
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: transparent !important;
  overflow: visible !important;
  transition: background 0.15s ease, transform 0.15s ease !important;
}

#wizbot-root .wizbot-panel__action::before {
  content: "" !important;
  position: absolute !important;
  inset: -8px !important;
  border-radius: 999px !important;
  pointer-events: none !important;
}

#wizbot-root .wizbot-panel__action:hover {
  background: rgba(255, 255, 255, 0.28) !important;
}

#wizbot-root .wizbot-panel__action--close {
  font-size: 24px !important;
  line-height: 1 !important;
}

#wizbot-root .wizbot-panel__action svg {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
}

#wizbot-root .wizbot-panel__action--spinning svg {
  animation: wizbot-spin 0.6s linear !important;
}

#wizbot-root .wizbot-thread {
  min-height: 0 !important;
  overflow-y: auto !important;
  padding: 18px 14px 12px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  background: var(--wb-bg) !important;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch !important;
}

#wizbot-root .wizbot-thread::-webkit-scrollbar {
  width: 3px !important;
}

#wizbot-root .wizbot-thread::-webkit-scrollbar-thumb {
  background: var(--wb-grad) !important;
  border-radius: 4px !important;
}

#wizbot-root .wizbot-message {
  display: flex !important;
  gap: 0 !important;
  max-width: 86% !important;
  animation: wizbot-pop 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

#wizbot-root .wizbot-message--assistant,
#wizbot-root .wizbot-message--form {
  align-self: flex-start !important;
}

#wizbot-root .wizbot-message--user {
  align-self: flex-end !important;
  margin-left: auto !important;
}

#wizbot-root .wizbot-message__avatar {
  display: none !important;
}

#wizbot-root .wizbot-message__content {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  max-width: 100% !important;
}

#wizbot-root .wizbot-message__bubble {
  padding: 11px 15px !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  word-break: break-word !important;
  white-space: pre-wrap !important;
}

#wizbot-root .wizbot-message--assistant .wizbot-message__bubble {
  background: var(--wb-bot-bubble) !important;
  border: 1px solid var(--wb-bot-border) !important;
  border-radius: 18px 18px 18px 4px !important;
  color: var(--wb-text) !important;
}

#wizbot-root .wizbot-message--user .wizbot-message__bubble {
  background: var(--wb-grad) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 18px 18px 4px 18px !important;
  box-shadow: 0 6px 16px rgba(37, 39, 70, 0.2), 0 3px 10px rgba(212, 138, 63, 0.14) !important;
}

#wizbot-root .wizbot-message__bubble--typing {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  width: fit-content !important;
  padding: 13px 16px !important;
  background: var(--wb-bot-bubble) !important;
  border: 1px solid var(--wb-bot-border) !important;
  border-radius: 18px 18px 18px 4px !important;
}

#wizbot-root .wizbot-typing {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
}

#wizbot-root .wizbot-typing span {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  display: inline-block !important;
  background: var(--wb-grad-start) !important;
  animation: wizbot-bounce 1.3s ease infinite !important;
  opacity: 0.5 !important;
}

#wizbot-root .wizbot-typing span:nth-child(2) {
  animation-delay: 0.18s !important;
  background: var(--wb-grad-mid) !important;
}

#wizbot-root .wizbot-typing span:nth-child(3) {
  animation-delay: 0.36s !important;
  background: var(--wb-grad-end) !important;
}

#wizbot-root .wizbot-message__cta a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 9px 14px !important;
  border-radius: 999px !important;
  background: var(--wb-grad) !important;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 20px rgba(37, 39, 70, 0.2), 0 3px 10px rgba(212, 138, 63, 0.16) !important;
}

#wizbot-root .wizbot-suggestions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  padding: 0 14px 12px !important;
  background: var(--wb-bg) !important;
}

#wizbot-root .wizbot-suggestion {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 38px !important;
  padding: 8px 16px !important;
  border: none !important;
  outline: 1.5px solid rgba(212, 138, 63, 0.42) !important;
  outline-offset: 0 !important;
  border-radius: 22px !important;
  background: #fff !important;
  color: #252746 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  box-shadow: 0 3px 10px rgba(37, 39, 70, 0.08) !important;
  transition: all 0.18s ease !important;
}

#wizbot-root .wizbot-suggestion:hover,
#wizbot-root .wizbot-suggestion:focus {
  background: var(--wb-grad) !important;
  color: #fff !important;
  outline: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(37, 39, 70, 0.2), 0 3px 10px rgba(212, 138, 63, 0.16) !important;
}

#wizbot-root .wizbot-lead-card {
  position: relative !important;
  align-self: stretch !important;
  display: grid !important;
  gap: 8px !important;
  padding: 14px 14px 12px !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 8px 24px rgba(37, 39, 70, 0.08), 0 3px 10px rgba(212, 138, 63, 0.08) !important;
  overflow: visible !important;
}

#wizbot-root .wizbot-lead-card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  background: var(--wb-grad) !important;
  border-radius: 16px 16px 0 0 !important;
}

#wizbot-root .wizbot-lead-card__title {
  padding-top: 4px !important;
  margin: 0 0 2px !important;
  color: var(--wb-text) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

#wizbot-root .wizbot-lead-card__summary {
  color: var(--wb-text-muted) !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

#wizbot-root .wizbot-lead-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

#wizbot-root .wizbot-lead-field {
  margin-bottom: 0 !important;
  display: grid !important;
  gap: 4px !important;
}

#wizbot-root .wizbot-lead-field label {
  display: block !important;
  margin: 0 !important;
  color: #6b7280 !important;
  font-size: 11.5px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.4px !important;
}

#wizbot-root .wizbot-lead-field input,
#wizbot-root .wizbot-lead-field select {
  width: 100% !important;
  padding: 9px 11px !important;
  border: 1.5px solid #e5e7eb !important;
  border-radius: 10px !important;
  background: #fafafa !important;
  color: var(--wb-text) !important;
  font-size: 13px !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  transition: border-color 0.15s, box-shadow 0.15s !important;
}

#wizbot-root .wizbot-lead-field input:focus,
#wizbot-root .wizbot-lead-field select:focus {
  border-color: #3558a8 !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(53, 88, 168, 0.12) !important;
}

#wizbot-root .wizbot-lead-consent {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  margin: 8px 0 3px !important;
  color: #9ca3af !important;
  font-size: 11px !important;
  line-height: 1.5 !important;
}

#wizbot-root .wizbot-lead-consent input[type="checkbox"] {
  width: 14px !important;
  height: 14px !important;
  margin-top: 1px !important;
  flex-shrink: 0 !important;
  accent-color: #3558a8 !important;
}

#wizbot-root .wizbot-lead-error {
  display: none !important;
  margin-top: 3px !important;
  color: #ef4444 !important;
  font-size: 11px !important;
}

#wizbot-root .wizbot-lead-error.is-visible {
  display: block !important;
}

#wizbot-root .wizbot-lead-submit {
  width: 100% !important;
  margin-top: 10px !important;
  padding: 9px !important;
  border: none !important;
  border-radius: 11px !important;
  background: var(--wb-grad) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  letter-spacing: 0.2px !important;
  box-shadow: 0 10px 24px rgba(37, 39, 70, 0.22), 0 4px 12px rgba(212, 138, 63, 0.18) !important;
  transition: opacity 0.15s, transform 0.1s, box-shadow 0.15s !important;
}

#wizbot-root .wizbot-form {
  padding: 10px 14px 10px !important;
  background: #fff !important;
  border-top: 1px solid #eef0f6 !important;
}

#wizbot-root .wizbot-form__composer {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: end !important;
  gap: 10px !important;
}

#wizbot-root .wizbot-form textarea {
  width: 100% !important;
  min-height: 48px !important;
  max-height: 120px !important;
  padding: 11px 13px !important;
  border: 1.5px solid #c9d3e9 !important;
  border-radius: 16px !important;
  background: #fff !important;
  color: var(--wb-text) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  resize: none !important;
  outline: none !important;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.75) !important;
}

#wizbot-root .wizbot-form textarea:focus {
  border-color: #3558a8 !important;
  box-shadow: 0 0 0 3px rgba(53, 88, 168, 0.14) !important;
}

#wizbot-root .wizbot-form button {
  min-width: 112px !important;
  min-height: 48px !important;
  padding: 0 18px !important;
  border: none !important;
  border-radius: 16px !important;
  background: var(--wb-grad) !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  box-shadow: 0 10px 24px rgba(37, 39, 70, 0.22), 0 4px 12px rgba(212, 138, 63, 0.18) !important;
}

#wizbot-root .wizbot-form button:disabled,
#wizbot-root .wizbot-lead-submit:disabled {
  opacity: 0.6 !important;
  cursor: default !important;
  transform: none !important;
  box-shadow: none !important;
}

#wizbot-root .wizbot-panel__footer {
  margin: 0 !important;
  padding: 7px 16px 9px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  flex-wrap: nowrap !important;
  background: #fff !important;
  border-top: 1px solid #f3f4f6 !important;
  text-align: center !important;
  color: #d1d5db !important;
  font-size: 11px !important;
  letter-spacing: 0.2px !important;
}

#wizbot-root .wizbot-panel__footer a {
  background: var(--wb-grad) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

#wizbot-root .wizbot-panel__footer-brand {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  line-height: 0 !important;
  vertical-align: middle !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: inherit !important;
}

#wizbot-root .wizbot-panel__footer-brand img {
  display: block !important;
  width: auto !important;
  height: 10px !important;
  filter: invert(16%) sepia(18%) saturate(1526%) hue-rotate(193deg) brightness(90%) contrast(94%) !important;
}

#wizbot-root .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

@keyframes wizbot-pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.3);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.1);
  }
}

@keyframes wizbot-bounce {
  0%,
  70%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  35% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

@keyframes wizbot-pop {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes wizbot-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1200px) {
  #wizbot-root {
    --wb-launcher-right: 14px;
    --wb-launcher-bottom: 138px;
    --wb-panel-width: 364px;
  }
}

@media (max-width: 1024px) {
  #wizbot-root {
    --wb-launcher-right: 12px;
    --wb-launcher-bottom: 132px;
    --wb-launcher-size: 58px;
    --wb-panel-width: 350px;
    --wb-panel-top-gap: 16px;
  }
}

@media (max-width: 767px) {
  #wizbot-root {
    --wb-launcher-right: 10px;
    --wb-launcher-bottom: 144px;
    --wb-launcher-size: 58px;
    --wb-panel-width: calc(100vw - 20px - env(safe-area-inset-left) - env(safe-area-inset-right));
    --wb-panel-top-gap: 14px;
  }

  #wizbot-root .wizbot-panel {
    top: calc(var(--wb-panel-top-gap) + env(safe-area-inset-top)) !important;
    left: calc(var(--wb-launcher-right) + env(safe-area-inset-left)) !important;
    right: auto !important;
    bottom: calc(var(--wb-panel-bottom-offset) + env(safe-area-inset-bottom)) !important;
    width: calc(100% - 20px - env(safe-area-inset-left) - env(safe-area-inset-right)) !important;
    max-width: none !important;
    height: auto !important;
    max-height: calc(100dvh - var(--wb-panel-top-gap) - var(--wb-panel-bottom-offset) - env(safe-area-inset-top) - env(safe-area-inset-bottom)) !important;
  }
}

@media (max-height: 820px) {
  #wizbot-root {
    --wb-panel-top-gap: 12px;
  }
}

@media (max-height: 680px) {
  #wizbot-root {
    --wb-panel-top-gap: 10px;
  }
}

@media (max-width: 430px) {
  #wizbot-root {
    --wb-launcher-right: 8px;
    --wb-launcher-bottom: 152px;
    --wb-launcher-size: 56px;
    --wb-panel-width: calc(100vw - 16px - env(safe-area-inset-left) - env(safe-area-inset-right));
    --wb-panel-top-gap: 12px;
  }

  #wizbot-root .wizbot-panel {
    top: calc(var(--wb-panel-top-gap) + env(safe-area-inset-top)) !important;
    left: calc(var(--wb-launcher-right) + env(safe-area-inset-left)) !important;
    right: auto !important;
    bottom: calc(var(--wb-panel-bottom-offset) + env(safe-area-inset-bottom)) !important;
    width: calc(100% - 16px - env(safe-area-inset-left) - env(safe-area-inset-right)) !important;
    height: auto !important;
    max-width: none !important;
    max-height: calc(100dvh - var(--wb-panel-top-gap) - var(--wb-panel-bottom-offset) - env(safe-area-inset-top) - env(safe-area-inset-bottom)) !important;
    border-radius: 16px !important;
  }

  #wizbot-root .wizbot-launcher {
    width: var(--wb-launcher-size) !important;
    height: var(--wb-launcher-size) !important;
  }

  #wizbot-root .wizbot-toggle {
    width: var(--wb-launcher-size) !important;
    min-width: var(--wb-launcher-size) !important;
    height: var(--wb-launcher-size) !important;
    min-height: var(--wb-launcher-size) !important;
  }

  #wizbot-root .wizbot-toggle__ask {
    top: -6px !important;
    right: -6px !important;
    padding: 3px 7px !important;
    font-size: 8px !important;
    gap: 3px !important;
    letter-spacing: 0.1em !important;
  }

  #wizbot-root .wizbot-toggle__ask::before {
    width: 6px !important;
    height: 6px !important;
    flex-basis: 6px !important;
  }

  #wizbot-root .wizbot-toggle__avatar {
    width: 100% !important;
    height: 100% !important;
  }

  #wizbot-root .wizbot-panel__header {
    padding: 12px 14px !important;
  }

  #wizbot-root .wizbot-thread {
    padding: 14px 12px 10px !important;
  }

  #wizbot-root .wizbot-suggestions,
  #wizbot-root .wizbot-form {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  #wizbot-root .wizbot-form__composer {
    grid-template-columns: 1fr !important;
  }

  #wizbot-root .wizbot-form button {
    width: 100% !important;
  }

  #wizbot-root .wizbot-lead-grid {
    grid-template-columns: 1fr !important;
  }
}
