.ihs-chat-wrap {
  --ihs-accent: #54b4ff;
  --ihs-on-accent: #12324a;
  --ihs-bg: #121212;
  --ihs-bg-elev: #1a1a1a;
  --ihs-paper: #222222;
  --ihs-ink: #f4f1ea;
  --ihs-muted: #9aa3a0;
  --ihs-line: #2d2d2d;
  --ihs-link: var(--ihs-accent);
  --ihs-alert: #f0cfcf;
  --ihs-alert-bg: #2c1616;
  --ihs-alert-line: #8a4545;
  --ihs-user: #2a2a2a;
  --ihs-user-line: #3a3a3a;
  --ihs-chip: #2a2a2a;
  --ihs-chip-line: #3d3d3d;
  --ihs-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  --ihs-radius: 16px;
  --ihs-kb: 0px;
  color: var(--ihs-ink);
  font: 16px/1.5 system-ui, -apple-system, "Segoe UI", sans-serif;
  box-sizing: border-box;
}

.ihs-chat-wrap *,
.ihs-chat-wrap *::before,
.ihs-chat-wrap *::after {
  box-sizing: border-box;
}

.ihs-chat-wrap--light {
  --ihs-bg: #f4f6f7;
  --ihs-bg-elev: #ffffff;
  --ihs-paper: #ffffff;
  --ihs-ink: #1b1d1f;
  --ihs-muted: #5c6563;
  --ihs-line: #d5dbd8;
  --ihs-alert: #6b1d1d;
  --ihs-alert-bg: #fdeeee;
  --ihs-alert-line: #e2b4b4;
  --ihs-user: #ffffff;
  --ihs-user-line: #cfd6d3;
  --ihs-chip: #ffffff;
  --ihs-chip-line: #cfd6d3;
  --ihs-shadow: 0 10px 28px rgba(16, 24, 32, 0.12);
}

