/* Additional styles specific to the practice page */
/* (Most styles are in style.css; this file adds practice-only overrides) */

.practice-container .scenario-card {
  animation: fadeSlideIn 0.3s ease;
}

.practice-container .scorecard {
  animation: fadeSlideIn 0.4s ease;
}

/* Pulsing dot for active step */
.step-dot.active .dot {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(59, 130, 246, 0); }
}
