.loading-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.loading-stage {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.ellipsis {
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    animation: ellipsis 2s infinite;
}

.loading-text {
    display: flex;
    align-items: center;
    font-weight: bold;
    margin-right: 10px;
}

.loading-item {
    padding-left: 12px; /* Отступ слева от текста */
    font-size: 11px; /* Задайте желаемый размер шрифта */
    display: inline;
}

.loading-result {
    font-weight: bold;
    color: green;
}

.loading-bar-container {
    width: 100%;
    height: 20px;
    background: lightgray;
    position: absolute;
    top: 0;
}

.loading-progress {
    height: 20px;
    width: 0;
    background: rgb(65, 64, 64);
    transition: width 1s ease;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.loading-progress-text {
    margin-right: 5px;
    color: white;
    position: absolute;
}

.loading-ok {
    color: green; /* Зеленый цвет для "OK" */
}

h2.loading-special {
    font-weight: bold;
    color: blue;
    opacity: 0; /* Устанавливаем начальную непрозрачность на 0 */
    animation: fade-in 1s ease 2s 1 forwards; /* Добавляем анимацию fade-in */
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
