/* Clean, simple background - easy on the eyes */

body {
  position: relative;
  overflow-x: hidden;
  background: #f8f9fa; /* Very light gray - professional and clean */
}

/* Optional: Very subtle gradient for depth without distraction */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(248, 249, 250, 0) 30%,
    rgba(248, 249, 250, 0) 70%,
    rgba(255, 255, 255, 0.4) 100%
  );
  pointer-events: none;
}