/* ═══════════════════════════════
   GLOBAL — reset + variables
═══════════════════════════════ */

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

:root {
  --primary: #0052cc;
  --primary-hover: #0747a6;
  --sidebar-bg: #f4f5f7;
  --sidebar-active: #e6edff;
  --sidebar-active-text: #0052cc;
  --text-main: #172b4d;
  --text-subtle: #6b778c;
  --text-dark: #1a1a2e;
  --white: #ffffff;
  --border: #dfe1e6;
  --input-bg: #fafafa;
  --badge-bg: #e6edff;
  --badge-text: #0052cc;
  --row-hover: #f4f5f7;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  height: 100vh;
  overflow: hidden;
  display: flex;
}

@media (max-width: 768px) {
  body {
    overflow: auto;
    height: auto;
    min-height: 100vh;
  }
}