@import "tailwindcss";

@layer components {
  .prediction-saved {
    animation: prediction-pulse 0.6s ease-out;
  }

  @keyframes prediction-pulse {
    0% {
      background-color: rgb(34 197 94 / 0.4);
      box-shadow: 0 0 20px rgb(34 197 94 / 0.3);
      transform: scale(1.02);
    }
    100% {
      background-color: transparent;
      box-shadow: none;
      transform: scale(1);
    }
  }
}
