/* Loader overlay styles */
#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    /* White background with slight transparency */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Ensure it overlays everything */
}

/* Spinner styles */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #F1262650;
    /* Light grey border */
    border-top: 5px solid #F12626;
    /* Use Bootstrap's primary color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Keyframes for spinner animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.loader-title {
    margin-top: 10px;
    position: absolute;
    font-size: 9px;
    text-align: center;
}