body {
    font-family: 'Inter', sans-serif;
}

.sidebar-scroll::-webkit-scrollbar,
.table-scroll::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.sidebar-scroll::-webkit-scrollbar-thumb,
.table-scroll::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.28);
    border-radius: 999px;
}

.sidebar-scroll::-webkit-scrollbar-track,
.table-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sidebar-scroll::-webkit-scrollbar {
    display: none;
}

.price-nowrap {
    white-space: nowrap;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.dark .glass-card {
    background: rgba(15, 23, 42, 0.72);
}

#drawer-cart {
    z-index: 50;
}

#cart-drawer-backdrop {
    z-index: 40;
}

.input_search:focus {
    outline: none;
}

.theme-mode-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem;
    border-radius: 0.875rem;
    background: #0f172a;
}

.theme-mode-switch__option {
    width: 3rem;
    height: 2.5rem;
    border: 0;
    border-radius: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    background: transparent;
    transition: background-color 150ms ease, color 150ms ease;
}

.theme-mode-switch__option:hover {
    color: #f8fafc;
}

.theme-mode-switch__option.is-active {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.dark .theme-mode-switch {
    background: #020617;
}
