/* 
 * Custom background styles for the application
 * Created to centralize background image management
 */

/* Main background style for all pages that need the standard background */
.custom-app-background {
  background-image: url("../pix/icons/Background.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* If you need variations of the background, add them below */
.custom-app-background-light {
  background-image: url("../pix/icons/Background.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.8; /* Example of a variation */
}
