/* ═══════════════════════════════════════════════════════════════
   ARIA TYPING CURSOR — Optional
   Add this to your style.css or aria-chat.css.
   Shows a subtle blinking cursor while Aria is typing.
   ═══════════════════════════════════════════════════════════════ */

.aria-message.typing-active::after {
  content: '▍';
  color: rgba(0, 255, 245, 0.45);
  animation: ariaCursorBlink 0.8s infinite;
  margin-left: 1px;
  font-weight: 300;
}

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