/* SRA Custom Styles */

:root {
  --sra-green: #1B6E33;
  --sra-yellow: #F2CB05;
  --sra-dark: #0f2a1a;
}

/* Custom animations and utilities */
.fade-in {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Additional custom styles can be added here */
