:root {
    --bg-deep: #0f172a;
    --bg-card: #1e293b;
    --accent: #38bdf8;
    --accent-glow: rgba(56, 189, 248, 0.3);
    --text-main: #f1f5f9;
    --text-dim: #94a3b8;
    --success: #22c55e;
    --running: #f59e0b;
    --pending: #64748b;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --border: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
}

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

::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
}