.opogenia-chat-root {
  --opogenia-floating-width: 780px;
  --opogenia-floating-height: 84vh;
  --opogenia-inline-max-width: 1240px;
  --opogenia-inline-height: 84vh;
  --opogenia-bg: #f6f2f4;
  --opogenia-panel: #ffffff;
  --opogenia-panel-muted: #fbf8fa;
  --opogenia-text: #1f2937;
  --opogenia-text-soft: #5b6473;
  --opogenia-text-on-accent: #ffffff;
  --opogenia-line: rgba(31, 41, 55, 0.08);
  --opogenia-line-strong: rgba(168, 58, 101, 0.24);
  --opogenia-accent: #A83A65;
  --opogenia-accent-strong: #8F2E56;
  --opogenia-accent-soft: rgba(168, 58, 101, 0.1);
  --opogenia-accent-soft-strong: rgba(168, 58, 101, 0.18);
  --opogenia-shadow: 0 18px 52px rgba(15, 23, 42, 0.14);
  --opogenia-shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.08);
  --opogenia-radius-xl: 28px;
  --opogenia-radius-lg: 22px;
  --opogenia-radius-md: 16px;
  color: var(--opogenia-text);
  font-family: "Manrope", "Montserrat", "Segoe UI", sans-serif;
}

.opogenia-chat-root,
.opogenia-chat-root * {
  box-sizing: border-box;
}

.opogenia-chat-root [hidden] {
  display: none !important;
}

.opogenia-chat-root-inline {
  width: 100%;
  max-width: var(--opogenia-inline-max-width);
  margin: 0 auto;
}

.opogenia-chat-root-inline[data-inline-full-width="1"] {
  max-width: 100%;
}

.opogenia-chat-shell {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
}

.opogenia-chat-root-inline .opogenia-chat-shell,
.opogenia-chat-shell-fallback {
  position: static;
}

.opogenia-chat-fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.opogenia-chat-fab:hover {
  transform: translateY(-2px);
}

.opogenia-chat-fab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
}

.opogenia-chat-fab-image,
.opogenia-chat-header-logo-image,
.opogenia-chat-avatar-image,
.opogenia-chat-image-fallback {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.opogenia-chat-image-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--opogenia-accent);
  color: var(--opogenia-text-on-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.opogenia-chat-panel {
  position: relative;
  display: none;
  width: min(max(420px, var(--opogenia-floating-width)), calc(100vw - 20px));
  max-width: calc(100vw - 20px);
  height: min(var(--opogenia-floating-height), calc(100vh - 24px));
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background: var(--opogenia-panel);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.opogenia-chat-panel.is-open {
  display: flex;
  flex-direction: column;
}

.opogenia-chat-root.is-floating-open .opogenia-chat-fab {
  display: none;
}

.opogenia-chat-root.is-floating-open .opogenia-chat-panel {
  margin-top: 0;
}

.opogenia-chat-panel.is-inline {
  display: flex;
  width: 100%;
  height: min(var(--opogenia-inline-height), calc(100vh - 96px));
  min-height: 680px;
  margin-top: 0;
}

.opogenia-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--opogenia-line);
}

.opogenia-chat-header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.opogenia-chat-header-logo {
  width: 44px;
  height: 44px;
  padding: 4px;
  border-radius: 14px;
  background: var(--opogenia-accent-soft);
  flex: 0 0 44px;
}

.opogenia-chat-header-copy {
  min-width: 0;
}

.opogenia-chat-header strong {
  display: block;
  color: var(--opogenia-text);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.opogenia-chat-header p {
  margin: 4px 0 0;
  color: var(--opogenia-text-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.opogenia-chat-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--opogenia-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--opogenia-text-soft);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.opogenia-chat-close:hover {
  border-color: var(--opogenia-line-strong);
  color: var(--opogenia-accent);
  background: var(--opogenia-panel-muted);
}

.opogenia-chat-close-inline {
  position: static;
  z-index: 2;
}

.opogenia-chat-body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: 62px 20px 0;
  background:
    radial-gradient(circle at top, rgba(168, 58, 101, 0.05), transparent 26%),
    linear-gradient(180deg, #fcfbfc 0%, var(--opogenia-bg) 100%);
}

.opogenia-chat-panel-actions {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.opogenia-chat-quick-prompts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.opogenia-chat-chip {
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--opogenia-text);
  padding: 10px 14px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.opogenia-chat-chip:hover {
  border-color: var(--opogenia-line-strong);
  background: #ffffff;
  transform: translateY(-1px);
}

.opogenia-chat-messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 6px;
  -ms-overflow-style: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(168, 58, 101, 0.26) transparent;
  overscroll-behavior: contain;
}

.opogenia-chat-messages::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.opogenia-chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.opogenia-chat-messages::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(168, 58, 101, 0.24);
}

.opogenia-chat-message {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}

.opogenia-chat-message-user {
  justify-content: flex-end;
}

.opogenia-chat-message-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: min(860px, calc(100% - 54px));
}

