body {
    background-color: var(--bg-color);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #ddd6fe; /* Violet 200 */
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #c4b5fd; /* Violet 300 */
}

/* Filter Chips Scroll Utils */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
