#all-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#all-loading-container {
    text-align: center;
    color: white;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.7);
}

#all-loading-gif {
    max-width: 100px;
    margin-bottom: 20px;
}

#all-progress-container {
    width: 80%;
    margin: 0 auto;
    background-color: #333;
    border-radius: 5px;
    height: 20px;
    position: relative;
}

#all-progress-bar {
    height: 100%;
    width: 0%;
    background-color: red;
    border-radius: 5px;
    transition: width 0.3s;
}

#all-progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}