/* Custom styles to complement Tailwind */
body {
    scroll-behavior: smooth;
}

/* Animation for the demo button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(79, 70, 229, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

#demo-button {
    animation: pulse 2s infinite;
}

#demo-button:hover {
    animation: none;
}

/* Custom styles for the mobile menu */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Demo modal transition */
#demo-modal {
    transition: opacity 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}