/* AI Scribe Button Attention Animation */
@keyframes glow {
  0%, 100% { 
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); 
  }
  50% { 
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1), 0 0 0 3px rgba(59, 130, 246, 0.3); 
  }
}

.ai-scribe-attention {
  animation: glow 3s ease-in-out infinite;
}

.ai-scribe-attention:hover,
.ai-scribe-attention:focus {
  animation: none !important;
}