
/* Custom styles can go here if needed beyond Tailwind */

/* Chatbot animation typing effect (optional custom styles) */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

.typing {
  overflow: hidden;
  white-space: nowrap;
  animation: typing 2s steps(30, end);
}
