.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.lottie-wrapper lottie-player{
    width: 30rem;
}

.loading-progress {
    width: 200px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background-color: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background-color: #007bff;
    transition: width 0.3s ease-out;
}

.progress-text {
    font-size: 14px;
    color: #333;
    font-family: Arial, sans-serif;
}

/* Hide loader when loading is complete */
.loader-container.loaded {
    opacity: 0;
    pointer-events: none;
}