/* ========== Variables ========== */
:root {
    --bg: #f5f5f7;
    --bg2: #ffffff;
    --bg3: #fafafa;
    --sidebar-bg: #000000;
    --header-bg: #000000;
    --accent: #6366f1;
    --accent2: #818cf8;
    --green: #10b981;
    --red: #ef4444;
    --yellow: #f59e0b;
    --text: #1a1a1a;
    --text2: #666666;
    --radius: 10px;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --border: #e0e0e0;
}

/* ========== Reset & Base ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}