@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap);
*,
:after,
:before {
  margin: 0;
  padding: 0;
}
#root {
  min-height: 100vh;
}
:root {
  --navy: #2d3a8c;
  --navy-deep: #1e2d7d;
  --canvas: #eef1ff;
  --line: #dde0f0;
  --line-soft: #eef0f8;
  --text: #334155;
  --muted: #9aa0c8;
  --success: #4ade80;
  --white: #fff;
}
*,
:after,
:before {
  box-sizing: border-box;
}
body {
  background: #fff;
  font-family: Inter, sans-serif;
  margin: 0;
  min-height: 100vh;
}
.chat-fab {
  align-items: center;
  background: #0000;
  border: 0;
  border-radius: 50%;
  bottom: 28px;
  box-shadow: 0 10px 24px #0000001f;
  color: #fff;
  color: var(--white);
  cursor: pointer;
  display: flex;
  height: 58px;
  justify-content: center;
  position: fixed;
  right: 28px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
  width: 58px;
  z-index: 1000;
}
.chat-fab.open {
  background: #2d3a8c;
  background: var(--navy);
  box-shadow: 0 18px 40px #2d3a8c52;
}
.chat-fab:hover {
  box-shadow: 0 22px 48px #2d3a8c61;
  transform: translateY(-2px) scale(1.03);
}
.chat-fab svg {
  height: 24px;
  width: 24px;
}
.chat-fab .fab-logo {
  border-radius: 50%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.22s,
    transform 0.22s;
  width: 100%;
}
.chat-fab.open .fab-logo {
  pointer-events: none;
}
.chat-fab .icon-close,
.chat-fab.open .fab-logo {
  opacity: 0;
  position: absolute;
  transform: scale(0.5);
}
.chat-fab .icon-close {
  transition:
    opacity 0.22s,
    transform 0.22s;
}
.chat-fab.open .icon-close {
  opacity: 1;
  transform: scale(1);
}
.proactive-greeting {
  animation: float-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  background: #fff;
  background: var(--white);
  border: 1px solid #dde0f0;
  border: 1px solid var(--line);
  border-radius: 20px 20px 0 20px;
  bottom: 35px;
  box-shadow: 0 10px 25px #2d3a8c26;
  cursor: pointer;
  max-width: 250px;
  padding: 12px 18px;
  position: fixed;
  right: 100px;
  transition: transform 0.2s;
  z-index: 999;
}
.proactive-greeting:hover {
  box-shadow: 0 14px 30px #2d3a8c33;
  transform: translateY(-2px);
}
.proactive-greeting p {
  color: #334155;
  color: var(--text);
  font-size: 9px;
  line-height: 1.4;
  margin: 0 0 4px;
}
.proactive-greeting p:last-child {
  margin: 0;
}
.proactive-greeting p strong {
  color: #1e2d7d;
  color: var(--navy-deep);
}
@keyframes float-in {
  0% {
    opacity: 0;
    transform: translateX(20px) translateY(10px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}
.chat-window {
  animation: pop-in 0.26s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  background: #fff;
  background: var(--white);
  border: 0.5px solid #dde0f0;
  border: 0.5px solid var(--line);
  border-radius: 22px;
  bottom: 98px;
  box-shadow: 0 28px 70px #2d3a8c2e;
  display: flex;
  flex-direction: column;
  height: min(690px, calc(100vh - 120px));
  overflow: hidden;
  position: fixed;
  right: 28px;
  transform-origin: bottom right;
  width: min(360px, calc(100vw - 24px));
  z-index: 999;
}
.chat-window.closing {
  animation: pop-out 0.2s ease forwards;
}
@keyframes pop-in {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(18px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes pop-out {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  to {
    opacity: 0;
    transform: scale(0.92) translateY(18px);
  }
}
.chat-header {
  background: #2d3a8c;
  background: var(--navy);
  gap: 12px;
  justify-content: space-between;
  padding: 14px 16px;
}
.chat-header,
.header-left {
  align-items: center;
  display: flex;
}
.header-left {
  gap: 10px;
  min-width: 0;
}
.header-avatar {
  align-items: center;
  background: #ffffff26;
  border-radius: 10px;
  color: #fff;
  color: var(--white);
  display: flex;
  font-size: 12px;
  font-weight: 600;
  height: 36px;
  justify-content: center;
  overflow: hidden;
  width: 36px;
}
.header-avatar img {
  background: #fffffff5;
  border-radius: 9px;
  height: 94%;
  object-fit: contain;
  padding: 1px;
  width: 94%;
}
.header-name {
  color: #fff;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.header-status {
  align-items: center;
  color: #a8b4ff;
  display: flex;
  font-size: 11px;
  gap: 5px;
  margin-top: 3px;
}
.status-dot {
  background: #4ade80;
  background: var(--success);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}
.header-controls {
  display: flex;
  gap: 8px;
}
.ctrl-btn {
  align-items: center;
  background: #ffffff1f;
  border: 0;
  border-radius: 50%;
  color: #fff;
  color: var(--white);
  cursor: pointer;
  display: flex;
  height: 26px;
  justify-content: center;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  width: 26px;
}
.ctrl-btn:hover {
  background: #fff3;
  transform: translateY(-1px);
}
.ctrl-btn svg {
  height: 13px;
  width: 13px;
}
.chat-body {
  background: #eef1ff;
  background: var(--canvas);
}
.chat-body,
.chat-messages {
  display: flex;
  flex: 1 1;
  flex-direction: column;
  min-height: 0;
}
.chat-messages {
  gap: 12px;
  overflow-y: auto;
  padding: 18px 16px 14px;
  scrollbar-color: #c7cdee #0000;
  scrollbar-width: thin;
}
.chat-messages::-webkit-scrollbar {
  width: 4px;
}
.chat-messages::-webkit-scrollbar-thumb {
  background: #c7cdee;
  border-radius: 999px;
}
.section-label {
  color: #6370c0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0;
  text-transform: uppercase;
}
.msg-row {
  align-items: flex-end;
  display: flex;
  gap: 10px;
}
.msg-row.user {
  justify-content: flex-end;
}
.msg-stack {
  display: flex;
  flex-direction: column;
  max-width: 84%;
}
.bot-avatar {
  align-items: center;
  border: 0.5px solid #dde0f0;
  border: 0.5px solid var(--line);
  border-radius: 50%;
  color: #2d3a8c;
  color: var(--navy);
  display: flex;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  height: 30px;
  justify-content: center;
  overflow: hidden;
  width: 30px;
}
.bot-avatar,
.bot-avatar img {
  background: #fff;
  background: var(--white);
}
.bot-avatar img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.bubble {
  background: #fff;
  background: var(--white);
  border: 0.5px solid #dde0f0;
  border: 0.5px solid var(--line);
  border-radius: 4px 14px 14px 14px;
  box-shadow: 0 10px 24px #4d5ca30f;
  color: #334155;
  color: var(--text);
  display: inline-block;
  max-width: 100%;
  padding: 12px 14px;
}
.bubble.user {
  background: linear-gradient(135deg, #2d3a8c, #4254b9);
  background: linear-gradient(135deg, var(--navy), #4254b9);
  border-color: #0000;
  border-radius: 14px 4px 14px 14px;
  color: #fff;
  color: var(--white);
}
.bubble.error {
  background: #fff7f7;
  border-color: #f2b5b5;
  color: #b42318;
}
.bubble-title {
  color: #1e2d7d;
  color: var(--navy-deep);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
}
.bubble.error .bubble-title,
.bubble.user .bubble-title {
  color: inherit;
}
.bubble-text {
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}
.bubble strong {
  font-weight: 700;
}
.msg-meta {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 8px;
}
.user-meta {
  justify-content: flex-end;
}
.msg-time {
  color: #9aa0c8;
  color: var(--muted);
  font-size: 11px;
}
.msg-actions {
  display: flex;
  gap: 6px;
}
.msg-action-btn {
  align-items: center;
  background: #0000;
  border: 0;
  border-radius: 6px;
  color: #94a3b8;
  cursor: pointer;
  display: flex;
  height: 24px;
  justify-content: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  width: 24px;
}
.msg-action-btn:hover {
  background: #2d3a8c14;
  color: #2d3a8c;
  color: var(--navy);
}
.msg-action-btn svg {
  height: 13px;
  width: 13px;
}
.msg-action-btn.liked {
  color: #2d3a8c;
  color: var(--navy);
}
.msg-action-btn.disliked {
  color: #c2410c;
}
.typing-bubble {
  padding: 10px 14px;
}
.typing-indicator {
  align-items: center;
  display: flex;
  gap: 4px;
}
.typing-dot {
  animation: bounce 1.15s ease-in-out infinite;
  background: #98a1d7;
  border-radius: 50%;
  height: 7px;
  width: 7px;
}
.typing-dot:nth-child(2) {
  animation-delay: 0.15s;
}
.typing-dot:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes bounce {
  0%,
  60%,
  to {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-4px);
  }
}
.chat-input-area {
  background: #fff;
  background: var(--white);
  border-top: 0.5px solid #eef0f8;
  border-top: 0.5px solid var(--line-soft);
  padding: 10px 12px 12px;
}
.composer-shell {
  background: #f5f7ff;
  border: 0.5px solid #dde0f0;
  border: 0.5px solid var(--line);
  border-radius: 24px;
  gap: 8px;
  padding: 8px 10px;
}
.composer-shell,
.utility-btn {
  align-items: center;
  display: flex;
}
.utility-btn {
  background: #0000;
  border: 0;
  border-radius: 50%;
  color: #7984b8;
  cursor: pointer;
  height: 30px;
  justify-content: center;
  transition:
    background 0.18s ease,
    color 0.18s ease;
  width: 30px;
}
.utility-btn:hover {
  background: #2d3a8c14;
  color: #2d3a8c;
  color: var(--navy);
}
.utility-btn svg {
  height: 18px;
  width: 18px;
}
.hidden-file-input {
  display: none;
}
.chat-input {
  background: #0000;
  border: 0;
  color: #334155;
  color: var(--text);
  flex: 1 1;
  font: inherit;
  font-size: 13px;
  min-width: 0;
  outline: none;
}
.chat-input::placeholder {
  color: #9aa0c8;
  color: var(--muted);
}
.send-btn {
  align-items: center;
  background: #2d3a8c;
  background: var(--navy);
  border: 0;
  border-radius: 50%;
  color: #fff;
  color: var(--white);
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 26px;
  justify-content: center;
  transition:
    transform 0.18s ease,
    background 0.18s ease;
  width: 26px;
}
.send-btn:hover:not(:disabled) {
  background: #24347f;
  transform: translateY(-1px);
}
.send-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.send-btn svg {
  height: 12px;
  width: 12px;
}
.chat-disclaimer {
  color: #9aa0c8;
  color: var(--muted);
  font-size: 11px;
  margin: 6px 0 0;
  text-align: center;
}
.chat-disclaimer a {
  color: #2d3a8c;
  color: var(--navy);
  text-decoration: none;
}
.chat-disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 640px) {
  .chat-window {
    bottom: 84px;
    height: 480px;
    max-height: calc(100vh - 104px);
    right: 16px;
    width: calc(100vw - 32px);
  }
  .chat-fab {
    bottom: 16px;
    height: 52px;
    right: 16px;
    width: 52px;
  }
  .proactive-greeting {
    bottom: 22px;
    max-width: 220px;
    padding: 10px 14px;
    right: 80px;
  }
}
/*# sourceMappingURL=main.7f3ca440.css.map*/
