:root {
    --brand-blue: #0067AD;
}

.lottie-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    background-color: #f2f4f5;
    z-index: 999;
}

.lottie-loading.show {
    display: flex;
}

#lottie-container {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
}

.status-text {
    text-align: center;
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.625;
    margin: 0;
    transition: opacity 0.3s ease-in-out;
    font-family: 'NoirPro-regular';
}

.status-text strong {
    color: var(--brand-blue);
}

.sub-text {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
    margin: 1rem 0;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease-in-out;
}

.progress-bar-wrapper {
    width: 100%;
    max-width: 280px;
    height: 6px;
    background-color: #e5e7eb;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--brand-blue);
    width: 0%;
    border-radius: 9999px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
