@import "tailwindcss";

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@layer utilities {
  .animate-bounce-short {
    animation: bounce-short 0.5s ease-out;
  }

  @keyframes bounce-short {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  .focus-ring-success {
    @apply ring-4 ring-green-500/20 border-green-500 shadow-lg shadow-green-500/10;
    transition: all 0.3s ease;
  }

  /* Remove focus outline from charts */
  .recharts-wrapper *:focus {
    outline: none !important;
  }
}