html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #10b981;
    border-radius: 999px;
}

.filter-bar {
    transition: all 0.25s ease;
}

.filter-bar.shrink {
    padding: 8px 12px;
    transform: scale(0.98);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

#filterContent {
    transition: all 0.3s ease;
}

#filterContent.hidden-mobile {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
