.pageLoader {
	position: fixed;
	z-index: 1000; 
	top: 0;
	right: 0;
	bottom: 0; 
	left: 0;
	background-color: rgba(255, 255, 255, 1); 
}

 /* Link Loader styles */
.customLoader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    z-index: 9999; /* Highest layer */
    display: none; /* Hidden initially */
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5em;
}

/* Dimming background when loader is visible */
.dimmedContent {
    position: relative;
    z-index: 0.9; /* Background lower than loader */
}