/* Chat Styling */
.chat-box {
  height: 520px;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.chat-bubble-user {
  background-color: var(--brand-orange);
  color: white;
  border-radius: 18px 18px 4px 18px;
  max-width: 80%;
  align-self: flex-end;
}
.chat-bubble-bot {
  background-color: #f1f5f9;
  color: #0f172a;
  border-radius: 18px 18px 18px 4px;
  max-width: 80%;
  align-self: flex-start;
  border: 1px solid #e2e8f0;
}
.chat-bubble-bot p {
  margin-bottom: 0.5rem;
}
.chat-bubble-bot p:last-child {
  margin-bottom: 0;
}
.chat-bubble-bot ul, .chat-bubble-bot ol {
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Prompt Suggestion Card */
.prompt-chip {
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #e2e8f0;
  font-size: 13px;
}
.prompt-chip:hover {
  border-color: var(--brand-orange);
  background-color: #fffaf8;
  transform: translateY(-1px);
}

/* Typing Loader */
.typing-dots span {
  width: 8px;
  height: 8px;
  background-color: #94a3b8;
  border-radius: 50%;
  display: inline-block;
  animation: bounce 1.4s infinite ease-in-out both;
}
.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }
@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}
