.upload-form {
  max-width: 640px;
}

.dropzone {
  border: 2px dashed var(--surface-border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: var(--space-6);
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.dropzone.dragover {
  border-color: var(--brand-primary);
  background: var(--surface-alt);
  color: var(--text-primary);
}

.upload-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.upload-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}

.upload-item .filename {
  font-weight: 600;
}

.upload-item .status-text {
  color: var(--text-secondary);
  font-size: 13px;
}

.upload-item .status-text.status-text--error {
  color: var(--danger);
}

.upload-item .status-text.status-text--success {
  color: var(--success);
}
