/*
 * progress_styles_bar.css — Build Launch Apply Page
 * Loading spinner and progress bar, BL-branded.
 */

#loadingSpinner {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.82);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loadingSpinner .spinner {
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #B4B671;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    animation: spin 0.9s linear infinite;
    margin-bottom: 18px;
}

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#progressStatus {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
}

#progressBarWrap {
    width: 260px;
    height: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    overflow: hidden;
}

#progressBar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4F6E4C, #B4B671);
    border-radius: 10px;
    transition: width 0.3s ease;
}

#progressText {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    margin-top: 8px;
}

@media (max-width: 540px) {
    #progressStatus { font-size: 13px; padding: 0 20px; }
}