/* Light theme - default and only theme */
:root {
  --bg: #f5f7fb;
  --panel: #ffffff;
  --muted: #5b6270;
  --text: #0e1320;
  --accent: #006dff;
  --on-accent: #ffffff; /* text color placed on top of accent */
  --warn: #b4690e;
  --shadow: rgba(0, 0, 0, 0.08);
  /* Form control borders (light theme) */
  --input-border: rgba(0, 0, 0, 0.12);
  --input-border-hover: rgba(0, 0, 0, 0.18);
  /* Form control backgrounds (light theme) */
  --input-bg: rgba(0, 0, 0, 0.04);
  --input-bg-hover: rgba(0, 0, 0, 0.07);

  /* RGB companions */
  --bg-rgb: 245,247,251;
  --panel-rgb: 255,255,255;
  --ai-results-bg: color-mix(in srgb, rgba(var(--panel-rgb), 1) 96%, rgba(0,0,0,0.02) 4%);
}