.ihs-chat-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.ihs-chat-wrap--shortcode {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.ihs-chat {
  display: flex;
  flex-direction: column;
  background: var(--ihs-bg);
  color: var(--ihs-ink);
  border: 1px solid var(--ihs-line);
  border-radius: var(--ihs-radius);
  min-height: 28rem;
  height: min(40rem, 80vh);
  overflow: hidden;
}

.ihs-chat-header {
  flex-shrink: 0;
  padding: 0.7rem 0.85rem 0.55rem;
}

.ihs-chat-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.ihs-chat-brand {
  min-width: 0;
}

.ihs-chat-logo {
  display: block;
  height: 2.8rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.ihs-chat-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.ihs-chat-cta {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
  align-items: center;
}

.ihs-chat-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.9rem;
  white-space: nowrap;
}

.ihs-chat-cta-call {
  background: var(--ihs-accent);
  color: var(--ihs-on-accent);
}

.ihs-chat-wrap a.ihs-chat-cta-book {
  background: transparent;
  color: var(--ihs-ink);
  border: 2px solid var(--ihs-accent);
}

.ihs-chat-close {
  min-height: 40px;
  min-width: 40px;
  border: 0;
  background: transparent;
  color: var(--ihs-ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.ihs-chat-wrap .ihs-chat-subtitle {
  margin: 0.45rem 0 0;
  color: var(--ihs-muted);
  font-size: 0.7rem !important;
  line-height: 1.3;
}

.ihs-chat-main {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ihs-chat-log {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0.2rem 0.85rem 0.6rem;
}

.ihs-chat-msg {
  max-width: 92%;
  padding: 0.85rem 1rem;
  border-radius: var(--ihs-radius);
  box-shadow: var(--ihs-shadow);
  background: var(--ihs-paper);
  border: 1px solid var(--ihs-line);
}

.ihs-chat-msg--user {
  align-self: flex-end;
  background: var(--ihs-user);
  color: var(--ihs-ink);
  border-color: var(--ihs-user-line);
}

.ihs-chat-empty {
  margin: auto;
  max-width: 26rem;
  padding: 0.5rem 0.75rem;
  text-align: center;
  color: var(--ihs-muted);
  font-size: 0.9rem;
}

.ihs-chat-log:has(.ihs-chat-msg) .ihs-chat-empty,
.ihs-chat-empty[hidden] {
  display: none;
}

.ihs-chat-msg--assistant {
  align-self: flex-start;
}

.ihs-chat-wrap .ihs-chat-body,
.ihs-chat-wrap .ihs-chat-body p,
.ihs-chat-wrap .ihs-chat-body li {
  color: var(--ihs-ink);
  -webkit-text-fill-color: var(--ihs-ink);
}

.ihs-chat-wrap--floating .ihs-chat-body,
.ihs-chat-wrap--floating .ihs-chat-body p,
.ihs-chat-wrap--floating .ihs-chat-body li,
.ihs-chat-wrap--sidebar .ihs-chat-body,
.ihs-chat-wrap--sidebar .ihs-chat-body p,
.ihs-chat-wrap--sidebar .ihs-chat-body li {
  font-size: 15px !important;
  line-height: 1.5 !important;
  color: var(--ihs-ink);
  -webkit-text-fill-color: var(--ihs-ink);
}

.ihs-chat-msg--alert {
  background: var(--ihs-alert-bg);
  border-color: var(--ihs-alert-line);
  color: var(--ihs-alert);
}

.ihs-chat-wrap .ihs-chat-who {
  margin: 0 0 0.35rem;
  font-size: 0.7rem !important;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ihs-accent);
  -webkit-text-fill-color: var(--ihs-accent);
}

.ihs-chat-body p,
.ihs-chat-body ul {
  margin: 0.35rem 0;
}

.ihs-chat-body ul {
  padding-left: 1.2rem;
}

.ihs-chat-wrap .ihs-chat-body a {
  color: var(--ihs-link);
  -webkit-text-fill-color: var(--ihs-link);
}

.ihs-chat-wrap .ihs-chat-body a.ihs-chat-map-link {
  color: var(--ihs-link);
  -webkit-text-fill-color: var(--ihs-link);
  text-decoration: underline;
}

.ihs-chat-wrap .ihs-chat-thinking {
  color: var(--ihs-muted);
  -webkit-text-fill-color: var(--ihs-muted);
  font-style: italic;
}

.ihs-chat-thinking::after {
  content: "";
  animation: ihs-chat-dots 1.2s steps(4, end) infinite;
}

@keyframes ihs-chat-dots {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
}

.ihs-chat-sources,
.ihs-chat-meta {
  margin-top: 0.75rem;
  color: var(--ihs-muted);
  font-size: 0.85rem;
}

.ihs-chat-sources summary,
.ihs-chat-meta summary {
  cursor: pointer;
}

.ihs-chat-source-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.45rem;
}

.ihs-chat-source-chips a,
.ihs-chat-suggest button {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--ihs-chip);
  color: var(--ihs-ink);
  text-decoration: none;
  border: 1px solid var(--ihs-chip-line);
  font-size: 0.9rem;
}

.ihs-chat-source-chips a:hover,
.ihs-chat-suggest button:hover {
  border-color: var(--ihs-link);
  color: var(--ihs-link);
}

.ihs-chat-snippets {
  margin: 0.4rem 0 0;
  padding-left: 1.15rem;
}

.ihs-chat-dock {
  flex-shrink: 0;
  background: var(--ihs-bg);
  padding: 0.35rem 0.85rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  padding-bottom: calc(0.55rem + env(safe-area-inset-bottom, 0px) + var(--ihs-kb));
  border-top: 1px solid var(--ihs-line);
}

.ihs-chat-suggest {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem;
  margin: 0 0 0.55rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ihs-chat-suggest::-webkit-scrollbar {
  display: none;
}

.ihs-chat-suggest button {
  cursor: pointer;
  background: var(--ihs-bg-elev);
  flex-shrink: 0;
  font: inherit;
}

.ihs-chat-composer {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
}

.ihs-chat-wrap .ihs-chat-composer textarea {
  flex: 1;
  resize: none;
  min-height: 44px;
  max-height: 120px;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--ihs-line);
  font: inherit;
  background: var(--ihs-bg-elev);
  color: var(--ihs-ink);
  caret-color: var(--ihs-ink);
  -webkit-text-fill-color: var(--ihs-ink);
}

.ihs-chat-wrap .ihs-chat-composer textarea:is(:hover, :focus, :focus-visible) {
  color: var(--ihs-ink);
  caret-color: var(--ihs-ink);
  -webkit-text-fill-color: var(--ihs-ink);
}

.ihs-chat-wrap--dark .ihs-chat-composer textarea {
  color-scheme: dark;
}

.ihs-chat-wrap--light .ihs-chat-composer textarea {
  color-scheme: light;
}

.ihs-chat-wrap .ihs-chat-composer textarea::placeholder {
  color: var(--ihs-muted);
  -webkit-text-fill-color: var(--ihs-muted);
}

.ihs-chat-send {
  background: var(--ihs-accent);
  color: var(--ihs-on-accent);
  border: 0;
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  min-height: 44px;
}

.ihs-chat-send:disabled {
  opacity: 0.6;
  cursor: wait;
}

.ihs-chat-wrap .ihs-chat-hint {
  margin: 0.35rem 0 0;
  color: var(--ihs-muted);
  font-size: 0.7rem !important;
  line-height: 1.3;
}

.ihs-chat-wrap--floating,
.ihs-chat-wrap--sidebar {
  --ihs-edge: 20px;
  --ihs-offset-x: 0px;
  --ihs-offset-y: 0px;
  position: fixed;
  inset: 0;
  z-index: 99990;
  pointer-events: none;
  width: auto;
  height: auto;
  max-width: none;
  margin: 0;
}

.ihs-chat-wrap--floating .ihs-chat-launcher,
.ihs-chat-wrap--sidebar .ihs-chat-launcher,
.ihs-chat-wrap--floating .ihs-chat-dialog,
.ihs-chat-wrap--sidebar.is-open .ihs-chat-sidebar,
.ihs-chat-wrap--sidebar.is-open .ihs-chat-sidebar-scrim {
  pointer-events: auto;
}

.ihs-chat-launcher {
  display: none;
}

.ihs-chat-wrap--floating .ihs-chat-launcher,
.ihs-chat-wrap--sidebar .ihs-chat-launcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 99992;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ihs-accent);
  color: var(--ihs-on-accent);
  cursor: pointer;
  box-shadow: var(--ihs-shadow);
}

