/* Custom styles */
body {
    font-family: 'Hind Siliguri', 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Simple animation for the result display */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}