.file-list {
  display: grid;
  gap: 8px;
}

.file-list-summary {
  margin-top: 2px;
}

.selected-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  background: #f7f9f8;
  border: 1px solid #dfe4e1;
  border-radius: 9px;
}

.selected-file span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--ink);
}

button.remove-file {
  width: auto;
  padding: 7px 10px;
  border: 1px solid #d7a6a1;
  background: #fff;
  color: #922f27;
  font-size: 13px;
  flex: 0 0 auto;
}

button.remove-file:hover {
  background: #fff1ef;
}
