/**
 * THEME: Neutral
 * Clean, minimal theme with transparent header
 * Same as DAICMS but with transparent header for special use cases
 *
 * IMPORTANT: This file ONLY contains color variable overrides.
 * All component styles are in design-system.css
 *
 * Usage:
 *   <link rel="stylesheet" href="design-system.css">
 *   <link rel="stylesheet" href="theme-neutral.css">
 */

:root {
  /* Brand Colors (same as DAICMS default) */
  --primary: #667eea;
  --primary-hover: #5568d3;
  --accent: #764ba2;
  --accent-hover: #6a4391;

  /* Focus Ring */
  --focus-ring: rgba(102, 126, 234, 0.15);
  --input-focus: #667eea;

  /* Table */
  --table-row-hover: rgba(102, 126, 234, 0.04);
}

/* Neutral-specific: transparent header */
.header {
  background: transparent !important;
  backdrop-filter: none;
  box-shadow: none;
  border-bottom: 1px solid var(--border-color);
}
