#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loadingCircle {
    height: 250px;
}

#loadingProgressOuter {
    position: relative;
    margin: 10px 20px;
    width: 100%;
    max-width: 200px;
    height: 5px;
    background-color: #9a9a9a;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#loadingProgressInner {
    height: 100%;
    width: 0%;
    background-color: #fff;
    transition: width 0.1s ease;
    border-radius: 20px;
}

#loadingProgressValue {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-weight: bold;
    font-size: large;
}
