/* Custom styles to complement Tailwind CSS */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
}

/* Ensure modal logic */
#modal-backdrop {
    /* Glassmorphism for modal overlay */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Custom shadow improvements */
.shadow-primary-glow {
    box-shadow: 0 0 20px -5px rgba(34, 197, 94, 0.4);
}

.shadow-primary-glow-lg {
    box-shadow: 0 0 30px -5px rgba(34, 197, 94, 0.6);
}

/* Base custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}