/* ============================================================
   Micro-Commitment Calculator - Tool-Specific Overrides
   ============================================================
   Shared styles loaded from:
     /shared/brand.css (design system)
     /shared/css/quiz-screens.css (all quiz screen styles)
   This file contains ONLY styles unique to this tool.
   ============================================================ */

/* Gauge needle animation (welcome screen icon) */
.gauge-needle {
  transform-origin: 40px 40px;
  animation: needleSweep 2s ease-in-out infinite alternate;
}

@keyframes needleSweep {
  0% { transform: rotate(-60deg); }
  100% { transform: rotate(60deg); }
}
