/* Background pattern styles */

.background-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
    repeating-linear-gradient(0deg, #ffffff 0px, #ffffff 100px, #e0f2fe 100px, #e0f2fe 200px),
    repeating-linear-gradient(90deg, #ffffff 0px, #ffffff 100px, #e0f2fe 100px, #e0f2fe 200px);
  z-index: -2;
  pointer-events: none;
}

body {
  background-color: #ffffff;
}