.ihs-chat-launcher-icon {
  display: flex;
  line-height: 0;
}

.ihs-chat-wrap--corner-bottom-right .ihs-chat-launcher {
  right: calc(max(var(--ihs-edge), env(safe-area-inset-right, 0px)) + var(--ihs-offset-x));
  bottom: calc(max(var(--ihs-edge), env(safe-area-inset-bottom, 0px)) + var(--ihs-offset-y));
  left: auto;
  top: auto;
}

.ihs-chat-wrap--corner-bottom-left .ihs-chat-launcher {
  left: calc(max(var(--ihs-edge), env(safe-area-inset-left, 0px)) + var(--ihs-offset-x));
  bottom: calc(max(var(--ihs-edge), env(safe-area-inset-bottom, 0px)) + var(--ihs-offset-y));
  right: auto;
  top: auto;
}

.ihs-chat-wrap--corner-top-right .ihs-chat-launcher {
  right: calc(max(var(--ihs-edge), env(safe-area-inset-right, 0px)) + var(--ihs-offset-x));
  top: calc(max(var(--ihs-edge), env(safe-area-inset-top, 0px)) + var(--ihs-offset-y));
  left: auto;
  bottom: auto;
}

.ihs-chat-wrap--corner-top-left .ihs-chat-launcher {
  left: calc(max(var(--ihs-edge), env(safe-area-inset-left, 0px)) + var(--ihs-offset-x));
  top: calc(max(var(--ihs-edge), env(safe-area-inset-top, 0px)) + var(--ihs-offset-y));
  right: auto;
  bottom: auto;
}

.ihs-chat-wrap--sidebar.ihs-chat-wrap--side-right .ihs-chat-launcher {
  right: calc(max(var(--ihs-edge), env(safe-area-inset-right, 0px)) + var(--ihs-offset-x));
  left: auto;
}

.ihs-chat-wrap--sidebar.ihs-chat-wrap--side-left .ihs-chat-launcher {
  left: calc(max(var(--ihs-edge), env(safe-area-inset-left, 0px)) + var(--ihs-offset-x));
  right: auto;
}

