:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #6b7280;
  --brand: #1b6eea;
  --brand-ink: #0b3b8f;
  --accent: #e6f0ff;
  --radius: 16px;
  --shadow: 0 2px 14px rgba(16, 24, 40, 0.08);
  --good: #16a34a;
  --warn: #f59e0b;
  --bad: #ef4444;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* V-select overrides */
.v-select .vs__dropdown-toggle {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}
.v-select .vs__search {
  /* display: none; */
  margin: 0;
}
