/* ============================================================
   RESET
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }
a { color: inherit; }
ul { list-style: none; }


/* ============================================================
   VARIABLES
   ============================================================ */

:root {
  --bg-base: #0e0e10;
  --bg-sidebar: #141416;
  --bg-card: #1c1c1f;
  --bg-card-hover: #222226;
  --bg-input: #18181b;
  --border: #2a2a2e;
  --border-hover: #3a3a3f;
  --text-primary: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-muted: #52525b;
  --accent-gym: #4ade80;
  --accent-study: #60a5fa;
  --accent-project: #a78bfa;
  --accent-lang: #fb923c;
  --accent-schedule: #fbbf24;
  --accent-dashboard: #34d399;
  --danger: #f87171;
  --success: #4ade80;
  --warning: #fbbf24;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
}
