.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--dataopx-card-bkground-color);
    font-family: 'Roboto', sans-serif;
    z-index: 9999;
}

.mud-loading-card {
    background: white;
    border-radius: 8px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    min-width: 350px;
}

.mud-loading-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #424242;
    margin-bottom: 0.5rem;
}

.mud-loading-subtitle {
    color: #757575;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.mud-progress-circular {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

    .mud-progress-circular svg {
        animation: rotate 2s linear infinite;
        width: 60px;
        height: 60px;
    }

    .mud-progress-circular circle {
        stroke: #594ae2;
        stroke-linecap: round;
        stroke-width: 4;
        fill: transparent;
        r: 26;
        cx: 30;
        cy: 30;
        stroke-dasharray: 163;
        stroke-dashoffset: 163;
        animation: dash 1.5s ease-in-out infinite;
    }

.mud-progress-linear {
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.mud-progress-linear-bar {
    height: 100%;
    background: linear-gradient(90deg, #594ae2, #7b1fa2);
    border-radius: 2px;
    width: 0%;
    transition: width 0.4s ease;
}

.mud-loading-status {
    font-size: 0.75rem;
    color: #9e9e9e;
    margin-top: 1rem;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 163;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 82, 163;
        stroke-dashoffset: -41px;
    }

    100% {
        stroke-dasharray: 82, 163;
        stroke-dashoffset: -123px;
    }
}
.loading-details {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #888;
}

.loading-progress-real {
    width: 300px;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.loading-progress-real-bar {
    height: 100%;
    background: linear-gradient(90deg, #1976d2, #42a5f5);
    border-radius: 3px;
    width: 0%;
    transition: width 0.3s ease;
}