.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff; /* Choose your desired background color */
    z-index: 9999; /* Ensure the loader is on top of other content */
    opacity: 0.98;
}

.loader img {
    max-width: 100%;
    max-height: 100%;
}