.opogenia-chat-message-user .opogenia-chat-message-main {
  align-items: flex-end;
}

.opogenia-chat-message-meta {
  padding: 0 4px;
  color: var(--opogenia-text-soft);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.opogenia-chat-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}

.opogenia-chat-avatar-assistant {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.opogenia-chat-avatar-user {
  border-radius: 999px;
  background: var(--opogenia-accent);
  color: var(--opogenia-text-on-accent);
  box-shadow: 0 8px 20px rgba(168, 58, 101, 0.22);
}

.opogenia-chat-avatar-user.has-image {
  overflow: hidden;
  border: 1px solid rgba(31, 41, 55, 0.08);
  background: #ffffff;
  box-shadow: var(--opogenia-shadow-soft);
}

.opogenia-chat-avatar-letter {
  font-size: 0.9rem;
  font-weight: 800;
}

.opogenia-chat-bubble {
  width: 100%;
  padding: 15px 16px;
  border-radius: 20px;
  font-size: 0.95rem;
  line-height: 1.62;
}

.opogenia-chat-message-assistant .opogenia-chat-bubble {
  background: rgba(255, 255, 255, 0.96);
  color: var(--opogenia-text);
  border: 1px solid rgba(31, 41, 55, 0.07);
  border-bottom-left-radius: 8px;
  box-shadow: var(--opogenia-shadow-soft);
}

.opogenia-chat-message-user .opogenia-chat-bubble {
  background: linear-gradient(180deg, var(--opogenia-accent) 0%, var(--opogenia-accent-strong) 100%);
  color: var(--opogenia-text-on-accent);
  border-bottom-right-radius: 8px;
  box-shadow: 0 14px 26px rgba(168, 58, 101, 0.2);
}

.opogenia-chat-bubble-text {
  overflow-wrap: anywhere;
}

.opogenia-chat-bubble-text a,
.opogenia-chat-sources a {
  color: var(--opogenia-accent-strong);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.opogenia-chat-message-user .opogenia-chat-bubble a {
  color: var(--opogenia-text-on-accent);
}

.opogenia-chat-cards {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.opogenia-chat-card {
  display: block;
  padding: 14px 15px;
  border: 1px solid var(--opogenia-line);
  border-radius: 18px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.opogenia-chat-card:hover {
  transform: translateY(-1px);
  border-color: var(--opogenia-line-strong);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.opogenia-chat-card-type {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--opogenia-accent-soft);
  color: var(--opogenia-accent-strong);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.opogenia-chat-card-title {
  display: block;
  color: var(--opogenia-text);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.4;
}

.opogenia-chat-card-description {
  display: block;
  margin-top: 8px;
  color: var(--opogenia-text-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.opogenia-chat-sources {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
  color: var(--opogenia-text-soft);
  font-size: 0.78rem;
}

.opogenia-chat-status {
  min-height: 36px;
  margin-top: 8px;
  padding: 10px 12px 14px;
  color: var(--opogenia-text-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.opogenia-chat-status:not(:empty) {
  border-top: 1px dashed rgba(31, 41, 55, 0.08);
}

.opogenia-chat-documents {
  margin: 0 0 12px;
}

.opogenia-chat-documents[hidden] {
  display: none !important;
}

.opogenia-chat-documents-header {
  margin-bottom: 8px;
  color: var(--opogenia-text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.opogenia-chat-documents-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opogenia-chat-document {
  padding: 10px 12px;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
}

.opogenia-chat-document-name {
  color: var(--opogenia-text);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  word-break: break-word;
}

.opogenia-chat-document-meta {
  margin-top: 4px;
  color: var(--opogenia-text-soft);
  font-size: 0.78rem;
  line-height: 1.4;
}

.opogenia-chat-form {
  border-top: 1px solid rgba(31, 41, 55, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.98) 100%);
  padding: 14px 16px 18px;
}

.opogenia-chat-composer {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 10px 10px 10px 12px;
  border: 1px solid rgba(31, 41, 55, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.06);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.opogenia-chat-composer:focus-within {
  border-color: rgba(168, 58, 101, 0.28);
  box-shadow: 0 0 0 5px rgba(168, 58, 101, 0.08), 0 18px 30px rgba(15, 23, 42, 0.08);
  background: #ffffff;
}

.opogenia-chat-modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.34);
  backdrop-filter: blur(4px);
}

.opogenia-chat-modal {
  width: min(100%, 420px);
  padding: 22px;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.2);
}

.opogenia-chat-modal-title {
  margin: 0;
  color: var(--opogenia-text);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
}

.opogenia-chat-modal-text {
  margin: 12px 0 0;
  color: var(--opogenia-text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.opogenia-chat-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.opogenia-chat-modal-cancel,
.opogenia-chat-modal-confirm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.opogenia-chat-modal-cancel {
  border: 1px solid rgba(31, 41, 55, 0.1);
  background: #ffffff;
  color: var(--opogenia-text-soft);
}

.opogenia-chat-modal-confirm {
  border: 0;
  background: var(--opogenia-accent);
  color: var(--opogenia-text-on-accent);
  box-shadow: 0 10px 22px rgba(168, 58, 101, 0.24);
}

.opogenia-chat-modal-cancel:hover,
.opogenia-chat-modal-cancel:focus,
.opogenia-chat-modal-cancel:active {
  transform: translateY(-1px);
  outline: none;
  border-color: #000000;
  background: #000000;
  color: #ffffff;
}

.opogenia-chat-modal-confirm:hover,
.opogenia-chat-modal-confirm:focus,
.opogenia-chat-modal-confirm:active {
  transform: translateY(-1px);
  outline: none;
  background: #000000;
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.24);
}

.opogenia-chat-input {
  flex: 1 1 auto;
  width: 100%;
  min-height: 46px;
  max-height: 200px;
  resize: none;
  padding: 11px 4px 11px 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--opogenia-text);
  font: inherit;
  line-height: 1.55;
  overflow-y: hidden;
  transition: none;
}

.opogenia-chat-input::placeholder {
  color: #7a8290;
}

.opogenia-chat-input:focus {
  outline: none;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.opogenia-chat-input.is-scrollable {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(168, 58, 101, 0.22) transparent;
}

.opogenia-chat-input.is-scrollable::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.opogenia-chat-input.is-scrollable::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(168, 58, 101, 0.2);
}

.opogenia-chat-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.opogenia-chat-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--opogenia-text-soft);
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.opogenia-chat-root button:focus,
.opogenia-chat-root button:focus-visible,
.opogenia-chat-root textarea:focus,
.opogenia-chat-root textarea:focus-visible,
.opogenia-chat-root a:focus,
.opogenia-chat-root a:focus-visible {
  outline: none !important;
}

.opogenia-chat-icon-button svg {
  width: 21px;
  height: 21px;
  display: block;
}

.opogenia-chat-control-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.opogenia-chat-control-icon--fa i {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.opogenia-chat-reset {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(185, 28, 28, 0.09);
  color: #b91c1c;
}

.opogenia-chat-mic {
  background: rgba(168, 58, 101, 0.08);
  color: var(--opogenia-accent-strong);
}

.opogenia-chat-mic[disabled] {
  cursor: wait;
  opacity: 0.9;
}

.opogenia-chat-upload {
  flex: 0 0 auto;
  background: rgba(15, 23, 42, 0.045);
  color: #4b5563;
}

.opogenia-chat-upload:hover,
.opogenia-chat-upload:focus,
.opogenia-chat-upload:active {
  transform: translateY(-1px);
  outline: none;
  background: rgba(168, 58, 101, 0.1);
  color: var(--opogenia-accent-strong);
}

.opogenia-chat-send {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--opogenia-accent) 0%, var(--opogenia-accent-strong) 100%);
  color: var(--opogenia-text-on-accent);
  box-shadow: 0 10px 22px rgba(168, 58, 101, 0.22);
}

.opogenia-chat-close {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--opogenia-text-soft);
}

.opogenia-chat-reset .opogenia-chat-control-icon,
.opogenia-chat-close .opogenia-chat-control-icon {
  transform: scale(0.94);
}

.opogenia-chat-close:hover,
.opogenia-chat-close:focus,
.opogenia-chat-close:active {
  border-color: transparent;
  color: var(--opogenia-accent);
  background: rgba(168, 58, 101, 0.1);
  box-shadow: none;
}

.opogenia-chat-reset:hover,
.opogenia-chat-reset:focus,
.opogenia-chat-reset:active {
  transform: translateY(-1px);
  outline: none;
  border-color: transparent;
  background: #b91c1c;
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(185, 28, 28, 0.18);
}

.opogenia-chat-send:hover,
.opogenia-chat-mic:hover,
.opogenia-chat-icon-button:hover {
  transform: translateY(-1px);
}

.opogenia-chat-mic:hover,
.opogenia-chat-mic:focus,
.opogenia-chat-mic:active,
.opogenia-chat-mic.is-listening {
  background: var(--opogenia-accent);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(168, 58, 101, 0.24);
}

.opogenia-chat-mic.is-listening {
  position: relative;
}

.opogenia-chat-mic.is-listening::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  border: 1px solid rgba(168, 58, 101, 0.3);
  animation: opogenia-mic-pulse 1.45s ease-out infinite;
}

.opogenia-chat-mic.is-transcribing {
  background: rgba(15, 23, 42, 0.08);
  color: var(--opogenia-text-soft);
  box-shadow: none;
}

.opogenia-chat-mic:focus,
.opogenia-chat-mic:active {
  outline: none;
}

.opogenia-chat-send:hover {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.24);
}

.opogenia-chat-send:focus,
.opogenia-chat-send:active {
  outline: none;
  background: #000000;
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.24);
}

@keyframes opogenia-mic-pulse {
  0% {
    transform: scale(0.98);
    opacity: 0.55;
  }
  70% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.opogenia-chat-fab,
.opogenia-chat-send,
.opogenia-chat-mic,
.opogenia-chat-reset,
.opogenia-chat-upload,
.opogenia-chat-close {
  -webkit-tap-highlight-color: transparent;
}

.opogenia-chat-fab,
.opogenia-chat-fab:visited,
.opogenia-chat-fab span {
  color: inherit;
}

.opogenia-chat-send,
.opogenia-chat-send:visited,
.opogenia-chat-send span {
  color: var(--opogenia-text-on-accent);
}

@media (max-width: 960px) {
  .opogenia-chat-panel.is-inline {
    min-height: 620px;
  }
}

@media (max-width: 820px) {
  .opogenia-chat-shell {
    right: 10px;
    bottom: 10px;
  }

  .opogenia-chat-panel {
    width: calc(100vw - 12px);
    max-width: calc(100vw - 12px);
    height: min(var(--opogenia-floating-height), calc(100vh - 12px));
    border-radius: 24px;
  }

  .opogenia-chat-panel.is-inline {
    min-height: 540px;
    height: min(var(--opogenia-inline-height), calc(100vh - 64px));
    border-radius: 22px;
  }

  .opogenia-chat-header {
    padding: 16px;
  }

  .opogenia-chat-body {
    padding: 58px 14px 0;
  }

  .opogenia-chat-form {
    padding: 12px 14px 14px;
  }

  .opogenia-chat-message-main {
    max-width: calc(100% - 48px);
  }
}

@media (max-width: 560px) {
  .opogenia-chat-fab {
    width: 58px;
    height: 58px;
  }

  .opogenia-chat-fab-icon {
    width: 58px;
    height: 58px;
  }

  .opogenia-chat-header p {
    max-width: 22ch;
  }

  .opogenia-chat-modal {
    width: 100%;
    padding: 18px;
  }

  .opogenia-chat-modal-actions {
    flex-wrap: wrap;
  }

  .opogenia-chat-modal-cancel,
  .opogenia-chat-modal-confirm {
    width: 100%;
  }

  .opogenia-chat-panel-actions {
    top: 12px;
    right: 12px;
  }

  .opogenia-chat-composer {
    flex-direction: row;
    align-items: flex-end;
    gap: 6px;
    padding: 9px 9px 9px 10px;
  }

  .opogenia-chat-actions {
    width: auto;
    justify-content: flex-end;
  }

  .opogenia-chat-messages {
    padding-right: 2px;
  }

  .opogenia-chat-icon-button {
    width: 40px;
    height: 40px;
  }

  .opogenia-chat-send {
    width: 42px;
    height: 42px;
  }

  .opogenia-chat-input {
    min-height: 42px;
    padding-top: 9px;
    padding-bottom: 9px;
  }
}
