#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 74%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay {
    text-align: center;
    color: #6a5acb;
    font-weight: 600;
}

.dots-loading {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.dots-loading span {
    width: 10px;
    height: 10px;
    background-color: #6a5acb;
    border-radius: 50%;
    animation: dots 1.5s infinite;
}

.dots-loading span:nth-child(1) {
    animation-delay: 0s;
}

.dots-loading span:nth-child(2) {
    animation-delay: 0.2s;
}

.dots-loading span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dots {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}