/* Custom Stylesheet untuk Dashboard Posyandu Dusun Jaten */

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Transisi tampilan visual */
section {
  animation: fadeIn 0.3s ease-in-out;
}

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