@charset "UTF-8";
/*
  CHATGPT THEME — SPACING, INPUT, AND SAFE-AREA DOCS

  Overview
  - ChatGPT-like styling with inline submit (no in-field absolute button on desktop).
  - Balanced spacing that feels comfortable while preserving maximum content area.

  Spacing Strategy
  - Bottom spacing is owned by the input/footer, not the shell (prevents double padding
    and tiny lingering gaps when browser toolbars hide/show). The shell applies only top/side safe areas.
  - When no footer is present, we add a consistent baseline under the input for both desktop and mobile
    via a shared mixin (symmetrical with top spacing on desktop).

  Submit Button Strategy
  - Inline button; center alignment handled by flex. No absolute positioning required here.
  - Hover effects keep the button in place (no translation adjustments needed).

  Safe Areas & Viewport
  - Use dvh (100dvh) in common fullscreen contexts; avoid hard height locks that fight the keyboard.
  - Safe-area bottom is applied only where needed (e.g., footer or input in no-footer cases).

  Important
  - Keep this documentation updated as we refine spacing, dvh, and safe-area behavior.
*/
@keyframes yeti-caret-blink {
  to {
    visibility: hidden;
  }
}
.yeti-context-menu-portal .yeti-context-menu {
  background: var(--yeti-backgroundHeaderColor);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--yeti-borderRadius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 13px;
  color: var(--yeti-fontColor);
}
.yeti-context-menu-portal .yeti-context-menu .yeti-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.yeti-context-menu-portal .yeti-context-menu .yeti-menu-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.yeti-context-menu-portal .yeti-context-menu .yeti-menu-item.yeti-danger {
  color: #dc3545;
}
.yeti-context-menu-portal .yeti-context-menu .yeti-menu-item.yeti-danger:hover {
  background-color: rgba(220, 53, 69, 0.1);
}
.yeti-context-menu-portal .yeti-context-menu .yeti-menu-item svg {
  flex-shrink: 0;
}

.yeti-chunks {
  padding: 8px;
  background: rgba(0, 0, 0, 0.03);
  font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-size: 11px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.yeti-chunks.yeti-chunks-collapsed .yeti-chunks-header {
  margin-bottom: 0 !important;
}
.yeti-chunks .yeti-chunks-header {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
  color: #6b7280;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.yeti-chunks .yeti-chunks-header .yeti-chunks-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.yeti-chunks .yeti-chunks-header .yeti-chunks-status {
  margin-left: 4px;
  font-weight: 500;
}
.yeti-chunks .yeti-chunks-header .yeti-chunks-toggle {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  padding: 2px;
  width: 30px;
  height: 20px;
  cursor: pointer;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-left: 4px;
}
.yeti-chunks .yeti-chunks-header .yeti-chunks-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #374151;
}
.yeti-chunks .yeti-chunk {
  margin-bottom: 4px;
  padding: 6px 8px;
  background: white;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}
