/* Page Transition Overlay Styles */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff8700; /* Adjust color as needed */
    opacity: 1; /* Initially hidden invisible */
    transition: opacity 500ms ease;
	z-index: 9999;
}

.page-transition.active {
    opacity: 0;
	pointer-events: none;
}