/* Fullscreen Dynamic Transition Overlay */
.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* Dynamically inherits theme background color */
    background-color: var(--bg-color); 
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Forces transition overlay to fade in/out cleanly */
.page-overlay.active {
    opacity: 1;
    pointer-events: all;
}