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

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

::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

/* Smooth anchor scrolling offset for fixed header */
html {
    scroll-padding-top: 100px; /* Adjust based on header height */
}

/* Mobile Sticky Bar Safe Area */
@media (max-width: 768px) {
    body {
        padding-bottom: 60px;
    }
}