@tailwind base;
@tailwind components;
@tailwind utilities;

/* Typing cursor animation */
.typing-cursor::after {
  content: '|';
  display: inline-block;
  animation: blink 1s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
