/* Page transition animations to fake SPA behavior and remove jarring jumps */
body {
    animation: smoothFadeIn 0.15s ease-out forwards;
}

@keyframes smoothFadeIn {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}
