.file-drop-zone {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 0.8rem;
  border: 1px dashed #8eb4cb;
  border-radius: var(--radius-md);
  background: var(--color-surface-soft);
  color: var(--color-text-soft);
  text-align: center;
}

.file-drop-zone.is-file-target {
  border-color: #5f98bb;
  background: var(--color-surface-blue);
}

.file-drop-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 0.55rem;
  margin: -0.15rem 0 0.9rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--color-line-soft);
}

.file-drop-row__zone {
  min-width: 0;
  min-height: 40px;
  justify-content: flex-start;
  padding: 0.4rem 0.7rem;
  overflow: hidden;
  cursor: pointer;
}

.file-drop-row__name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-drop-row__icon {
  color: var(--color-blue-deep);
  font-weight: 850;
}
