﻿/* Spinner Container Overlay */
.loader-overlay {
    position: fixed; /* Stays in the same position when scrolling */
    top: 0;
    left: 0;
    width: 100vw; /* Full width */
    height: 100vh; /* Full height */
    background-color: rgba(0, 0, 0, 0.1); /* Slightly dark background with 10% opacity */
    display: flex; /* Center the spinner */
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it is on top */
    backdrop-filter: blur(2px); /* Optional: Adds a blur effect to the background */
}

/* Spinner */
.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
    color: #6d6d6d; /* Spinner color */
}

    .lds-dual-ring:after {
        content: " ";
        display: block;
        width: 64px;
        height: 64px;
        margin: 8px;
        border-radius: 50%;
        border: 6.4px solid currentColor;
        border-color: currentColor transparent currentColor transparent;
        animation: lds-dual-ring 1.2s linear infinite;
    }

/* Spinner Animation */
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