.ihs-chat-wrap.is-open .ihs-chat-launcher,
.ihs-chat-wrap:has(.ihs-chat-dialog[open]) .ihs-chat-launcher {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Attention: notification dot + one-time bounce, cleared once chat is opened. */
.ihs-chat-launcher-dot {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #e5484d;
  border: 2px solid var(--ihs-accent);
  display: none;
}

.ihs-chat-wrap.ihs-attn .ihs-chat-launcher-dot {
  display: block;
}

@keyframes ihs-chat-attn {
  0%, 100% { transform: none; }
  20% { transform: translateY(-4px) scale(1.05); }
  40% { transform: none; }
  60% { transform: translateY(-4px) scale(1.05); }
  80% { transform: none; }
}

.ihs-chat-wrap.ihs-attn .ihs-chat-launcher {
  animation: ihs-chat-attn 1.7s ease-in-out 1;
}

/* Greeting bubble beside the floating launcher. */
.ihs-chat-nudge {
  position: fixed;
  z-index: 99991;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  max-width: min(260px, calc(100vw - 2rem));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.ihs-chat-nudge[hidden] {
  display: none !important;
}

.ihs-chat-nudge.is-shown {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.ihs-chat-nudge-msg {
  margin: 0;
  font: inherit;
  text-align: left;
  line-height: 1.35;
  color: var(--ihs-ink);
  background: var(--ihs-bg-elev);
  border: 1px solid var(--ihs-line);
  border-radius: 14px;
  padding: 0.6rem 0.8rem;
  box-shadow: var(--ihs-shadow);
  cursor: pointer;
}

.ihs-chat-nudge-close {
  flex: none;
  width: 22px;
  height: 22px;
  margin: 0;
  border-radius: 50%;
  border: 1px solid var(--ihs-line);
  background: var(--ihs-bg-elev);
  color: var(--ihs-muted);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--ihs-shadow);
}

.ihs-chat-wrap.is-open .ihs-chat-nudge {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ihs-chat-wrap--corner-bottom-right .ihs-chat-nudge {
  right: calc(max(var(--ihs-edge), env(safe-area-inset-right, 0px)) + var(--ihs-offset-x));
  bottom: calc(max(var(--ihs-edge), env(safe-area-inset-bottom, 0px)) + var(--ihs-offset-y) + 68px);
  flex-direction: row-reverse;
}

.ihs-chat-wrap--corner-bottom-left .ihs-chat-nudge {
  left: calc(max(var(--ihs-edge), env(safe-area-inset-left, 0px)) + var(--ihs-offset-x));
  bottom: calc(max(var(--ihs-edge), env(safe-area-inset-bottom, 0px)) + var(--ihs-offset-y) + 68px);
}

.ihs-chat-wrap--corner-top-right .ihs-chat-nudge {
  right: calc(max(var(--ihs-edge), env(safe-area-inset-right, 0px)) + var(--ihs-offset-x));
  top: calc(max(var(--ihs-edge), env(safe-area-inset-top, 0px)) + var(--ihs-offset-y) + 68px);
  flex-direction: row-reverse;
}

.ihs-chat-wrap--corner-top-left .ihs-chat-nudge {
  left: calc(max(var(--ihs-edge), env(safe-area-inset-left, 0px)) + var(--ihs-offset-x));
  top: calc(max(var(--ihs-edge), env(safe-area-inset-top, 0px)) + var(--ihs-offset-y) + 68px);
}

.ihs-chat-dialog {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  width: min(440px, calc(100vw - 1.5rem));
  height: min(680px, 85dvh);
  max-width: min(440px, calc(100vw - 1.5rem));
  max-height: min(680px, 85dvh);
}

.ihs-chat-dialog::backdrop {
  background: rgba(8, 10, 12, 0.45);
}

.ihs-chat-dialog .ihs-chat {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.ihs-chat-dialog--bottom-right {
  margin: auto max(var(--ihs-edge), env(safe-area-inset-right, 0px)) max(var(--ihs-edge), env(safe-area-inset-bottom, 0px)) auto;
}

.ihs-chat-dialog--bottom-left {
  margin: auto auto max(var(--ihs-edge), env(safe-area-inset-bottom, 0px)) max(var(--ihs-edge), env(safe-area-inset-left, 0px));
}

.ihs-chat-dialog--top-right {
  margin: max(var(--ihs-edge), env(safe-area-inset-top, 0px)) max(var(--ihs-edge), env(safe-area-inset-right, 0px)) auto auto;
}

.ihs-chat-dialog--top-left {
  margin: max(var(--ihs-edge), env(safe-area-inset-top, 0px)) auto auto max(var(--ihs-edge), env(safe-area-inset-left, 0px));
}

.ihs-chat-sidebar-scrim {
  display: none;
}

.ihs-chat-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 99991;
  width: min(440px, 92vw);
  visibility: hidden;
  pointer-events: none;
  transform: translateX(110%);
  transition: transform 0.22s ease, visibility 0.22s ease;
  box-shadow: var(--ihs-shadow);
}

.ihs-chat-wrap--side-left .ihs-chat-sidebar {
  left: 0;
  right: auto;
  transform: translateX(-110%);
}

.ihs-chat-wrap--side-right .ihs-chat-sidebar {
  right: 0;
  left: auto;
  transform: translateX(110%);
}

.ihs-chat-wrap--sidebar.is-open .ihs-chat-sidebar {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.ihs-chat-sidebar .ihs-chat {
  height: 100%;
  min-height: 100%;
  border-radius: 0;
  border-width: 0;
}

.ihs-chat-wrap--side-right .ihs-chat-sidebar .ihs-chat {
  border-left-width: 1px;
}

.ihs-chat-wrap--side-left .ihs-chat-sidebar .ihs-chat {
  border-right-width: 1px;
}

@media (max-width: 640px) {
  .ihs-chat-wrap--sidebar.is-open .ihs-chat-sidebar-scrim {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 99990;
    border: 0;
    padding: 0;
    margin: 0;
    background: rgba(8, 10, 12, 0.45);
    cursor: pointer;
  }

  .ihs-chat-wrap--sidebar .ihs-chat-sidebar {
    width: 100vw;
    max-width: 100vw;
  }
}

@media (max-width: 520px) {
  .ihs-chat-cta-call .ihs-chat-cta-num {
    display: none;
  }

  .ihs-chat-msg {
    max-width: 100%;
  }

  .ihs-chat-logo {
    height: 2.2rem;
  }

  .ihs-chat-dialog {
    width: 100vw;
    height: 100dvh;
    max-width: 100vw;
    max-height: 100dvh;
    margin: 0;
  }

  .ihs-chat-dialog .ihs-chat {
    border-radius: 0;
  }
}

@media (min-width: 640px) {
  .ihs-chat-logo {
    height: 3.2rem;
  }
}

.ihs-chat-wrap--floating .ihs-chat-suggest,
.ihs-chat-wrap--sidebar .ihs-chat-suggest {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ihs-chat-wrap--floating .ihs-chat-suggest::-webkit-scrollbar,
.ihs-chat-wrap--sidebar .ihs-chat-suggest::-webkit-scrollbar {
  display: none;
}

.ihs-chat-wrap--floating .ihs-chat-suggest button,
.ihs-chat-wrap--sidebar .ihs-chat-suggest button {
  flex-shrink: 0;
}

.ihs-chat-suggest-scroller {
  position: relative;
}

.ihs-chat-wrap .ihs-chat-suggest-prev,
.ihs-chat-wrap .ihs-chat-suggest-next {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 2;
  cursor: pointer;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  color: var(--ihs-accent);
  background: transparent;
  font: inherit;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
  transition: opacity 0.16s ease;
}

.ihs-chat-wrap .ihs-chat-suggest-prev {
  left: 0;
  justify-content: flex-start;
  background: linear-gradient(to right, var(--ihs-bg) 28%, transparent);
}

.ihs-chat-wrap .ihs-chat-suggest-next {
  right: 0;
  justify-content: flex-end;
  background: linear-gradient(to left, var(--ihs-bg) 28%, transparent);
}

.ihs-chat-suggest-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--ihs-bg-elev);
  color: var(--ihs-accent);
  border: 1px solid var(--ihs-line);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.ihs-chat-suggest-arrow svg {
  display: block;
}

@media (hover: hover) and (pointer: fine) and (min-width: 521px) {
  .ihs-chat-wrap--floating .ihs-chat-suggest-prev,
  .ihs-chat-wrap--floating .ihs-chat-suggest-next,
  .ihs-chat-wrap--sidebar .ihs-chat-suggest-prev,
  .ihs-chat-wrap--sidebar .ihs-chat-suggest-next {
    display: flex;
  }

  .ihs-chat-wrap--floating .ihs-chat-suggest-prev.is-available,
  .ihs-chat-wrap--floating .ihs-chat-suggest-next.is-available,
  .ihs-chat-wrap--sidebar .ihs-chat-suggest-prev.is-available,
  .ihs-chat-wrap--sidebar .ihs-chat-suggest-next.is-available {
    pointer-events: auto;
  }

  .ihs-chat-wrap--floating .ihs-chat-suggest-prev.is-available:hover,
  .ihs-chat-wrap--floating .ihs-chat-suggest-prev.is-available:focus-visible,
  .ihs-chat-wrap--floating .ihs-chat-suggest-next.is-available:hover,
  .ihs-chat-wrap--floating .ihs-chat-suggest-next.is-available:focus-visible,
  .ihs-chat-wrap--sidebar .ihs-chat-suggest-prev.is-available:hover,
  .ihs-chat-wrap--sidebar .ihs-chat-suggest-prev.is-available:focus-visible,
  .ihs-chat-wrap--sidebar .ihs-chat-suggest-next.is-available:hover,
  .ihs-chat-wrap--sidebar .ihs-chat-suggest-next.is-available:focus-visible {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ihs-chat-thinking::after {
    animation: none;
  }

  .ihs-chat-sidebar {
    transition: none;
  }

  .ihs-chat-wrap.ihs-attn .ihs-chat-launcher {
    animation: none;
  }

  .ihs-chat-nudge {
    transition: none;
  }

  .ihs-chat-wrap .ihs-chat-suggest-prev,
  .ihs-chat-wrap .ihs-chat-suggest-next {
    transition: none;
  }
}
