﻿#loaderContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    font-size: 16px; /* Adjust for mobile */
    font-family: Arial, sans-serif;
    z-index: 9999;
    display: none; /* Hidden by default */
    text-align: center;
    padding: 20px;
}

/* Loader Spinner */
.spinner {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    width: 35px; /* Smaller for mobile */
    height: 35px;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

/* Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
