/* Mobile Category Active Indicator Animation */
.mobile-category-link {
    transition: color 0.2s ease;
}

.mobile-category-link .category-indicator {
    transition: opacity 0.2s ease;
}

/* html {
    scroll-behavior: smooth;
} */

/* Hide scrollbar for horizontal scrolling but keep functionality */
.overflow-x-auto::-webkit-scrollbar {
    display: none;
}
.overflow-x-auto {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Dynamic Sticky Top for Sidebars */
.sidebar-sticky {
    position: sticky;
    top: var(--sticky-top, 24px); 
    z-index: 30;
}
