#loading {
    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;
}

img {
    height: 64px;
    margin-bottom: 32px;
}

.progress-container {
    width: 300px;
    height: 4px;
    background-color: #DEDEEA;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-bar {
    height: 100%;
    background-color: #3748DE;
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}