.yeti-chunks .yeti-chunk .yeti-chunk-header {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.yeti-chunks .yeti-chunk .yeti-chunk-header .yeti-chunk-time {
  color: #9ca3af;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}
.yeti-chunks .yeti-chunk .yeti-chunk-header .yeti-chunk-type {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 500;
  color: white;
}
.yeti-chunks .yeti-chunk .yeti-chunk-header .yeti-chunk-data {
  flex: 1;
  color: #374151;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.yeti-chunks .yeti-chunk .yeti-chunk-header .yeti-chunk-expand {
  color: #9ca3af;
  transition: transform 0.2s ease;
}
.yeti-chunks .yeti-chunk .yeti-chunk-details {
  margin-top: 8px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 3px;
  overflow-x: auto;
}
.yeti-chunks .yeti-chunk .yeti-chunk-details pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  color: #4b5563;
}

/*
  CHATGPT THEME — SPACING, INPUT, AND SAFE-AREA DOCS

  Overview
  - ChatGPT-like styling with inline submit (no in-field absolute button on desktop).
  - Balanced spacing that feels comfortable while preserving maximum content area.

  Spacing Strategy
  - Bottom spacing is owned by the input/footer, not the shell (prevents double padding
    and tiny lingering gaps when browser toolbars hide/show). The shell applies only top/side safe areas.
  - When no footer is present, we add a consistent baseline under the input for both desktop and mobile
    via a shared mixin (symmetrical with top spacing on desktop).

  Submit Button Strategy
  - Inline button; center alignment handled by flex. No absolute positioning required here.
  - Hover effects keep the button in place (no translation adjustments needed).

  Safe Areas & Viewport
  - Use dvh (100dvh) in common fullscreen contexts; avoid hard height locks that fight the keyboard.
  - Safe-area bottom is applied only where needed (e.g., footer or input in no-footer cases).

  Important
  - Keep this documentation updated as we refine spacing, dvh, and safe-area behavior.
*/
@keyframes mwaiIconTextZoomIn {
  0% {
    transform: scale(0.92);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes mwaiIconTextSlideIn {
  0% {
    transform: translateY(28px);
    opacity: 0;
  }
  70% {
    transform: translateY(-3px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes mwaiIconTextSlideUp {
  0% {
    transform: translateY(24px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes mwaiIconTextFadeOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mwaiIconTextFadeTransform {
  0% {
    transform: translateY(8px) scale(0.98);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
.yeti-chatgpt-theme {
  font-family: var(--yeti-fontFamily, inherit);
  --yeti-spacing: 15px;
  --yeti-fontSize: 15px;
  --yeti-lineHeight: 1.5;
  --yeti-borderRadius: 10px;
  --yeti-borderColor: #4f4f4f;
  --yeti-width: 460px;
  --yeti-maxHeight: 40vh;
  --yeti-iconTextColor: white;
  --yeti-iconTextBackgroundColor: #343541;
  --yeti-fontColor: #FFFFFF;
  --yeti-backgroundPrimaryColor: #454654;
  --yeti-backgroundHeaderColor: #343541;
  --yeti-bubbleColor: #343541;
  --yeti-iconSize: 60px;
  --yeti-accentColor: #10a37f;
  --yeti-headerColor: #FFFFFF;
  --yeti-conversationsBackgroundColor: #202123;
  --yeti-conversationsTextColor: #FFFFFF;
  --yeti-backgroundSecondaryColor: #343541;
  --yeti-errorBackgroundColor: #6d2f2a;
  --yeti-errorTextColor: #FFFFFF;
}
.yeti-chatgpt-theme * {
  box-sizing: border-box;
}
.yeti-chatgpt-theme .yeti-body {
  background: var(--yeti-backgroundSecondaryColor);
  color: var(--yeti-fontColor);
  font-size: var(--yeti-fontSize);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: var(--yeti-borderRadius);
}
.yeti-chatgpt-theme .yeti-shortcuts {
  display: flex;
  justify-content: center;
  margin: var(--yeti-spacing);
}
.yeti-chatgpt-theme .yeti-shortcuts .yeti-shortcut {
  margin-right: calc(var(--yeti-spacing) / 2);
  display: flex;
}
.yeti-chatgpt-theme .yeti-shortcuts .yeti-shortcut.yeti-success {
  color: #4caf50;
  border: 1px solid #4caf50;
}
.yeti-chatgpt-theme .yeti-shortcuts .yeti-shortcut.yeti-danger {
  color: #f44336;
  border: 1px solid #f44336;
}
.yeti-chatgpt-theme .yeti-shortcuts .yeti-shortcut.yeti-warning {
  color: #ff9800;
  border: 1px solid #ff9800;
}
.yeti-chatgpt-theme .yeti-shortcuts .yeti-shortcut.yeti-info {
  color: #2196f3;
  border: 1px solid #2196f3;
}
.yeti-chatgpt-theme .yeti-shortcuts .yeti-shortcut .yeti-icon {
  margin-right: 5px;
}
.yeti-chatgpt-theme .yeti-shortcuts .yeti-shortcut .yeti-icon img {
  max-height: 16px;
  width: auto;
}
.yeti-chatgpt-theme .yeti-blocks {
  display: flex;
  flex-direction: column;
  padding: var(--yeti-spacing);
}
.yeti-chatgpt-theme .yeti-blocks .yeti-block p:first-child {
  margin-top: 0;
}
.yeti-chatgpt-theme .yeti-blocks button {
  cursor: pointer;
}
.yeti-chatgpt-theme .yeti-conversation {
  overflow: auto;
  flex: 1 1 auto;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) rgba(255, 255, 255, 0.05);
}
.yeti-chatgpt-theme .yeti-conversation::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}
.yeti-chatgpt-theme .yeti-conversation::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}
.yeti-chatgpt-theme .yeti-conversation::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  transition: background 0.2s ease;
}
.yeti-chatgpt-theme .yeti-conversation::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}
.yeti-chatgpt-theme .yeti-conversation::-webkit-scrollbar-thumb:active {
  background: rgba(255, 255, 255, 0.3);
}
.yeti-chatgpt-theme .yeti-conversation.yeti-terminal .yeti-terminal-line {
  line-height: 1.5;
}
.yeti-chatgpt-theme .yeti-conversation.yeti-terminal .yeti-terminal-line.yeti-terminal-user .yeti-terminal-prompt {
  opacity: 0.95;
}
.yeti-chatgpt-theme .yeti-conversation.yeti-terminal .yeti-terminal-line.yeti-terminal-user .yeti-terminal-text {
  opacity: 0.98;
}
.yeti-chatgpt-theme .yeti-conversation.yeti-terminal .yeti-terminal-line.yeti-terminal-system {
  opacity: 0.75;
}
.yeti-chatgpt-theme .yeti-conversation.yeti-terminal .yeti-terminal-line .yeti-terminal-prompt {
  color: var(--yeti-headerColor);
}
.yeti-chatgpt-theme .yeti-conversation.yeti-terminal .yeti-terminal-line .yeti-terminal-text {
  flex: 1;
  opacity: 0.92;
}
.yeti-chatgpt-theme .yeti-conversation.yeti-terminal .yeti-terminal-line .yeti-terminal-text .yeti-image {
  max-width: 100%;
  height: auto;
}
.yeti-chatgpt-theme .yeti-conversation.yeti-terminal .yeti-terminal-line .yeti-terminal-text pre {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px;
  border-radius: 4px;
}
.yeti-chatgpt-theme .yeti-conversation.yeti-terminal .yeti-terminal-line .yeti-terminal-text code {
  font-family: inherit;
}
.yeti-chatgpt-theme .yeti-conversation.yeti-terminal .yeti-terminal-line .yeti-terminal-typed {
  white-space: pre-wrap;
}
.yeti-chatgpt-theme .yeti-reply {
  display: flex;
  padding: var(--yeti-spacing);
  position: relative;
  line-height: var(--yeti-lineHeight);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.yeti-chatgpt-theme .yeti-reply.yeti-fade-out {
  opacity: 0;
}
.yeti-chatgpt-theme .yeti-reply.yeti-user {
  background: var(--yeti-backgroundSecondaryColor);
}
.yeti-chatgpt-theme .yeti-reply.yeti-ai, .yeti-chatgpt-theme .yeti-reply.yeti-error {
  background: var(--yeti-backgroundPrimaryColor);
}
.yeti-chatgpt-theme .yeti-reply .yeti-name {
  color: var(--yeti-fontColor);
  margin-right: 5px;
}
.yeti-chatgpt-theme .yeti-reply .yeti-name .yeti-name-text {
  opacity: 0.5;
  white-space: nowrap;
}
.yeti-chatgpt-theme .yeti-reply .yeti-name .yeti-avatar {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  overflow: hidden;
}
.yeti-chatgpt-theme .yeti-reply .yeti-name .yeti-avatar img {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
}
.yeti-chatgpt-theme .yeti-reply .yeti-name .yeti-avatar.yeti-svg img {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  filter: brightness(0) invert(1);
}
.yeti-chatgpt-theme .yeti-reply .yeti-text {
  flex: auto;
  font-size: var(--yeti-fontSize);
  line-height: var(--yeti-lineHeight);
  color: var(--yeti-fontColor);
}
.yeti-chatgpt-theme .yeti-reply .yeti-text .yeti-image {
  display: block;
  max-width: 250px;
  height: auto;
  margin: 0 0 10px 0;
  border-radius: var(--yeti-borderRadius);
}
.yeti-chatgpt-theme .yeti-reply .yeti-text .yeti-filename {
  display: flex;
  text-decoration: none;
  border: 1px solid var(--yeti-backgroundPrimaryColor);
  border-radius: var(--yeti-borderRadius);
  padding: 5px 10px;
  margin-bottom: 10px;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text * {
  font-size: var(--yeti-fontSize);
}
.yeti-chatgpt-theme .yeti-reply .yeti-text > span > *:first-child {
  margin-top: 0;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text > span > *:last-child {
  margin-bottom: 0;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text a {
  color: #2196f3;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text h1, .yeti-chatgpt-theme .yeti-reply .yeti-text h2, .yeti-chatgpt-theme .yeti-reply .yeti-text h3, .yeti-chatgpt-theme .yeti-reply .yeti-text h4, .yeti-chatgpt-theme .yeti-reply .yeti-text h5, .yeti-chatgpt-theme .yeti-reply .yeti-text h6 {
  color: var(--yeti-fontColor);
  margin: 0px;
  line-height: 1.2;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text h1 {
  font-size: 150%;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text h2 {
  font-size: 130%;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text h3 {
  font-size: 115%;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text h4 {
  font-size: 105%;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text h5 {
  font-size: 100%;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text h6 {
  font-size: 95%;
  font-weight: bold;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text p code {
  background: var(--yeti-backgroundSecondaryColor);
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 90%;
  font-family: system-ui;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text pre {
  color: var(--yeti-fontColor);
  border-radius: var(--yeti-borderRadius);
  padding: calc(var(--yeti-spacing) * 2 / 3) var(--yeti-spacing);
  break-after: auto;
  white-space: pre-wrap;
  font-size: 95%;
  max-width: 100%;
  width: 100%;
  font-family: system-ui;
  background: hsl(0 0% 0% / 30%);
}
.yeti-chatgpt-theme .yeti-reply .yeti-text pre code {
  padding: 0 !important;
  font-family: system-ui;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text ul, .yeti-chatgpt-theme .yeti-reply .yeti-text ol {
  padding: 0;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text ul {
  list-style: disc;
  margin: 0 0 0 15px;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text ol {
  list-style: decimal;
  margin: 0 0 0 15px;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text table {
  width: 100%;
  border: 2px solid var(--yeti-backgroundSecondaryColor);
  border-collapse: collapse;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text thead {
  background: var(--yeti-backgroundSecondaryColor);
}
.yeti-chatgpt-theme .yeti-reply .yeti-text tr, .yeti-chatgpt-theme .yeti-reply .yeti-text td {
  padding: 2px 5px;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text td {
  border: 2px solid var(--yeti-backgroundSecondaryColor);
}
.yeti-chatgpt-theme .yeti-reply .yeti-text .yeti-typewriter {
  display: inline-block;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text .yeti-typewriter > :first-child {
  margin-top: 0;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text > *:first-child {
  margin-top: 0;
}
.yeti-chatgpt-theme .yeti-reply .yeti-text > *:last-child {
  margin-bottom: 0;
}
.yeti-chatgpt-theme .yeti-reply.yeti-system {
  background: var(--yeti-errorBackgroundColor);
  color: var(--yeti-errorFontColor);
}
.yeti-chatgpt-theme .yeti-reply.yeti-system .yeti-name {
  display: none;
}
.yeti-chatgpt-theme .yeti-reply.yeti-error {
  border-top: 1px dashed #ff5656;
  border-bottom: 1px dashed #ff5656;
}
.yeti-chatgpt-theme .yeti-input {
  display: flex;
  position: relative;
  padding: var(--yeti-spacing);
  border-top: 1px solid var(--yeti-backgroundPrimaryColor);
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text {
  flex: auto;
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: var(--yeti-borderRadius);
  background: var(--yeti-backgroundPrimaryColor);
  padding: calc(var(--yeti-spacing) / 2);
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text.yeti-blocked {
  background: var(--yeti-errorBackgroundColor);
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text.yeti-dragging {
  filter: brightness(1.2);
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text textarea {
  background: inherit;
  color: var(--yeti-fontColor);
  flex: auto;
  border: none;
  font-size: var(--yeti-fontSize);
  resize: none;
  font-family: inherit;
  margin: 0;
  overflow: hidden;
  min-height: inherit;
  padding-left: calc(var(--yeti-spacing) / 2);
  line-height: var(--yeti-lineHeight);
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text textarea:focus {
  outline: none;
  box-shadow: none;
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text textarea:focus {
  outline: none;
  box-shadow: none;
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text textarea::placeholder {
  color: var(--yeti-fontColor);
  opacity: 0.5;
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text .yeti-microphone {
  display: flex;
  justify-content: center;
  align-items: center;
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text .yeti-microphone svg {
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.3s ease-out;
  cursor: pointer;
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text .yeti-microphone[active=true] svg {
  opacity: 1;
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text .yeti-microphone[disabled] svg {
  opacity: 0;
  cursor: not-allowed;
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text .yeti-file-upload-icon {
  background: url(icons/dark-icons.svg);
  background-size: 500%;
  background-position: 0px -96px;
  width: 32px;
  height: 32px;
  z-index: 100;
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text .yeti-file-upload-icon.yeti-idle-add {
  background-position: -32px -96px;
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text .yeti-file-upload-icon.yeti-image-add {
  background-position: -32px 0px;
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text .yeti-file-upload-icon.yeti-image-up {
  background-position: -64px 0px;
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text .yeti-file-upload-icon.yeti-image-del {
  background-position: -96px 0px;
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text .yeti-file-upload-icon.yeti-image-ok {
  background-position: -128px 0px;
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text .yeti-file-upload-icon.yeti-document-add {
  background-position: -32px -64px;
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text .yeti-file-upload-icon.yeti-document-up {
  background-position: -64px -64px;
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text .yeti-file-upload-icon.yeti-document-del {
  background-position: -96px -64px;
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text .yeti-file-upload-icon.yeti-document-ok {
  background-position: -128px -64px;
}
.yeti-chatgpt-theme .yeti-input .yeti-input-text .yeti-file-upload-icon .yeti-file-upload-progress {
  position: absolute;
  font-size: 8px;
  width: 21px;
  top: 24px;
  left: 23px;
  overflow: hidden;
  text-align: center;
  font-weight: bold;
  color: white;
}
.yeti-chatgpt-theme .yeti-input button {
  margin-left: var(--yeti-spacing);
}
.yeti-chatgpt-theme .yeti-compliance {
  opacity: 0.5;
  /* Remove negative margin that pushed footer/content up when input is none */
  margin-top: 0;
  padding: calc(var(--yeti-spacing) / 1.5) var(--yeti-spacing);
  font-size: smaller;
  color: var(--yeti-fontColor);
  text-align: left;
}
.yeti-chatgpt-theme .yeti-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5px;
}
.yeti-chatgpt-theme .yeti-gallery img {
  width: 100%;
}
.yeti-chatgpt-theme button {
  color: var(--yeti-fontColor);
  background: var(--yeti-backgroundSecondaryColor);
  border: 1px solid var(--yeti-borderColor);
  padding: calc(var(--yeti-spacing) / 2) var(--yeti-spacing);
  min-width: 70px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(var(--yeti-fontSize) * 0.9);
  position: relative;
}
.yeti-chatgpt-theme button .yeti-timer {
  margin-left: 5px;
  margin-right: 5px;
  font-size: 11px;
}
.yeti-chatgpt-theme button:hover {
  background: var(--yeti-backgroundPrimaryColor);
}
.yeti-chatgpt-theme button[disabled] {
  cursor: not-allowed;
}
.yeti-chatgpt-theme button[disabled] span {
  opacity: 0.5;
}
.yeti-chatgpt-theme button[disabled].yeti-busy span {
  display: none;
}
.yeti-chatgpt-theme button[disabled].yeti-busy:before {
  content: "";
  width: 18px;
  height: 18px;
  margin: auto;
  border: 3px solid transparent;
  border-top-color: var(--yeti-fontColor);
  border-radius: 50%;
  animation: yeti-button-spinner 1s ease infinite;
}
.yeti-chatgpt-theme.yeti-form-container {
  padding: var(--yeti-spacing);
  font-size: var(--yeti-fontSize);
  color: var(--yeti-fontColor);
  background: var(--yeti-backgroundSecondaryColor);
  border-radius: var(--yeti-borderRadius);
}
.yeti-chatgpt-theme.yeti-form-container fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.yeti-chatgpt-theme.yeti-form-container fieldset input[type=text], .yeti-chatgpt-theme.yeti-form-container fieldset input[type=email], .yeti-chatgpt-theme.yeti-form-container fieldset input[type=tel], .yeti-chatgpt-theme.yeti-form-container fieldset input[type=url], .yeti-chatgpt-theme.yeti-form-container fieldset input[type=password], .yeti-chatgpt-theme.yeti-form-container fieldset input[type=number], .yeti-chatgpt-theme.yeti-form-container fieldset input[type=date], .yeti-chatgpt-theme.yeti-form-container fieldset input[type=datetime], .yeti-chatgpt-theme.yeti-form-container fieldset input[type=datetime-local], .yeti-chatgpt-theme.yeti-form-container fieldset input[type=month], .yeti-chatgpt-theme.yeti-form-container fieldset input[type=search], .yeti-chatgpt-theme.yeti-form-container fieldset input[type=time], .yeti-chatgpt-theme.yeti-form-container fieldset input[type=week], .yeti-chatgpt-theme.yeti-form-container fieldset select, .yeti-chatgpt-theme.yeti-form-container fieldset textarea {
  padding: calc(var(--yeti-spacing) * 2 / 3) var(--yeti-spacing);
  border: 0;
  width: 100%;
  border-radius: var(--yeti-borderRadius);
  font-size: var(--yeti-fontSize);
  background: var(--yeti-backgroundPrimaryColor);
  color: var(--yeti-fontColor);
}
.yeti-chatgpt-theme.yeti-form-container fieldset select {
  padding: calc(var(--yeti-spacing) * 2 / 3) var(--yeti-spacing);
  border: 0;
  width: 100%;
  border-radius: var(--yeti-borderRadius);
  font-size: var(--yeti-fontSize);
  background: var(--yeti-backgroundPrimaryColor);
  color: var(--yeti-fontColor);
}
.yeti-chatgpt-theme.yeti-form-container fieldset textarea {
  padding: calc(var(--yeti-spacing) * 2 / 3) var(--yeti-spacing);
  border: 0;
  width: 100%;
  border-radius: var(--yeti-borderRadius);
  font-family: inherit;
  font-size: var(--yeti-fontSize);
  background: var(--yeti-backgroundPrimaryColor);
  color: var(--yeti-fontColor);
}
.yeti-chatgpt-theme.yeti-form-container fieldset input[disabled], .yeti-chatgpt-theme.yeti-form-container fieldset select[disabled], .yeti-chatgpt-theme.yeti-form-container fieldset textarea[disabled] {
  opacity: 0.25;
}
.yeti-chatgpt-theme.yeti-form-container .yeti-form-submit button, .yeti-chatgpt-theme.yeti-form-container .yeti-form-reset button {
  height: 45px;
  background: none;
  width: 100%;
  color: var(--yeti-fontColor);
  font-size: var(--yeti-fontSize);
  background-color: var(--yeti-backgroundSecondaryColor);
  border: 1px solid var(--yeti-backgroundPrimaryColor);
  border-radius: var(--yeti-borderRadius);
  cursor: pointer;
  transition: all 0.2s ease-out;
  position: relative;
}
.yeti-chatgpt-theme.yeti-form-container .yeti-form-submit button:hover, .yeti-chatgpt-theme.yeti-form-container .yeti-form-reset button:hover {
  background: var(--yeti-backgroundPrimaryColor);
}
.yeti-chatgpt-theme.yeti-form-container .yeti-form-submit button[disabled] span, .yeti-chatgpt-theme.yeti-form-container .yeti-form-reset button[disabled] span {
  opacity: 0.25;
}
.yeti-chatgpt-theme.yeti-form-container .yeti-form-submit button[disabled]:hover, .yeti-chatgpt-theme.yeti-form-container .yeti-form-reset button[disabled]:hover {
  background: none;
  cursor: not-allowed;
}
.yeti-chatgpt-theme.yeti-form-container .yeti-form-submit.yeti-loading button span, .yeti-chatgpt-theme.yeti-form-container .yeti-form-reset.yeti-loading button span {
  opacity: 0;
}
.yeti-chatgpt-theme.yeti-form-container .yeti-form-submit.yeti-loading button::after, .yeti-chatgpt-theme.yeti-form-container .yeti-form-reset.yeti-loading button::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid transparent;
  border-top-color: var(--yeti-fontColor);
  border-radius: 50%;
  animation: yeti-button-spinner 1s ease infinite;
}
.yeti-chatgpt-theme.yeti-form-container .yeti-form-output-container .yeti-form-output {
  font-size: var(--yeti-fontSize);
  position: relative;
  margin-top: var(--yeti-spacing);
  padding: var(--yeti-spacing);
  border: 1px solid var(--yeti-backgroundPrimaryColor);
}
.yeti-chatgpt-theme.yeti-form-container .yeti-form-output-container .yeti-form-output.yeti-error {
  background: var(--yeti-errorBackgroundColor);
  color: var(--yeti-errorFontColor);
}
.yeti-chatgpt-theme.yeti-form-container .yeti-form-output-container .yeti-form-output > *:first-child {
  margin-top: 0;
}
.yeti-chatgpt-theme.yeti-form-container .yeti-form-output-container .yeti-form-output > *:last-child {
  margin-bottom: 0;
}
.yeti-chatgpt-theme.yeti-form-container .yeti-form-output-container .yeti-form-output img {
  max-width: 33%;
}
.yeti-chatgpt-theme.yeti-form-container .yeti-form-output-container .yeti-form-output div > *:first-child {
  margin-top: 0;
}
.yeti-chatgpt-theme.yeti-form-container .yeti-form-output-container .yeti-form-output div > *:last-child {
  margin-bottom: 0;
}
.yeti-chatgpt-theme.yeti-form-container .yeti-form-output-container.yeti-has-content {
  display: block;
}
.yeti-chatgpt-theme.yeti-form-container .wp-block-columns {
  margin: 0;
}
.yeti-chatgpt-theme .yeti-chunks {
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.yeti-chatgpt-theme .yeti-chunks .yeti-chunks-header {
  color: #9ca3af;
}
.yeti-chatgpt-theme .yeti-chunks .yeti-chunk {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.yeti-chatgpt-theme .yeti-chunks .yeti-chunk .yeti-chunk-header .yeti-chunk-time {
  color: #6b7280;
}
.yeti-chatgpt-theme .yeti-chunks .yeti-chunk .yeti-chunk-header .yeti-chunk-data {
  color: #e5e7eb;
}
.yeti-chatgpt-theme .yeti-chunks .yeti-chunk .yeti-chunk-header .yeti-chunk-expand {
  color: #6b7280;
}
.yeti-chatgpt-theme .yeti-chunks .yeti-chunk .yeti-chunk-details {
  background: rgba(0, 0, 0, 0.2);
}
.yeti-chatgpt-theme .yeti-chunks .yeti-chunk .yeti-chunk-details pre {
  color: #d1d5db;
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window {
  filter: none;
}
@media (max-width: 760px) {
  .yeti-chatgpt-theme.yeti-animation-zoom.yeti-window .yeti-header {
    display: none !important;
  }
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window .yeti-window-box {
  display: flex;
  flex-direction: column;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.15));
  opacity: 0;
  transform: scale(0.5);
  transform-origin: bottom right;
  transition: opacity 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-fullscreen .yeti-window-box {
  width: 100%;
  height: 100%;
}
@media (min-width: 761px) {
  .yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-opening .yeti-header {
    display: flex !important;
  }
}
@media (max-width: 760px) {
  .yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-opening .yeti-header {
    display: none !important;
  }
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-opening .yeti-body {
  display: flex !important;
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-opening .yeti-window-box {
  opacity: 1;
  transform: scale(0.92);
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-open .yeti-window-box {
  opacity: 1;
  transform: scale(1);
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-closing .yeti-window-box {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 180ms cubic-bezier(0.4, 0, 1, 1), transform 180ms cubic-bezier(0.4, 0, 1, 1);
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-closing .yeti-trigger {
  display: none !important;
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-closing.yeti-open .yeti-trigger .yeti-icon-container {
  transform: scale(1);
  opacity: 1;
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-bottom-right .yeti-window-box {
  transform-origin: calc(100% - 32px) calc(100% - 32px);
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-bottom-left .yeti-window-box {
  transform-origin: 32px calc(100% - 32px);
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-top-right .yeti-window-box {
  transform-origin: calc(100% - 32px) 32px;
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-top-left .yeti-window-box {
  transform-origin: 32px 32px;
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-center-open .yeti-window-box {
  transform-origin: center center;
}
@media (max-width: 760px) {
  .yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-open .yeti-window-box {
    transform-origin: center center !important;
  }
  .yeti-chatgpt-theme.yeti-animation-zoom.yeti-window .yeti-header {
    display: none !important;
  }
  .yeti-chatgpt-theme.yeti-animation-zoom.yeti-window .yeti-trigger {
    position: fixed !important;
    z-index: 9999 !important;
  }
  .yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-bottom-right .yeti-trigger {
    bottom: calc(20px + env(safe-area-inset-bottom, 0)) !important;
    right: 20px !important;
    left: auto !important;
    top: auto !important;
  }
  .yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-bottom-left .yeti-trigger {
    bottom: calc(20px + env(safe-area-inset-bottom, 0)) !important;
    left: 20px !important;
    right: auto !important;
    top: auto !important;
  }
  .yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-top-right .yeti-trigger {
    top: 20px !important;
    right: 20px !important;
    left: auto !important;
    bottom: auto !important;
  }
  .yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-top-left .yeti-trigger {
    top: 20px !important;
    left: 20px !important;
    right: auto !important;
    bottom: auto !important;
  }
  .yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-open:not(.yeti-closing) .yeti-trigger {
    display: none !important;
  }
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window .yeti-trigger .yeti-icon-container {
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window .yeti-trigger .yeti-icon-container .yeti-icon {
  transition: transform 0.2s ease-out;
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window .yeti-trigger .yeti-icon-container:hover .yeti-icon {
  transform: scale(1.1);
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window .yeti-trigger .yeti-icon-container:active .yeti-icon {
  transform: scale(0.9);
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-opening .yeti-trigger .yeti-icon-container {
  transform: scale(0.8);
  opacity: 0.3;
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-open:not(.yeti-opening) .yeti-trigger {
  display: none;
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window.yeti-center-open.yeti-closing .yeti-trigger {
  display: none !important;
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger .yeti-icon-text-container {
  opacity: 1 !important;
  transition: none !important;
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger .yeti-icon-text {
  will-change: transform, opacity;
  transform: none;
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger.yeti-bottom-right .yeti-icon-text {
  transform-origin: right bottom;
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger.yeti-bottom-left .yeti-icon-text {
  transform-origin: left bottom;
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger.yeti-top-right .yeti-icon-text {
  transform-origin: right top;
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger.yeti-top-left .yeti-icon-text {
  transform-origin: left top;
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger.yeti-center-open .yeti-icon-text {
  transform-origin: center center;
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger .yeti-icon-text {
  animation: mwaiIconTextZoomIn 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0ms 1 both;
}
.yeti-chatgpt-theme.yeti-animation-zoom.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger:hover .yeti-icon-text {
  transform: scale(1.02);
}
@media (prefers-reduced-motion: reduce) {
  .yeti-chatgpt-theme.yeti-animation-zoom.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger .yeti-icon-text {
    animation: none !important;
    transform: none !important;
  }
  .yeti-chatgpt-theme.yeti-animation-zoom.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger .yeti-icon-text-container {
    opacity: 1 !important;
    transition: none !important;
  }
}
.yeti-chatgpt-theme.yeti-animation-slide.yeti-window {
  filter: none;
}
@media (max-width: 760px) {
  .yeti-chatgpt-theme.yeti-animation-slide.yeti-window .yeti-header {
    display: none !important;
  }
}
.yeti-chatgpt-theme.yeti-animation-slide.yeti-window .yeti-window-box {
  display: flex;
  flex-direction: column;
  filter: drop-shadow(0 -5px 20px rgba(0, 0, 0, 0.15));
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 250ms ease-out, transform 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.yeti-chatgpt-theme.yeti-animation-slide.yeti-window.yeti-fullscreen .yeti-window-box {
  width: 100%;
  height: 100%;
}
@media (min-width: 761px) {
  .yeti-chatgpt-theme.yeti-animation-slide.yeti-window.yeti-opening .yeti-header {
    display: flex !important;
  }
}
@media (max-width: 760px) {
  .yeti-chatgpt-theme.yeti-animation-slide.yeti-window.yeti-opening .yeti-header {
    display: none !important;
  }
}
.yeti-chatgpt-theme.yeti-animation-slide.yeti-window.yeti-opening .yeti-body {
  display: flex !important;
}
.yeti-chatgpt-theme.yeti-animation-slide.yeti-window.yeti-opening .yeti-window-box {
  opacity: 0.5;
  transform: translateY(20px);
}
.yeti-chatgpt-theme.yeti-animation-slide.yeti-window.yeti-open .yeti-window-box {
  opacity: 1;
  transform: translateY(0);
}
.yeti-chatgpt-theme.yeti-animation-slide.yeti-window.yeti-closing .yeti-window-box {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 200ms ease-in, transform 200ms ease-in;
}
@media (max-width: 760px) {
  .yeti-chatgpt-theme.yeti-animation-slide.yeti-window .yeti-header {
    display: none !important;
  }
}
.yeti-chatgpt-theme.yeti-animation-slide.yeti-window .yeti-trigger .yeti-icon-container {
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
.yeti-chatgpt-theme.yeti-animation-slide.yeti-window .yeti-trigger .yeti-icon-container .yeti-icon {
  transition: transform 0.2s ease-out;
}
.yeti-chatgpt-theme.yeti-animation-slide.yeti-window .yeti-trigger .yeti-icon-container:hover .yeti-icon {
  transform: scale(1.1);
}
.yeti-chatgpt-theme.yeti-animation-slide.yeti-window .yeti-trigger .yeti-icon-container:active .yeti-icon {
  transform: scale(0.9);
}
.yeti-chatgpt-theme.yeti-animation-slide.yeti-window.yeti-opening .yeti-trigger .yeti-icon-container {
  opacity: 0;
}
.yeti-chatgpt-theme.yeti-animation-slide.yeti-window.yeti-closing .yeti-trigger {
  display: none !important;
}
.yeti-chatgpt-theme.yeti-animation-slide.yeti-window.yeti-center-open.yeti-closing .yeti-trigger {
  display: none !important;
}
.yeti-chatgpt-theme.yeti-animation-slide.yeti-window.yeti-window-dragging.yeti-closing .yeti-trigger {
  display: none !important;
}
.yeti-chatgpt-theme.yeti-animation-slide.yeti-window.yeti-open:not(.yeti-opening) .yeti-trigger {
  display: none;
}
.yeti-chatgpt-theme.yeti-animation-slide.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger .yeti-icon-text-container {
  opacity: 1 !important;
  transition: none !important;
}
.yeti-chatgpt-theme.yeti-animation-slide.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger .yeti-icon-text {
  will-change: transform, opacity;
  transform: none;
}
.yeti-chatgpt-theme.yeti-animation-slide.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger .yeti-icon-text {
  animation: mwaiIconTextSlideUp 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0ms 1 both;
  backface-visibility: hidden;
}
.yeti-chatgpt-theme.yeti-animation-slide.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger:hover .yeti-icon-text {
  transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
  .yeti-chatgpt-theme.yeti-animation-slide.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger .yeti-icon-text {
    animation: none !important;
    transform: none !important;
  }
  .yeti-chatgpt-theme.yeti-animation-slide.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger .yeti-icon-text-container {
    opacity: 1 !important;
    transition: none !important;
  }
}
@media (max-width: 760px) {
  .yeti-chatgpt-theme.yeti-animation-fade.yeti-window .yeti-header {
    display: none !important;
  }
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window .yeti-window-box {
  display: flex;
  flex-direction: column;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.15));
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transform-origin: center bottom;
  will-change: opacity, transform;
  transition: opacity 180ms ease-out, transform 220ms cubic-bezier(0.2, 0, 0, 1);
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window.yeti-fullscreen .yeti-window-box {
  width: 100%;
  height: 100%;
}
@media (min-width: 761px) {
  .yeti-chatgpt-theme.yeti-animation-fade.yeti-window.yeti-opening .yeti-header {
    display: flex !important;
  }
}
@media (max-width: 760px) {
  .yeti-chatgpt-theme.yeti-animation-fade.yeti-window.yeti-opening .yeti-header {
    display: none !important;
  }
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window.yeti-opening .yeti-body {
  display: flex !important;
  opacity: 1 !important;
  transition: none !important;
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window.yeti-opening .yeti-header {
  opacity: 1 !important;
  transition: none !important;
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window.yeti-opening .yeti-window-box {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window.yeti-open .yeti-header, .yeti-chatgpt-theme.yeti-animation-fade.yeti-window.yeti-open .yeti-body {
  opacity: 1 !important;
  transition: none !important;
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window.yeti-open .yeti-window-box {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window.yeti-closing .yeti-window-box {
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition: opacity 160ms ease-in, transform 180ms cubic-bezier(0.4, 0, 1, 1);
}
@media (prefers-reduced-motion: reduce) {
  .yeti-chatgpt-theme.yeti-animation-fade.yeti-window .yeti-window-box {
    transition: opacity 120ms linear !important;
    transform: none !important;
  }
  .yeti-chatgpt-theme.yeti-animation-fade.yeti-window.yeti-opening .yeti-window-box, .yeti-chatgpt-theme.yeti-animation-fade.yeti-window.yeti-open .yeti-window-box {
    opacity: 1;
  }
  .yeti-chatgpt-theme.yeti-animation-fade.yeti-window.yeti-closing .yeti-window-box {
    opacity: 0;
  }
}
@media (max-width: 760px) {
  .yeti-chatgpt-theme.yeti-animation-fade.yeti-window .yeti-header {
    display: none !important;
  }
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window .yeti-trigger .yeti-icon-container {
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window .yeti-trigger .yeti-icon-container .yeti-icon {
  transition: transform 0.2s ease-out;
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window .yeti-trigger .yeti-icon-container:hover .yeti-icon {
  transform: scale(1.1);
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window .yeti-trigger .yeti-icon-container:active .yeti-icon {
  transform: scale(0.9);
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window.yeti-opening .yeti-trigger .yeti-icon-container {
  opacity: 0;
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window.yeti-closing .yeti-trigger {
  display: none !important;
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window.yeti-center-open.yeti-closing .yeti-trigger {
  display: none !important;
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window.yeti-window-dragging.yeti-closing .yeti-trigger {
  display: none !important;
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window.yeti-open:not(.yeti-opening) .yeti-trigger {
  display: none;
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger .yeti-icon-text-container {
  opacity: 1 !important;
  transition: none !important;
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger .yeti-icon-text {
  will-change: transform, opacity;
  transform: none;
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger .yeti-icon-text {
  animation: mwaiIconTextFadeOpacity 180ms ease-out 0ms 1 both, mwaiIconTextFadeTransform 220ms cubic-bezier(0.2, 0, 0, 1) 0ms 1 both;
}
.yeti-chatgpt-theme.yeti-animation-fade.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger:hover .yeti-icon-text {
  transform: scale(1.01);
}
@media (prefers-reduced-motion: reduce) {
  .yeti-chatgpt-theme.yeti-animation-fade.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger .yeti-icon-text {
    animation: none !important;
    transform: none !important;
  }
  .yeti-chatgpt-theme.yeti-animation-fade.yeti-window:not(.yeti-open):not(.yeti-opening):not(.yeti-closing) .yeti-trigger .yeti-icon-text-container {
    opacity: 1 !important;
    transition: none !important;
  }
}
.yeti-chatgpt-theme:not(.yeti-animation-zoom):not(.yeti-animation-slide):not(.yeti-animation-fade).yeti-window .yeti-window-box {
  display: flex;
  flex-direction: column;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}
.yeti-chatgpt-theme:not(.yeti-animation-zoom):not(.yeti-animation-slide):not(.yeti-animation-fade).yeti-window .yeti-trigger .yeti-icon-text-container {
  opacity: 1 !important;
  transition: none !important;
}
.yeti-chatgpt-theme:not(.yeti-animation-zoom):not(.yeti-animation-slide):not(.yeti-animation-fade).yeti-window .yeti-trigger .yeti-icon-text {
  animation: none !important;
  transition: none !important;
  opacity: 1 !important;
  transform: none !important;
}
.yeti-chatgpt-theme:not(.yeti-animation-zoom):not(.yeti-animation-slide):not(.yeti-animation-fade).yeti-window.yeti-fullscreen .yeti-window-box {
  width: 100%;
  height: 100%;
}

.yeti-chatgpt-theme .yeti-footer {
  display: flex;
  align-items: center;
  background: var(--yeti-backgroundAiColor, var(--yeti-backgroundSecondaryColor));
  border-top: 1px solid var(--yeti-backgroundPrimaryColor);
  padding: 6px var(--yeti-spacing);
}
.yeti-chatgpt-theme .yeti-footer:empty {
  display: none;
}
.yeti-chatgpt-theme .yeti-footer:not(:has(.yeti-tools)):has(.yeti-compliance:empty) {
  display: none;
}
.yeti-chatgpt-theme .yeti-footer .yeti-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: calc(var(--yeti-spacing) / 2);
}
.yeti-chatgpt-theme .yeti-footer .yeti-tools .yeti-file-upload {
  display: inline-block;
}
.yeti-chatgpt-theme .yeti-footer .yeti-tools .yeti-file-upload-icon.yeti-lucide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 16px;
  height: 16px;
  color: var(--yeti-fontColor);
  opacity: 0.75;
  margin: 0;
}
.yeti-chatgpt-theme .yeti-footer .yeti-tools .yeti-file-upload-icon.yeti-lucide:hover {
  opacity: 1;
}
.yeti-chatgpt-theme .yeti-footer .yeti-tools .yeti-file-upload-icon.yeti-lucide svg {
  width: 16px;
  height: 16px;
}
.yeti-chatgpt-theme .yeti-footer .yeti-tools .yeti-file-upload-icon.yeti-lucide .yeti-upload-count {
  position: absolute;
  top: -5px;
  right: -6px;
  min-width: 12px;
  height: 12px;
  padding: 0 2px;
  border-radius: 999px;
  background: var(--yeti-backgroundHeaderColor);
  color: #fff;
  border: 2px solid var(--yeti-backgroundAiColor, var(--yeti-backgroundSecondaryColor));
  font-size: 8px;
  font-family: system-ui;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
.yeti-chatgpt-theme .yeti-footer .yeti-tools .yeti-file-upload-icon.yeti-lucide .yeti-upload-count::after {
  content: attr(data-count);
}
.yeti-chatgpt-theme .yeti-footer .yeti-tools .yeti-file-upload-icon.yeti-lucide.yeti-hover .yeti-upload-count::after {
  content: "-";
}
.yeti-chatgpt-theme .yeti-footer .yeti-compliance {
  opacity: 0.5;
  font-size: 11px;
  line-height: 11px;
  color: var(--yeti-fontColor);
  flex: 1;
  text-align: left;
  padding: calc(var(--yeti-spacing) / 2) 0;
  margin: 0;
}
.yeti-chatgpt-theme .yeti-footer .yeti-tools + .yeti-compliance {
  text-align: right;
}
.yeti-chatgpt-theme .yeti-body:not(:has(~ .yeti-footer)):not(:has(+ .yeti-footer)) .yeti-input, .yeti-chatgpt-theme .yeti-body:last-child .yeti-input {
  padding-bottom: var(--yeti-spacing);
}
@media (max-width: 760px) {
  .yeti-chatgpt-theme .yeti-body:not(:has(~ .yeti-footer)):not(:has(+ .yeti-footer)) .yeti-input, .yeti-chatgpt-theme .yeti-body:last-child .yeti-input {
    padding-bottom: var(--yeti-spacing);
  }
}

.yeti-chatgpt-theme .yeti-files {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: var(--yeti-spacing);
  background: var(--yeti-backgroundSecondaryColor);
  border-top: 1px solid var(--yeti-backgroundPrimaryColor);
}
.yeti-chatgpt-theme .yeti-files::-webkit-scrollbar {
  width: 6px;
}
.yeti-chatgpt-theme .yeti-files::-webkit-scrollbar-track {
  background: var(--yeti-backgroundPrimaryColor);
  border-radius: 3px;
}
.yeti-chatgpt-theme .yeti-files::-webkit-scrollbar-thumb {
  background: var(--yeti-backgroundHeaderColor);
  border-radius: 3px;
}
.yeti-chatgpt-theme .yeti-files::-webkit-scrollbar-thumb:hover {
  background: var(--yeti-primaryColor);
}
.yeti-chatgpt-theme .yeti-files .yeti-file-preview {
  position: relative;
}
.yeti-chatgpt-theme .yeti-files .yeti-file-preview .yeti-file-content {
  display: flex;
  align-items: center;
  gap: 8px;
}
.yeti-chatgpt-theme .yeti-files .yeti-file-preview .yeti-file-thumbnail {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--yeti-backgroundHeaderColor);
  display: block;
  flex-shrink: 0;
}
.yeti-chatgpt-theme .yeti-files .yeti-file-preview .yeti-file-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yeti-backgroundSecondaryColor);
  border-radius: 4px;
  color: var(--yeti-fontColor);
  opacity: 0.6;
  flex-shrink: 0;
}
.yeti-chatgpt-theme .yeti-files .yeti-file-preview .yeti-file-icon svg {
  width: 18px;
  height: 18px;
}
.yeti-chatgpt-theme .yeti-files .yeti-file-preview .yeti-file-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.yeti-chatgpt-theme .yeti-files .yeti-file-preview .yeti-file-name {
  font-size: calc(var(--yeti-fontSize) * 0.85);
  color: var(--yeti-fontColor);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.yeti-chatgpt-theme .yeti-files .yeti-file-preview .yeti-file-size {
  font-size: calc(var(--yeti-fontSize) * 0.7);
  color: var(--yeti-fontColor);
  opacity: 0.5;
  line-height: 1;
}
.yeti-chatgpt-theme .yeti-files .yeti-file-preview .yeti-file-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--yeti-backgroundHeaderColor);
  border-radius: 0 0 calc(var(--yeti-borderRadius) / 2) calc(var(--yeti-borderRadius) / 2);
  overflow: hidden;
}
.yeti-chatgpt-theme .yeti-files .yeti-file-preview .yeti-file-progress .yeti-file-progress-bar {
  height: 100%;
  background: var(--yeti-primaryColor);
  transition: width 0.3s ease;
}
.yeti-chatgpt-theme .yeti-files .yeti-file-preview .yeti-file-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  cursor: pointer;
  color: var(--yeti-fontColor);
  padding: 4px;
  border: none;
  line-height: 0;
  min-width: inherit;
  margin-left: auto;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.yeti-chatgpt-theme .yeti-files .yeti-file-preview .yeti-file-remove:hover {
  opacity: 1;
}
.yeti-chatgpt-theme .yeti-files .yeti-file-preview .yeti-file-remove svg {
  width: 20px;
  height: 20px;
}
.yeti-chatgpt-theme .yeti-files:empty {
  display: none;
}
.yeti-chatgpt-theme .yeti-file-upload-icon {
  margin-bottom: -3px;
}
.yeti-chatgpt-theme .yeti-terminal {
  --yeti-terminal-active-color: var(--yeti-fontColor);
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Monaco, Menlo, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  background: var(--yeti-backgroundPrimaryColor);
  color: var(--yeti-fontColor);
  padding: var(--yeti-spacing);
  height: 100%;
  overflow-y: auto;
  cursor: text;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding-bottom: calc(var(--yeti-spacing) * 1.25);
  scrollbar-width: thin;
  scrollbar-color: rgba(128, 128, 128, 0.3) transparent;
}
.yeti-chatgpt-theme .yeti-terminal:focus {
  outline: none;
}
.yeti-chatgpt-theme .yeti-terminal .yeti-terminal-line {
  display: flex;
  align-items: flex-start;
  margin: calc(var(--yeti-spacing) / 2) 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-word;
}
.yeti-chatgpt-theme .yeti-terminal .yeti-terminal-line.yeti-terminal-user {
  color: var(--yeti-fontColor);
  opacity: 0.35;
}
.yeti-chatgpt-theme .yeti-terminal .yeti-terminal-line.yeti-terminal-user-typing {
  color: var(--yeti-terminal-active-color);
  opacity: 1;
}
.yeti-chatgpt-theme .yeti-terminal .yeti-terminal-line.yeti-terminal-user-typing .yeti-terminal-prompt {
  color: var(--yeti-terminal-active-color);
}
.yeti-chatgpt-theme .yeti-terminal .yeti-terminal-line.yeti-terminal-assistant {
  color: var(--yeti-fontColor);
}
.yeti-chatgpt-theme .yeti-terminal .yeti-terminal-line.yeti-terminal-system {
  color: #608b4e;
  font-style: italic;
}
.yeti-chatgpt-theme .yeti-terminal .yeti-terminal-prompt {
  color: var(--yeti-terminal-active-color);
  margin-left: -4px;
  margin-right: 4px;
  display: inline-flex;
  align-items: center;
  height: 1.5em;
  line-height: 1.2;
  flex-shrink: 0;
  align-self: flex-start;
}
.yeti-chatgpt-theme .yeti-terminal .yeti-terminal-prompt svg {
  display: block;
  width: 1.4em;
  height: 1.4em;
}
.yeti-chatgpt-theme .yeti-terminal .yeti-terminal-text {
  color: inherit;
}
.yeti-chatgpt-theme .yeti-terminal .yeti-terminal-input-wrapper {
  flex: 1;
  display: inline;
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-word;
}
.yeti-chatgpt-theme .yeti-terminal .yeti-terminal-typed {
  color: var(--yeti-terminal-active-color);
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-word;
}
.yeti-chatgpt-theme .yeti-terminal .yeti-terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--yeti-terminal-active-color);
  vertical-align: text-bottom;
  margin-left: 2px;
  transition: opacity 0.2s ease;
  opacity: 0.35;
  animation: none;
}
.yeti-chatgpt-theme .yeti-terminal .yeti-terminal-cursor.yeti-terminal-cursor-active {
  opacity: 1;
  animation: yeti-caret-blink 1s steps(2, start) infinite;
}
.yeti-chatgpt-theme .yeti-terminal .yeti-terminal-cursor.yeti-terminal-cursor-typing {
  opacity: 1;
  animation: none;
}
.yeti-chatgpt-theme .yeti-terminal .yeti-terminal-cursor.yeti-terminal-cursor-inactive {
  opacity: 0.35;
  animation: none;
}
.yeti-chatgpt-theme .yeti-terminal::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}
.yeti-chatgpt-theme .yeti-terminal::-webkit-scrollbar-track {
  background: transparent;
}
.yeti-chatgpt-theme .yeti-terminal::-webkit-scrollbar-thumb {
  background: rgba(128, 128, 128, 0.3);
  border-radius: 4px;
}
.yeti-chatgpt-theme .yeti-terminal::-webkit-scrollbar-thumb:hover {
  background: rgba(128, 128, 128, 0.5);
}
.yeti-chatgpt-theme .yeti-terminal + .yeti-compliance {
  margin-top: 0;
}
.yeti-chatgpt-theme.yeti-transition, .yeti-chatgpt-theme .yeti-transition {
  opacity: 0;
  transition: opacity 350ms ease-in-out;
}
.yeti-chatgpt-theme.yeti-transition-visible, .yeti-chatgpt-theme .yeti-transition-visible {
  opacity: 1;
}
.yeti-chatgpt-theme .yeti-text {
  overflow-wrap: anywhere;
}
.yeti-chatgpt-theme .yeti-text img, .yeti-chatgpt-theme .yeti-text svg {
  max-width: 100%;
}
.yeti-chatgpt-theme .yeti-text div p:first-child {
  margin-top: 0;
}
.yeti-chatgpt-theme .yeti-text div p:last-child {
  margin-bottom: 0;
}
.yeti-chatgpt-theme .yeti-trigger {
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 0.2s ease-out;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.yeti-chatgpt-theme .yeti-trigger .yeti-icon-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}
.yeti-chatgpt-theme .yeti-trigger .yeti-icon-text-container .yeti-icon-text {
  background: var(--yeti-iconTextBackgroundColor);
  color: var(--yeti-iconTextColor);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  max-width: 200px;
  font-size: 13px;
  margin-bottom: 15px;
  padding: 10px 15px;
  border-radius: 8px;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.yeti-chatgpt-theme .yeti-trigger .yeti-icon-text-container .yeti-icon-text-close {
  --yeti-icon-close-size: 28px;
  color: var(--yeti-iconTextColor);
  background: var(--yeti-iconTextBackgroundColor);
  font-size: 13px;
  line-height: 1;
  width: var(--yeti-icon-close-size);
  height: var(--yeti-icon-close-size);
  min-width: var(--yeti-icon-close-size);
  min-height: var(--yeti-icon-close-size);
  border-radius: 50%;
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 120ms ease, transform 120ms ease, visibility 0s linear 120ms;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(40%, -40%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  z-index: 2;
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.yeti-chatgpt-theme .yeti-trigger .yeti-icon-text-container:hover {
  cursor: pointer;
}
.yeti-chatgpt-theme .yeti-trigger .yeti-icon-text-container:hover .yeti-icon-text-close {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(40%, -40%) scale(1);
  transition: opacity 120ms ease, transform 120ms ease, visibility 0s;
}
.yeti-chatgpt-theme .yeti-trigger .yeti-icon-text-container:hover .yeti-icon-text-close:hover {
  filter: brightness(1.1);
  transform: translate(40%, -40%) scale(1.06);
}
@media (max-width: 760px) {
  .yeti-chatgpt-theme .yeti-trigger .yeti-icon-text-container .yeti-icon-text-close {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(40%, -40%) scale(1);
    transition: opacity 120ms ease, transform 120ms ease, visibility 0s;
  }
}
.yeti-chatgpt-theme .yeti-trigger .yeti-icon-container {
  position: relative;
  z-index: 1;
}
.yeti-chatgpt-theme .yeti-trigger .yeti-icon-container .yeti-icon {
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.15));
  transition: all 0.2s ease-out;
}
.yeti-chatgpt-theme .yeti-trigger .yeti-icon-container .yeti-icon:hover {
  cursor: pointer;
  transform: scale(1.05);
}
.yeti-chatgpt-theme.yeti-window {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: var(--yeti-width);
  z-index: 9999;
}
.yeti-chatgpt-theme.yeti-window .yeti-window-box {
  position: relative;
  z-index: 1;
}
.yeti-chatgpt-theme.yeti-window .yeti-header {
  display: none;
  justify-content: flex-end;
  align-items: center;
  border-radius: var(--yeti-borderRadius) var(--yeti-borderRadius) 0 0;
  background: var(--yeti-backgroundHeaderColor);
}
.yeti-chatgpt-theme.yeti-window .yeti-header .yeti-buttons {
  display: flex;
  align-items: center;
}
.yeti-chatgpt-theme.yeti-window .yeti-header .yeti-buttons .yeti-resize-button {
  justify-content: center;
  height: 32px;
  width: 32px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.yeti-chatgpt-theme.yeti-window .yeti-header .yeti-buttons .yeti-resize-button:before {
  transition: all 0.2s ease-out;
  content: " ";
  cursor: pointer;
  position: absolute;
  height: 13px;
  width: 13px;
  border: 1px solid var(--yeti-headerColor);
}
.yeti-chatgpt-theme.yeti-window .yeti-header .yeti-buttons .yeti-resize-button:hover:before {
  width: 16px;
  height: 16px;
}
.yeti-chatgpt-theme.yeti-window .yeti-header .yeti-buttons .yeti-close-button {
  justify-content: center;
  height: 32px;
  width: 32px;
  cursor: pointer;
  border-radius: var(--yeti-borderRadius);
  margin-left: -10px;
}
.yeti-chatgpt-theme.yeti-window .yeti-header .yeti-buttons .yeti-close-button:before {
  transition: all 0.2s ease-out;
  transform: translate(16px, 5px) rotate(45deg);
}
.yeti-chatgpt-theme.yeti-window .yeti-header .yeti-buttons .yeti-close-button:after {
  transition: all 0.2s ease-out;
  transform: translate(16px, 5px) rotate(-45deg);
}
.yeti-chatgpt-theme.yeti-window .yeti-header .yeti-buttons .yeti-close-button:before, .yeti-chatgpt-theme.yeti-window .yeti-header .yeti-buttons .yeti-close-button:after {
  content: " ";
  cursor: pointer;
  position: absolute;
  height: 22px;
  width: 1px;
  background-color: var(--yeti-headerColor);
}
.yeti-chatgpt-theme.yeti-window .yeti-header .yeti-buttons .yeti-close-button:hover:before {
  opacity: 1;
  transform: translate(16px, 5px) rotate(135deg);
}
.yeti-chatgpt-theme.yeti-window .yeti-header .yeti-buttons .yeti-close-button:hover:after {
  opacity: 1;
  transform: translate(16px, 5px) rotate(45deg);
}
.yeti-chatgpt-theme.yeti-window.yeti-opening, .yeti-chatgpt-theme.yeti-window.yeti-closing {
  cursor: default !important;
}
.yeti-chatgpt-theme.yeti-window.yeti-opening .yeti-header, .yeti-chatgpt-theme.yeti-window.yeti-closing .yeti-header {
  cursor: default !important;
}
.yeti-chatgpt-theme.yeti-window .yeti-body {
  display: none;
  opacity: 0;
  max-height: var(--yeti-maxHeight);
  border-radius: 0 0 var(--yeti-borderRadius) var(--yeti-borderRadius);
}
.yeti-chatgpt-theme.yeti-window.yeti-bottom-left {
  bottom: 30px;
  right: inherit;
  left: 30px;
}
.yeti-chatgpt-theme.yeti-window.yeti-bottom-left .yeti-trigger {
  right: inherit;
  left: 0;
}
.yeti-chatgpt-theme.yeti-window.yeti-top-right {
  top: 30px;
  bottom: inherit;
  right: 30px;
}
.yeti-chatgpt-theme.yeti-window.yeti-top-right .yeti-trigger {
  top: 0;
  bottom: inherit;
}
.yeti-chatgpt-theme.yeti-window.yeti-top-left {
  top: 30px;
  bottom: inherit;
  right: inherit;
  left: 30px;
}
.yeti-chatgpt-theme.yeti-window.yeti-top-left .yeti-trigger {
  top: 0;
  bottom: inherit;
  right: inherit;
  left: 0;
}
.yeti-chatgpt-theme.yeti-window.yeti-center-open.yeti-open {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  right: auto;
  bottom: auto;
}
@media (max-width: 760px) {
  .yeti-chatgpt-theme.yeti-window.yeti-center-open.yeti-open {
    width: calc(100% - 40px);
    max-width: var(--yeti-width);
  }
}
.yeti-chatgpt-theme.yeti-window.yeti-top-left .yeti-trigger, .yeti-chatgpt-theme.yeti-window.yeti-bottom-left .yeti-trigger {
  align-items: flex-start;
}
.yeti-chatgpt-theme.yeti-window.yeti-top-right .yeti-trigger, .yeti-chatgpt-theme.yeti-window.yeti-top-left .yeti-trigger {
  flex-direction: column-reverse;
}
.yeti-chatgpt-theme.yeti-window.yeti-top-right .yeti-trigger .yeti-icon-text, .yeti-chatgpt-theme.yeti-window.yeti-top-left .yeti-trigger .yeti-icon-text {
  margin-bottom: 0;
  margin-top: 15px;
}
.yeti-chatgpt-theme.yeti-window.yeti-fullscreen .yeti-header .yeti-buttons {
  margin-bottom: 0px;
}
.yeti-chatgpt-theme.yeti-window.yeti-fullscreen .yeti-header .yeti-buttons .yeti-resize-button:before {
  width: 16px;
  height: 16px;
}
.yeti-chatgpt-theme.yeti-window.yeti-fullscreen .yeti-header .yeti-buttons .yeti-resize-button:hover:before {
  width: 13px;
  height: 13px;
}
.yeti-chatgpt-theme.yeti-fullscreen:not(.yeti-window) {
  position: fixed;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  top: 0 !important;
  width: 100%;
  height: 100%;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  z-index: 999999;
  background-color: var(--yeti-backgroundSecondaryColor);
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.yeti-chatgpt-theme.yeti-fullscreen:not(.yeti-window) .yeti-header {
  border-radius: 0;
}
.yeti-chatgpt-theme.yeti-fullscreen:not(.yeti-window) .yeti-body {
  flex: 1;
  min-height: 0;
  max-height: inherit;
  border-radius: 0;
  display: flex !important;
  flex-direction: column !important;
}
.yeti-chatgpt-theme.yeti-fullscreen:not(.yeti-window) .yeti-body .yeti-conversation {
  flex: 0 1 auto !important;
  max-height: none;
  overflow-y: auto;
  min-height: 0;
}
.yeti-chatgpt-theme.yeti-fullscreen:not(.yeti-window) .yeti-body .yeti-fullscreen-spacer {
  flex: 1 1 auto !important;
  min-height: 0;
}
.yeti-chatgpt-theme.yeti-fullscreen:not(.yeti-window) .yeti-body .yeti-input {
  flex: 0 0 auto;
}
.yeti-chatgpt-theme.yeti-fullscreen:not(.yeti-window) .yeti-body .yeti-footer {
  flex: 0 0 auto;
}
.yeti-chatgpt-theme.yeti-fullscreen:not(.yeti-window) .yeti-body .yeti-files {
  flex: 0 0 auto;
}
.yeti-chatgpt-theme.yeti-fullscreen:not(.yeti-window) .yeti-window-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.yeti-chatgpt-theme.yeti-fullscreen:not(.yeti-window) .yeti-header {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  flex: 0 0 auto;
}
.yeti-chatgpt-theme.yeti-fullscreen:not(.yeti-window) .yeti-body {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}
.yeti-chatgpt-theme.yeti-fullscreen.yeti-window.yeti-open {
  position: fixed;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  top: 0 !important;
  width: 100%;
  height: 100%;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  z-index: 999999;
  background-color: var(--yeti-backgroundSecondaryColor);
  transform: none !important;
}
.yeti-chatgpt-theme.yeti-fullscreen.yeti-window.yeti-open .yeti-header {
  border-radius: 0;
}
.yeti-chatgpt-theme.yeti-fullscreen.yeti-window.yeti-open .yeti-body {
  flex: 1;
  min-height: 0;
  max-height: inherit;
  border-radius: 0;
  display: flex !important;
  flex-direction: column !important;
}
.yeti-chatgpt-theme.yeti-fullscreen.yeti-window.yeti-open .yeti-body .yeti-conversation {
  flex: 0 1 auto !important;
  max-height: none;
  overflow-y: auto;
  min-height: 0;
}
.yeti-chatgpt-theme.yeti-fullscreen.yeti-window.yeti-open .yeti-body .yeti-fullscreen-spacer {
  flex: 1 1 auto !important;
  min-height: 0;
}
.yeti-chatgpt-theme.yeti-fullscreen.yeti-window.yeti-open .yeti-body .yeti-input {
  flex: 0 0 auto;
}
.yeti-chatgpt-theme.yeti-fullscreen.yeti-window.yeti-open .yeti-body .yeti-footer {
  flex: 0 0 auto;
}
.yeti-chatgpt-theme.yeti-fullscreen.yeti-window.yeti-open .yeti-body .yeti-files {
  flex: 0 0 auto;
}
.yeti-chatgpt-theme.yeti-fullscreen.yeti-window.yeti-open .yeti-window-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.yeti-chatgpt-theme.yeti-fullscreen.yeti-window.yeti-open .yeti-body {
  flex: 1 1 auto;
  min-height: 0;
}
.yeti-chatgpt-theme.yeti-window.yeti-open .yeti-header {
  display: flex;
}
.yeti-chatgpt-theme.yeti-window.yeti-open .yeti-body {
  display: flex;
  transition: opacity 200ms ease-in-out 0s;
  opacity: 1;
}
.yeti-chatgpt-theme.yeti-window.yeti-open .yeti-trigger {
  display: none;
}
.yeti-chatgpt-theme .yeti-body > .yeti-error {
  margin: var(--yeti-spacing);
  color: white;
  background: rgba(180, 55, 55, 0.55);
  padding: var(--yeti-spacing);
  border-radius: var(--yeti-borderRadius);
}
.yeti-chatgpt-theme .yeti-body > .yeti-error:hover {
  cursor: pointer;
  background: rgba(180, 44, 44, 0.85);
}
.yeti-chatgpt-theme .yeti-reply.yeti-error .yeti-text {
  color: #ff5656;
}
.yeti-chatgpt-theme .yeti-reply.yeti-error .yeti-text a {
  color: #ff5656;
  text-decoration: underline;
}
.yeti-chatgpt-theme .yeti-reply.yeti-error .yeti-reply-actions .yeti-action-button {
  fill: var(--yeti-fontColor);
  padding: 3px 5px;
  width: 24px;
  height: 24px;
  background: var(--yeti-backgroundPrimaryColor);
  cursor: pointer;
  border-radius: 5px;
}
.yeti-chatgpt-theme .yeti-reply.yeti-error .yeti-reply-actions .yeti-action-button:hover {
  filter: brightness(1.2);
}
.yeti-chatgpt-theme .yeti-reply-actions {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.yeti-chatgpt-theme .yeti-reply:hover .yeti-reply-actions {
  opacity: 1 !important;
}
.yeti-chatgpt-theme .yeti-form-output-container:hover .yeti-reply-actions {
  opacity: 1 !important;
}
.yeti-chatgpt-theme .yeti-form-output-container:hover .yeti-reply-actions.yeti-hidden {
  opacity: 1 !important;
}
.yeti-chatgpt-theme.yeti-bubble .yeti-trigger .yeti-icon-container {
  background: var(--yeti-bubbleColor);
  width: var(--yeti-iconSize, 60px);
  height: var(--yeti-iconSize, 60px);
  border-radius: 100%;
  transition: all 0.2s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.yeti-chatgpt-theme.yeti-bubble .yeti-trigger .yeti-icon-container .yeti-icon {
  max-width: 50%;
  max-height: 50%;
  filter: none;
}
.yeti-chatgpt-theme.yeti-bubble .yeti-trigger .yeti-icon-container .yeti-icon:hover {
  transform: none;
}
.yeti-chatgpt-theme.yeti-bubble .yeti-trigger .yeti-icon-container .yeti-emoji {
  font-size: calc(var(--yeti-iconSize, 60px) / 2);
}
.yeti-chatgpt-theme.yeti-bubble .yeti-trigger .yeti-icon-container:hover {
  cursor: pointer;
  filter: brightness(1.1);
}
@media (max-width: 760px) {
  .yeti-chatgpt-theme.yeti-window.yeti-open {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100%;
    min-height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100dvh;
    max-height: 100dvh;
    max-width: 100%;
    margin: 0;
    z-index: 999999;
    background-color: var(--yeti-backgroundPrimaryColor, var(--yeti-backgroundSecondaryColor));
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    padding-top: env(safe-area-inset-top, 0);
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
    box-sizing: border-box;
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-window-box {
    width: 100%;
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    min-height: 0;
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-header {
    display: none !important;
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-body {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    border-radius: 0 !important;
    overflow: hidden;
    background: var(--yeti-backgroundPrimaryColor, var(--yeti-backgroundSecondaryColor));
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-body .yeti-conversation {
    flex: 1;
    overflow-y: auto;
    max-height: none;
    min-height: 0;
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-body .yeti-input {
    flex-shrink: 0;
    position: relative;
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-body .yeti-footer {
    flex-shrink: 0;
    position: relative;
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-body .yeti-body:last-child .yeti-input {
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-mobile-header {
    display: flex;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    min-height: 50px;
    background: var(--yeti-backgroundHeaderColor);
    border-bottom: 1px solid var(--yeti-lineColor);
    padding: 0 15px;
    padding-top: env(safe-area-inset-top, 0);
    padding-left: calc(15px + env(safe-area-inset-left, 0));
    padding-right: calc(15px + env(safe-area-inset-right, 0));
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    flex-shrink: 0;
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-mobile-header .yeti-mobile-header-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--yeti-headerColor);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-mobile-header .yeti-mobile-header-close {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-mobile-header .yeti-mobile-header-close:hover, .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-mobile-header .yeti-mobile-header-close:active {
    background-color: var(--yeti-backgroundSecondaryColor);
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-mobile-header .yeti-mobile-header-close svg {
    width: 20px;
    height: 20px;
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-mobile-header .yeti-mobile-header-close svg path {
    stroke: var(--yeti-headerColor);
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open.yeti-center-open {
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100dvh !important;
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-input {
    flex-direction: column;
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-input button {
    font-size: 16px;
    margin-left: 0;
    width: 100%;
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-input .yeti-input-text {
    width: 100%;
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-input .yeti-input-text input, .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-input .yeti-input-text textarea {
    font-size: 16px;
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-body {
    display: flex;
    transition: opacity 200ms ease-in-out 0s;
    opacity: 1;
    flex: 1;
    min-height: 0;
    max-height: inherit;
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-body .yeti-conversation {
    flex: 1;
    max-height: none;
    min-height: 0;
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-resize-button {
    display: none !important;
  }
  .yeti-chatgpt-theme.yeti-window.yeti-open .yeti-trigger {
    display: none;
  }
}
@keyframes yeti-button-spinner {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}
.yeti-chatgpt-theme button:not(.yeti-busy):before {
  content: none !important;
  display: none !important;
  animation: none !important;
}
.yeti-chatgpt-theme .admin-bar .yeti-fullscreen:not(.yeti-window),
.yeti-chatgpt-theme .admin-bar .yeti-fullscreen.yeti-window.yeti-open {
  top: 32px;
}
.yeti-chatgpt-theme .yeti-input .yeti-terminal-line {
  display: flex;
  align-items: flex-start;
  color: var(--yeti-terminal-active-color, var(--yeti-fontColor));
}
.yeti-chatgpt-theme .yeti-input .yeti-terminal-line .yeti-terminal-prompt {
  color: var(--yeti-terminal-active-color, currentColor);
  margin-left: -4px;
  margin-right: 4px;
  display: inline-flex;
  align-items: center;
  height: 1.5em;
  line-height: 1.2;
  flex-shrink: 0;
  align-self: flex-start;
}
.yeti-chatgpt-theme .yeti-input .yeti-terminal-line .yeti-terminal-prompt svg {
  display: block;
  width: 1.4em;
  height: 1.4em;
}
.yeti-chatgpt-theme .yeti-input .yeti-terminal-line .yeti-terminal-input-wrapper {
  flex: 1;
  display: inline;
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-word;
}
.yeti-chatgpt-theme .yeti-input .yeti-terminal-line .yeti-terminal-typed {
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-word;
}
.yeti-chatgpt-theme .yeti-input .yeti-terminal-line .yeti-terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: currentColor;
  vertical-align: text-bottom;
  margin-left: 2px;
  transition: opacity 0.2s ease;
  opacity: 0.35;
  animation: none;
}
.yeti-chatgpt-theme .yeti-input .yeti-terminal-line .yeti-terminal-cursor.yeti-terminal-cursor-active {
  opacity: 1;
  animation: yeti-caret-blink 1s steps(2, start) infinite;
}
.yeti-chatgpt-theme .yeti-input .yeti-terminal-line .yeti-terminal-cursor.yeti-terminal-cursor-typing {
  opacity: 1;
  animation: none;
}
.yeti-chatgpt-theme .yeti-input .yeti-terminal-line .yeti-terminal-cursor.yeti-terminal-cursor-inactive {
  opacity: 0.35;
  animation: none;
}
.yeti-chatgpt-theme pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em;
}
.yeti-chatgpt-theme code.hljs {
  padding: 3px 5px;
}
.yeti-chatgpt-theme .hljs {
  color: #fff;
}
.yeti-chatgpt-theme .hljs-subst {
  color: #fff;
}
.yeti-chatgpt-theme .hljs-comment {
  color: #999;
}
.yeti-chatgpt-theme .hljs-attr, .yeti-chatgpt-theme .hljs-doctag, .yeti-chatgpt-theme .hljs-keyword, .yeti-chatgpt-theme .hljs-meta .hljs-keyword, .yeti-chatgpt-theme .hljs-section, .yeti-chatgpt-theme .hljs-selector-tag {
  color: #88aece;
}
.yeti-chatgpt-theme .hljs-attribute {
  color: #c59bc1;
}
.yeti-chatgpt-theme .hljs-name, .yeti-chatgpt-theme .hljs-number, .yeti-chatgpt-theme .hljs-quote, .yeti-chatgpt-theme .hljs-selector-id, .yeti-chatgpt-theme .hljs-template-tag, .yeti-chatgpt-theme .hljs-type {
  color: #f08d49;
}
.yeti-chatgpt-theme .hljs-selector-class {
  color: #88aece;
}
.yeti-chatgpt-theme .hljs-link, .yeti-chatgpt-theme .hljs-regexp, .yeti-chatgpt-theme .hljs-selector-attr, .yeti-chatgpt-theme .hljs-string, .yeti-chatgpt-theme .hljs-symbol, .yeti-chatgpt-theme .hljs-template-variable, .yeti-chatgpt-theme .hljs-variable {
  color: #b5bd68;
}
.yeti-chatgpt-theme .hljs-meta, .yeti-chatgpt-theme .hljs-selector-pseudo {
  color: #88aece;
}
.yeti-chatgpt-theme .hljs-built_in, .yeti-chatgpt-theme .hljs-literal, .yeti-chatgpt-theme .hljs-title {
  color: #f08d49;
}
.yeti-chatgpt-theme .hljs-bullet, .yeti-chatgpt-theme .hljs-code {
  color: #ccc;
}
.yeti-chatgpt-theme .hljs-meta .hljs-string {
  color: #b5bd68;
}
.yeti-chatgpt-theme .hljs-deletion {
  color: #de7176;
}
.yeti-chatgpt-theme .hljs-addition {
  color: #76c490;
}
.yeti-chatgpt-theme .hljs-emphasis {
  font-style: italic;
}
.yeti-chatgpt-theme .hljs-strong {
  font-weight: 700;
}
.yeti-chatgpt-theme .yeti-reply-actions {
  position: absolute;
  border-radius: 5px;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  padding: 2px 2px;
  z-index: 100;
  background: var(--yeti-backgroundPrimaryColor);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  z-index: 100;
}
.yeti-chatgpt-theme .yeti-reply-actions .yeti-copy-button,
.yeti-chatgpt-theme .yeti-reply-actions .yeti-download-button {
  fill: var(--yeti-fontColor);
  padding: 3px 5px;
  width: 24px;
  height: 24px;
  background: var(--yeti-backgroundPrimaryColor);
  cursor: pointer;
  border-radius: 5px;
}
.yeti-chatgpt-theme .yeti-reply-actions .yeti-copy-button:hover,
.yeti-chatgpt-theme .yeti-reply-actions .yeti-download-button:hover {
  filter: brightness(1.2);
}
.yeti-chatgpt-theme .yeti-reply-actions.yeti-hidden {
  opacity: 0;
}
.yeti-chatgpt-theme .yeti-realtime {
  padding: var(--yeti-spacing);
}
.yeti-chatgpt-theme .yeti-realtime .yeti-visualizer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.yeti-chatgpt-theme .yeti-realtime .yeti-visualizer hr {
  width: 100px;
  margin-right: var(--yeti-spacing);
  margin-left: var(--yeti-spacing);
  border: 1px solid var(--yeti-backgroundPrimaryColor);
}
.yeti-chatgpt-theme .yeti-realtime .yeti-visualizer .yeti-animation {
  background: var(--yeti-backgroundPrimaryColor);
}
.yeti-chatgpt-theme .yeti-realtime .yeti-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--yeti-spacing);
}
.yeti-chatgpt-theme .yeti-realtime .yeti-controls > * + * {
  margin-left: 10px;
}
.yeti-chatgpt-theme .yeti-realtime .yeti-controls button {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  margin: 5px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yeti-fontColor);
  border: 2px solid var(--yeti-backgroundPrimaryColor);
  background: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
  min-width: inherit;
  max-width: inherit;
}
.yeti-chatgpt-theme .yeti-realtime .yeti-controls button:hover:not(:disabled) {
  background: var(--yeti-backgroundPrimaryColor);
}
.yeti-chatgpt-theme .yeti-realtime .yeti-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: none;
}
.yeti-chatgpt-theme .yeti-realtime .yeti-controls button.yeti-active {
  border: 2px solid var(--yeti-fontColor);
}
.yeti-chatgpt-theme .yeti-realtime .yeti-controls.yeti-hold-to-talk-mode {
  flex-direction: column;
  gap: 8px;
}
.yeti-chatgpt-theme .yeti-realtime .yeti-controls.yeti-hold-to-talk-mode .yeti-push-to-talk {
  border-radius: calc(var(--yeti-borderRadius) * 0.8);
  width: auto;
  min-width: 120px;
  padding: 12px 24px;
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--yeti-fontColor);
  border: 2px solid var(--yeti-backgroundPrimaryColor);
  background: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
  font-family: inherit;
  font-size: var(--yeti-fontSize);
  line-height: 1.2;
  font-weight: 500;
  height: auto;
}
.yeti-chatgpt-theme .yeti-realtime .yeti-controls.yeti-hold-to-talk-mode .yeti-push-to-talk:hover:not(:disabled) {
  background: var(--yeti-backgroundPrimaryColor);
}
.yeti-chatgpt-theme .yeti-realtime .yeti-controls.yeti-hold-to-talk-mode .yeti-push-to-talk:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: none;
}
.yeti-chatgpt-theme .yeti-realtime .yeti-controls.yeti-hold-to-talk-mode .yeti-push-to-talk.yeti-active {
  border: 2px solid var(--yeti-fontColor);
  background: var(--yeti-backgroundPrimaryColor);
}
.yeti-chatgpt-theme .yeti-realtime .yeti-controls.yeti-hold-to-talk-mode .yeti-push-to-talk svg {
  width: 18px;
  height: 18px;
}
.yeti-chatgpt-theme .yeti-realtime .yeti-controls.yeti-hold-to-talk-mode .yeti-talk-hint {
  font-size: 12px;
  color: var(--yeti-fontColor);
  opacity: 0.6;
  text-align: center;
  margin: 0;
}
.yeti-chatgpt-theme .yeti-realtime .yeti-last-transcript {
  margin: var(--yeti-spacing);
  margin-top: 0;
  border: 2px solid var(--yeti-backgroundPrimaryColor);
  padding: calc(var(--yeti-spacing) / 2);
  padding-right: calc(var(--yeti-spacing) / 2 + 10px);
  border-radius: var(--yeti-borderRadius);
  font-size: 80%;
  text-align: center;
  max-height: 120px;
  overflow-y: auto;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  scrollbar-width: thin;
  scrollbar-color: var(--yeti-backgroundHeaderColor) transparent;
}
.yeti-chatgpt-theme .yeti-realtime .yeti-last-transcript::-webkit-scrollbar {
  width: 6px;
}
.yeti-chatgpt-theme .yeti-realtime .yeti-last-transcript::-webkit-scrollbar-track {
  background: transparent;
  margin: 4px 0;
}
.yeti-chatgpt-theme .yeti-realtime .yeti-last-transcript::-webkit-scrollbar-thumb {
  background: var(--yeti-backgroundHeaderColor);
  border-radius: 10px;
}
.yeti-chatgpt-theme .yeti-realtime .yeti-last-transcript::-webkit-scrollbar-thumb:hover {
  background: var(--yeti-primaryColor);
}
.yeti-chatgpt-theme .yeti-realtime .yeti-statistics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 10px;
  font-size: 14px;
}
.yeti-chatgpt-theme .yeti-realtime .yeti-statistics div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.yeti-chatgpt-theme .yeti-realtime .yeti-statistics label {
  font-size: 11px;
  opacity: 0.5;
  text-transform: uppercase;
}
.yeti-chatgpt-theme .yeti-realtime .yeti-options {
  margin-top: var(--yeti-spacing);
  display: flex;
  align-items: center;
}
.yeti-chatgpt-theme .yeti-realtime .yeti-options .yeti-option {
  cursor: pointer;
  opacity: 0.5;
  margin-right: 2px;
}
.yeti-chatgpt-theme .yeti-realtime .yeti-options .yeti-option.yeti-active {
  opacity: 1;
}
.yeti-chatgpt-theme.yeti-discussions {
  border-radius: var(--yeti-borderRadius);
  background: var(--yeti-backgroundHeaderColor);
  overflow: hidden;
}
.yeti-chatgpt-theme.yeti-discussions * {
  box-sizing: border-box;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-discussion {
  display: flex;
  position: relative;
  padding-left: calc(var(--yeti-spacing) / 2);
  padding-right: calc(var(--yeti-spacing) / 2);
  padding-bottom: calc(var(--yeti-spacing) / 2);
  color: var(--yeti-conversationsTextColor);
  opacity: 0.65;
  align-items: center;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-discussion .yeti-discussion-content {
  flex: 1;
  padding: 5px 10px;
  overflow: hidden;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-discussion .yeti-discussion-title {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--yeti-fontSize);
  margin-bottom: 4px;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-discussion .yeti-discussion-info {
  display: flex;
  gap: 12px;
  font-size: calc(var(--yeti-fontSize) * 0.85);
  opacity: 0.7;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-discussion .yeti-discussion-info .yeti-info-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-discussion .yeti-discussion-info .yeti-info-item svg {
  opacity: 0.6;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-discussion .yeti-discussion-actions {
  position: absolute;
  top: 50%;
  right: calc(var(--yeti-spacing) / 2);
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.2s ease-out;
  z-index: 100;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-discussion .yeti-discussion-actions .yeti-menu-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--yeti-conversationsTextColor);
}
.yeti-chatgpt-theme.yeti-discussions .yeti-discussion.yeti-active {
  cursor: pointer;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-discussion.yeti-active .yeti-discussion-content {
  background: var(--yeti-backgroundPrimaryColor);
  border-radius: var(--yeti-borderRadius);
  opacity: 1;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-discussion:hover {
  cursor: pointer;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-discussion:hover .yeti-discussion-content {
  background: var(--yeti-backgroundPrimaryColor);
  border-radius: var(--yeti-borderRadius);
  opacity: 1;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-discussion:hover .yeti-discussion-actions {
  opacity: 1;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-discussion:has(.yeti-context-menu) .yeti-discussion-actions {
  opacity: 1;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-discussion:first-child {
  margin-top: calc(var(--yeti-spacing) / 2);
}
.yeti-chatgpt-theme.yeti-discussions .yeti-header {
  color: var(--yeti-headerColor);
  padding: var(--yeti-spacing);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-header button {
  background: var(--yeti-backgroundPrimaryColor);
  color: var(--yeti-fontColor);
  border: none;
  padding: 8px 16px;
  border-radius: var(--yeti-borderRadius);
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-header button:hover:not(:disabled) {
  background: var(--yeti-iconTextBackgroundColor);
}
.yeti-chatgpt-theme.yeti-discussions .yeti-header button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-header .yeti-refresh-btn {
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-body {
  background: var(--yeti-conversationsBackgroundColor);
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  z-index: 1;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--yeti-conversationsBackgroundColor);
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-spinner {
  animation: spin 1s linear infinite;
  color: var(--yeti-fontColor);
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.yeti-chatgpt-theme.yeti-discussions .yeti-pagination {
  background: var(--yeti-backgroundHeaderColor);
  padding: var(--yeti-spacing);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--yeti-backgroundPrimaryColor);
}
.yeti-chatgpt-theme.yeti-discussions .yeti-pagination button {
  background: var(--yeti-backgroundPrimaryColor);
  color: var(--yeti-fontColor);
  border: none;
  padding: 8px 12px;
  border-radius: var(--yeti-borderRadius);
  cursor: pointer;
  transition: all 0.2s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-pagination button:hover:not(:disabled) {
  background: var(--yeti-iconTextBackgroundColor);
}
.yeti-chatgpt-theme.yeti-discussions .yeti-pagination button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-pagination span {
  color: var(--yeti-headerColor);
  font-size: var(--yeti-fontSize);
  font-weight: 500;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-pagination .yeti-page-indicator {
  color: var(--yeti-headerColor);
  font-size: calc(var(--yeti-fontSize) * 0.85);
  font-weight: 400;
  opacity: 0.8;
}
.yeti-chatgpt-theme .yeti-chunks {
  background: rgba(255, 255, 255, 0.05);
}
.yeti-chatgpt-theme .yeti-chunks .yeti-chunks-header {
  color: #9ca3af;
}
.yeti-chatgpt-theme .yeti-chunks .yeti-chunks-header .yeti-chunks-toggle {
  border-color: rgba(255, 255, 255, 0.1);
  color: #9ca3af;
}
.yeti-chatgpt-theme .yeti-chunks .yeti-chunks-header .yeti-chunks-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #e5e7eb;
}
.yeti-chatgpt-theme .yeti-chunks .yeti-chunk {
  background: rgba(255, 255, 255, 0.08);
}
.yeti-chatgpt-theme .yeti-chunks .yeti-chunk .yeti-chunk-header .yeti-chunk-time {
  color: #e5e7eb;
}
.yeti-chatgpt-theme .yeti-chunks .yeti-chunk .yeti-chunk-header .yeti-chunk-data {
  color: #e5e7eb;
}
.yeti-chatgpt-theme .yeti-chunks .yeti-chunk .yeti-chunk-header .yeti-chunk-expand {
  color: #e5e7eb;
}
.yeti-chatgpt-theme .yeti-chunks .yeti-chunk .yeti-chunk-details {
  background: rgba(0, 0, 0, 0.2);
}
.yeti-chatgpt-theme .yeti-chunks .yeti-chunk .yeti-chunk-details pre {
  color: #d1d5db;
}

@media (max-width: 760px) {
  .yeti-chatgpt-theme .yeti-input {
    flex-direction: column;
    padding: var(--yeti-spacing);
    background: var(--yeti-backgroundSecondaryColor);
    border-top: 1px solid var(--yeti-backgroundPrimaryColor);
  }
  .yeti-chatgpt-theme .yeti-input .yeti-input-submit {
    margin: 15px 0 0 0;
    height: 40px;
    width: 100%;
  }
  .yeti-chatgpt-theme .yeti-name {
    margin-right: 0;
    max-width: inherit;
  }
}

.yeti-chatgpt-theme.yeti-discussions .yeti-header {
  background: var(--yeti-backgroundSecondaryColor);
  color: var(--yeti-fontColor);
  border-bottom: 1px solid var(--yeti-backgroundPrimaryColor);
}
.yeti-chatgpt-theme.yeti-discussions .yeti-header button {
  background: var(--yeti-backgroundSecondaryColor);
  color: var(--yeti-fontColor);
  border: 1px solid var(--yeti-borderColor);
  padding: calc(var(--yeti-spacing) / 2) var(--yeti-spacing);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  font-size: calc(var(--yeti-fontSize) * 0.9);
  margin-left: 0;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-header button:hover:not(:disabled) {
  background: var(--yeti-backgroundPrimaryColor);
}
.yeti-chatgpt-theme.yeti-discussions .yeti-header button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-pagination {
  background: var(--yeti-backgroundSecondaryColor);
  border-top: 1px solid var(--yeti-backgroundPrimaryColor);
}
.yeti-chatgpt-theme.yeti-discussions .yeti-pagination button {
  background: var(--yeti-backgroundSecondaryColor);
  color: var(--yeti-fontColor);
  border: 1px solid var(--yeti-borderColor);
  padding: calc(var(--yeti-spacing) / 2) var(--yeti-spacing);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  font-size: calc(var(--yeti-fontSize) * 0.9);
  margin-left: 0;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-pagination button:hover:not(:disabled) {
  background: var(--yeti-backgroundPrimaryColor);
}
.yeti-chatgpt-theme.yeti-discussions .yeti-pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.yeti-chatgpt-theme.yeti-discussions .yeti-discussions-footer,
.yeti-chatgpt-theme.yeti-discussions .yeti-discussions-pagination {
  background: var(--yeti-backgroundSecondaryColor);
  border-top: 1px solid var(--yeti-backgroundPrimaryColor);
}
.yeti-chatgpt-theme.yeti-discussions .yeti-discussions-footer .yeti-new-chat-button,
.yeti-chatgpt-theme.yeti-discussions .yeti-discussions-pagination .yeti-new-chat-button {
  width: 100%;
  background: var(--yeti-backgroundSecondaryColor);
  color: var(--yeti-fontColor);
  border: 1px solid var(--yeti-borderColor);
  padding: calc(var(--yeti-spacing) / 2) var(--yeti-spacing);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  font-size: calc(var(--yeti-fontSize) * 0.9);
}
.yeti-chatgpt-theme.yeti-discussions .yeti-discussions-footer .yeti-new-chat-button:hover,
.yeti-chatgpt-theme.yeti-discussions .yeti-discussions-pagination .yeti-new-chat-button:hover {
  background: var(--yeti-backgroundPrimaryColor);
}
.yeti-chatgpt-theme.yeti-discussions .yeti-discussions-footer .yeti-new-chat-button:disabled,
.yeti-chatgpt-theme.yeti-discussions .yeti-discussions-pagination .yeti-new-chat-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.yeti-context-menu-portal.yeti-chatgpt-theme .yeti-context-menu {
  background: var(--yeti-backgroundSecondaryColor);
  border: 1px solid var(--yeti-backgroundPrimaryColor);
  color: var(--yeti-fontColor);
}
.yeti-context-menu-portal.yeti-chatgpt-theme .yeti-context-menu .yeti-menu-item:hover {
  background-color: var(--yeti-backgroundPrimaryColor);
}
.yeti-context-menu-portal.yeti-chatgpt-theme .yeti-context-menu .yeti-menu-item.yeti-danger {
  color: var(--yeti-errorTextColor);
}
.yeti-context-menu-portal.yeti-chatgpt-theme .yeti-context-menu .yeti-menu-item.yeti-danger:hover {
  background-color: var(--yeti-errorBackgroundColor);
}
