/* /public/Eco-G-Xact/styles/theme.css */

:root[data-theme="dark"] {
  --bg: #05060a;
  --panel: #0b0f1a;
  --accent: #ff3366;
  --accent-soft: #ff9ac0;
  --text-main: #f5f7ff;
  --text-soft: #a5b0d8;
  --border: #1b2235;
  --glow: 0 0 25px rgba(255, 51, 102, 0.55);
  --radius: 18px;
}

:root[data-theme="lite"] {
  --bg: #f7f8ff;
  --panel: #ffffff;
  --accent: #ff3366;
  --accent-soft: #ff5c8a;
  --text-main: #1a1d29;
  --text-soft: #4a4f63;
  --border: #d9dcee;
  --glow: 0 0 18px rgba(255, 51, 102, 0.25);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #151a2b 0, var(--bg) 55%);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
