:root {
    /* Light Theme */
    --color-base: #f8fafc;
    /* slate-50 */
    --color-panel: #ffffff;
    --color-border: #e2e8f0;
    /* slate-200 */
    --color-text: #0f172a;
    /* slate-900 */
    --color-muted: #64748b;
    /* slate-500 */
    --color-primary: #10b981;
    /* emerald-500 */
}

.dark {
    /* Dark Theme */
    --color-base: #0f172a;
    /* slate-900 */
    --color-panel: #1e293b;
    /* slate-800 */
    --color-border: #334155;
    /* slate-700 */
    --color-text: #f8fafc;
    /* slate-50 */
    --color-muted: #94a3b8;
    /* slate-400 */
    --color-primary: #34d399;
    /* emerald-400 */
}

/* Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.4);
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 163, 184, 0.8);
}

/* Glass UI */
.glass-nav {
    background: rgba(var(--color-panel), 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Tab Active State */
.toggle-active {
    background: var(--color-panel);
    color: var(--color-text);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Utility Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-slide-down {
    animation: slideDown 0.3s ease-out forwards;
}