.file-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.file-item > span:nth-child(2) {
  min-width: 0;
}

.file-item[data-status="preparing"] small,
.file-item[data-status="uploading"] small {
  color: #363630;
}

.file-progress {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(to right, #111 var(--file-progress), #d1d1ca var(--file-progress));
}

.file-remove:disabled {
  cursor: wait;
  opacity: .4;
}

@media (max-width: 640px) {
  .file-item {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .file-item img,
  .file-placeholder {
    width: 40px;
    height: 40px;
  }

  .file-remove {
    padding-inline: 4px;
  }
}
