﻿#pageloaddiv {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    /*background: url('//i.stack.imgur.com/FhHRx.gif') no-repeat center center;*/
    background: url('/wwwroot/Images/loading-spinner.gif') no-repeat center center;
    background-color: rgba(255,255,255,0.5);
    opacity: 2;
    position: absolute;
    padding: 7px;
}

#pageloaddiv2 {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    /*background: url('//i.stack.imgur.com/FhHRx.gif') no-repeat center center; */
    background: url('/wwwroot/Images/loading-spinner.gif') no-repeat center center;
    background-color: rgba(255,255,255,0.5);
    opacity: 2;
    position: absolute;
    padding: 7px;
}

#pageloaddiv3 {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    /*background: url('//i.stack.imgur.com/FhHRx.gif') no-repeat center center;*/
    background: url('/wwwroot/Images/loading-spinner.gif') no-repeat center center;
    background-color: rgba(255,255,255,0.5);
    opacity: 2;
    position: absolute;
    padding: 7px;
}


#pageloaddivupper {
    left: 0;
    top: -300px;
    width: 100%;
    height: 100%;
    z-index: 1000;
    /*background: url('//i.stack.imgur.com/FhHRx.gif') no-repeat center center;*/
    background: url('/wwwroot/Images/loading-spinner.gif') no-repeat center center;
    background-color: rgba(255,255,255,0.5);
    opacity: 2;
    position: absolute;
    padding: 7px;
}


.scrolling-alert {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Prevents overflow */
    position: relative; /* Sets positioning context */
    width: 100%; /* Full width of parent container */
    z-index: 10; /* Ensures proper stacking order */
    bottom: 35%;
}

.scrolling-text {
    white-space: nowrap; /* Prevents text wrapping */
    animation: scroll 10s linear infinite; /* Scroll animation */
    position: absolute; /* Keeps the text within its container */
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0); /* Move left */
    }
}
