/* Full-screen overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Ensure it's on top */
}

/* Dots container */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* Space between the dots */
}

/* Individual dot */
.dot {
    width: 16px;
    /* Dot size */
    height: 16px;
    background-color: white;
    /* Dot color */
    border-radius: 50%;
    /* Makes it a circle */
    animation: blink 1.5s infinite;
}

/* Animation delays for each dot */
.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.3s;
}

.dot:nth-child(3) {
    animation-delay: 0.6s;
}

/* Blinking animation */
@keyframes
blink {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }
}