:root {
  --bg: #CCCCFF; /* Updated background color */
  --card: #141a22;
  --text: #0b0f14; /* Adjusted text color for contrast on light bg */
  --muted: #555;   /* Adjust muted color for visibility */
  --accent: #4da3ff;
  --danger: #ff5d5d;
  --ok: #57d38c;
  --border: #1f2732;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);  /* Uses the new light background */
  color: var(--text);
}

/* Optional: Adjust card color to contrast with new background */
.card {
  background: #ffffff;  /* light card to match light page */
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  margin: 12px 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Footer background adjustment */
.footer {
  background-color: #CCCCFF; /* Match page background */
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
  margin-top: 30px;
  border-top: 2px solid #ddd;
}

.footer a {
  color: #007bff;
  text-decoration: none;
  margin: 0 5px;
}

.footer a:hover {
  text-decoration: underline;
}
