﻿.loading-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2E86AB;
    margin-bottom: 10px;
}

.full-container {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    height: 100vh;
}

.loading-subtitle {
    font-size: 0.9rem;
    color: #6C757D;
    margin-bottom: 20px;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: all 0.3s ease;
}

.progress-container {
    width: 100%;
    height: 6px;
    background: #E9ECEF;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-bar {
    height: 100%;
    background: #2E86AB;
    border-radius: 3px;
    width: 0%;
    transition: width 0.3s ease;
    animation: progressAnimation 3s ease-in-out infinite;
}

.loading-state {
    padding: 40px;
    text-align: center;
    background: white;
    border-radius: 12px;
    margin: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

    .loading-state h3 {
        color: #2E86AB;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }

.main-spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    position: relative;
}

.spinner-ring {
    width: 100%;
    height: 100%;
    border: 4px solid #E9ECEF;
    border-top: 4px solid #2E86AB;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
}

    .spinner-ring.secondary {
        border-top-color: #2E86AB;
        animation-duration: 1.5s;
        animation-direction: reverse;
        width: 60px;
        height: 60px;
        top: 10px;
        left: 10px;
    }

    .spinner-ring.tertiary {
        border-top-color: #FFC107;
        animation-duration: 2s;
        width: 40px;
        height: 40px;
        top: 20px;
        left: 20px;
    }

.loading-container {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
    transform: scale(0.8);
    transition: all 0.3s ease;
    overflow-y: auto;
}

.loading-overlay.active .loading-container {
    transform: scale(1);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

@media (max-width: 768px) {
    .loading-container {
        padding: 30px 20px;
    }

    .main-spinner {
        width: 60px;
        height: 60px;
    }
}
