﻿.loading-body {
    background-color: var(--rz-base-background-color);

}

.loading-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    height: 100vh;

}

#Layer_1 {
    width: 120px;
    height: 120px;
}

.st0 {
    fill: #3B82F6;
    opacity: 0;
    animation: fadeInOut 2s infinite;
}

#path1 { animation-delay: 0s; }
#path2 { animation-delay: 0.4s; }
#path3 { animation-delay: 0.8s; }

@keyframes fadeInOut {
    0% { opacity: 0.2; }
    50% { opacity: 1; }
    100% { opacity: 0.2; }
}

.loading-content {
    text-align: center;
}

.loading-title {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.loading-subtitle {
    color: #93C5FD;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.loading-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #3B82F6;
    border-radius: 50%;
    animation: bounce 1.4s infinite;
}

.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
