h1 { font-family: Arial, Helvetica, sans-serif; }

/* Voice Recording Animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* Dark mode support for voice notes */
@media (prefers-color-scheme: dark) {
  .voice-bubble {
    background: #1a1a2e !important;
  }
  .voice-progress-bg {
    background: rgba(255, 255, 255, 0.1) !important;
  }
}