.progress-container {
    width: 100%;
    height: 8px;
    background: var(--surface);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 12px;
    border: 1px solid var(--glass-border);
}
.progress-bar-fill {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.2s ease;
}
.upload-progress-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
}
.upload-progress-text-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 13px;
    margin-bottom: 4px;
}
