/* Dashboard-only utilities — color tokens come from SSR critical CSS in root layout */
html[data-falcgo-dashboard].theme-classic {
  --font-family: "Inter", system-ui, sans-serif;
  --border-radius: 6px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

html[data-falcgo-dashboard].theme-classic .bg-gradient {
  background: linear-gradient(135deg, #00a9ff, #c8911e);
}

html[data-falcgo-dashboard].theme-classic .border-gradient {
  border-image: linear-gradient(135deg, #00a9ff, #c8911e) 1;
}
