:root {
    --bg-deep: #020617;
    --bg-side: #0f172a;
    --accent: #10b981;
    --accent-glow: rgba(16, 185, 129, 0.2);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass: rgba(30, 41, 59, 0.7);
    --border: rgba(255, 255, 255, 0.05);
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: 'Outfit', 'Inter', sans-serif;
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    color: var(--text-muted);
}

.sidebar-item.active {
    background: var(--accent-glow);
    color: var(--accent);
}

.sidebar-item:hover:not(.active) {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: relative;
}

.status-online {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.status-offline {
    background: #64748b;
}

.card {
    background: var(--bg-side);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 1.5rem;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-deep);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--accent-glow);
}

.tab-btn {
    padding-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}
