/* PFVCC Global Styles */
body {
  background-image: url("/static/turf-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fff;
  font-family: "Segoe UI", Roboto, sans-serif;
}

/* Dark overlay to improve readability */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

/* Scrollbar color for style points */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: rgba(50, 100, 50, 0.8);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(80, 150, 80, 1);
}
