:root,[data-theme="dark"]{--bg:#0F0F12;--fg:#ffffff;--muted:rgba(255,255,255,.70);--line:rgba(255,255,255,.10);--surface:#141418;--surface2:#131318;--chip:rgba(255,255,255,.10)}
[data-theme="light"]{--bg:#ffffff;--fg:#0E0E11;--muted:rgba(0,0,0,.60);--line:rgba(0,0,0,.08);--surface:#F7F8FA;--surface2:#ffffff;--chip:rgba(15,15,18,.06)}
body{background:var(--bg);color:var(--fg); font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;}
.theme-surface{background:var(--surface)!important}
.theme-surface2{background:var(--surface2)!important}
.theme-line{border-color:var(--line)!important}
.theme-muted{color:var(--muted)!important}z
.theme-chip{background:var(--chip)!important}
.hide-scroll::-webkit-scrollbar{display:none}
.hide-scroll{scrollbar-width:none}
.bg-black-60{background:rgba(0,0,0,.60)!important}
/* Use ASCII arrow to avoid sandbox TSX mis-detection */
.arrow:after{content:"\2192"; display:inline-block; margin-left:.25rem}

/* Compact scrollbar (good default) */
.compact-scrollbar {
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: rgba(100,100,100,0.75) rgba(0,0,0,0.04);

    /* make sure the element can show scrollbar */
    /* overflow: auto; <-- set on the element via Tailwind like overflow-auto */
}

/* Webkit (Chrome, Edge, Safari) */
.compact-scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px; /* horizontal */
}

.compact-scrollbar::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.04);
    border-radius: 8px;
}

.compact-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(100,100,100,0.45);
    border-radius: 8px;
    border: 2px solid rgba(0,0,0,0.06); /* gives nice padding look */
}

.compact-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(70,70,70,0.6);
}

html[data-theme="dark"] {
    .compact-scrollbar {
        scrollbar-color: rgba(50,213,131, 1) rgba(0,0,0,0.04);
    }
}

.uber {
}

.additional-heading,
.leading-tight {
    color: white;
}
*[data-theme="dark"] .additional-heading,
*[data-theme="dark"] .leading-tight {
    color: white;
}
.theme-chip {
    background: white;
    color: black;
}
*[data-theme="dark"] .theme-chip {
    background: rgba(255,255,255,.2);
    color: white;
}

*[data-theme="dark"] .category-item {
    border-color: rgba(255,255,255,.2);
}
*[data-theme="dark"] .category-item.border-primary {
    border-color: rgba(50,213,131, 1) !important;
}
