/* Custom scrollbar */
            ::-webkit-scrollbar {
                width: 8px;
            }
            ::-webkit-scrollbar-track {
                background: #f1f1f1;
            }
            ::-webkit-scrollbar-thumb {
                background: #c7d2fe;
                border-radius: 4px;
            }
            ::-webkit-scrollbar-thumb:hover {
                background: #818cf8;
            }
            /* Custom animations */
            @keyframes float {
                0%,
                100% {
                    transform: translateY(0);
                }
                50% {
                    transform: translateY(-10px);
                }
            }
            .animate-float {
                animation: float 4s ease-in-out infinite;
            }
