
    html {
        scroll-behavior: smooth;
    }

    .scrollbar-hide.svelte-1d4ro5h {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .scrollbar-hide.svelte-1d4ro5h::-webkit-scrollbar {
        display: none;
    }

    .animate-fade-in.svelte-1d4ro5h {
        animation: svelte-1d4ro5h-fadeIn 0.3s ease-in-out;
    }

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