/* fsl-styles.css */
.fsl-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black; /* Change this to your desired color */
    z-index: 9999;
    transition: opacity 0.5s ease; /* Fade effect duration */
    opacity: 1;
}

.fsl-loader.hidden {
    opacity: 0;
    pointer-events: none;
}