/* Container for the progress bar */
.progress-bar-container {
    width: 80%;
    max-width: 400px;
    height: 45px;
    background-color: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

/* The fill element that actually moves */
.progress-bar-fill {
    height: 100%;
    width: 0%;
    background-color: #0E4988;
}

/* Layout for the content (centered on the page) */
.loading-content-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* Main loading text */
.loading-text {
    color: #fff;
    text-align: center;
    margin: 0;
}

/* Timeout Info Styling */
.loading-timeout-info {
    width: 100%;
    display: flex;
    justify-content: center;
}

.loading-text-wrapper {
    width: 90%;
    max-width: 820px;
}

/* Crucial style to hide the timeout message initially */
.hidden-info {
    display: none;
}


@media screen and (max-width: 451px) {
    .timeout-info-wrapper {
        display: flex;
        flex-direction: column-reverse;
        align-content: center;
        height: 130px;
    }
}