/* Стили для блока загрузчика */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 200;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.processing-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin-top: 1rem;
}

.processing-text {
    font-size: 1.2em;
    font-weight: bold;
    animation: pulse 1.5s infinite;
}

.time-counter {
    font-size: 1.2em;
    font-weight: bold;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}