/* Keep CSS minimal: most styling is Tailwind. */

/* Smooth scroll in chat */
#chat {
  scroll-behavior: smooth;
}

/* Subtle animated pulse for recording */
.recording #pulse {
  display: inline-block;
  animation: pulse 1s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.65; }
  100% { transform: scale(1); opacity: 1; }
}

