:root {
    --primary: #f97316;
    --secondary: #22c55e;
    --text-dark: #1c1917;
    --bg-light: #fafaf9;
    --white: #FFFFFF;
    --font-main: 'Outfit', 'Inter', sans-serif;
    --radius: 12px;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.app-bg-light {
    background: var(--bg-light);
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid #e7e5e4;
    padding: 20px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-secondary {
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-secondary:hover {
    filter: brightness(1.05);
}

.btn-secondary:active {
    transform: scale(0.97);
}

.sidebar {
    width: 280px;
    min-height: 100vh;
    background: #1c1917;
}

.stat-card .count {
    font-size: 2rem;
    font-weight: 700;
}

.stat-card .count.purple {
    color: var(--primary);
}

.stat-card .count.teal {
    color: var(--secondary);
}

.stat-card .count.orange {
    color: var(--primary);
}
