.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
}

.loading-gif {
    width: 340px;
    height: 340px;
    object-fit: contain;
    margin-bottom: -5px;
}

.loading-text {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff; 
    white-space: nowrap;
}

/* loading-status removed in favor of inline styles in HTML, but keeping for safety */
.loading-status {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.progress-bar-container {
    width: 380px;
    height: 16px; /* Increased height */
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    transition: width 0.3s ease;
    border-radius: 8px;
}
}