/* Стили для прогресса загрузки файлов */

.upload-progress {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--card);
    border-bottom: 1px solid var(--border);
}

.upload-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xs);
    font-size: 0.875rem;
}

.upload-progress-name {
    color: var(--foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    margin-right: var(--spacing-sm);
}

.upload-progress-percent {
    color: var(--primary);
    font-weight: 600;
    flex-shrink: 0;
}

.upload-progress-bar {
    width: 100%;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
    overflow: hidden;
}

.upload-progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}



