/* Base Config */
html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    overscroll-behavior-y: none;
}

/* Custom Scrollbar for sleek UI */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.4); /* emerald-500 transparent */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 185, 129, 0.6);
}

.dark ::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.3);
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 185, 129, 0.5);
}

/* Navbar Scrolled Effect (applied via JS) */
.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
}

.dark .navbar-scrolled {
    background-color: rgba(17, 24, 39, 0.85) !important; /* gray-900 */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2) !important;
}

/* Ensure Sasbuzz widget bubble is visible and floating correctly if needed */
#sb-widget-button {
    z-index: 50 !important;
}
