/* src/styles.scss */
@keyframes breathe-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
  }
  50% {
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.35);
  }
}
.bar-fill {
  transition: width linear;
}
.phase-glow {
  animation: breathe-glow 4s ease-in-out infinite;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
