/**
 * Vaulten — 업로드 파일 한 줄 요약 (Sales, Pawn 공용)
 */
.v1-attach-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.v1-attach-empty {
  margin: 0;
  padding: 14px 12px;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  border: 1px dashed #e2e8f0;
  border-radius: 8px;
  background: #fafbfc;
  line-height: 1.45;
}

.v1-attach-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v1-attach-summary {
  flex: 1 1 auto;
  min-width: 0;
  box-sizing: border-box;
  border: 1px solid #dbe3ef;
  border-radius: 8px;
  padding: 9px 11px;
  font: inherit;
  font-size: 14px;
  color: #0f172a;
  background: #fff;
}

.v1-attach-summary::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.v1-attach-summary:focus {
  outline: 2px solid #93c5fd;
  border-color: #60a5fa;
}

.v1-attach-item__remove {
  flex-shrink: 0;
  border: none;
  background: transparent;
  color: #94a3b8;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 8px;
}

.v1-attach-item__remove:hover {
  color: #b91c1c;
}

.sales-attach-list.v1-attach-list,
.sales-uploaded-files.v1-attach-list {
  border: none;
  background: transparent;
  padding: 0;
  min-height: 0;
}

.sales-attach-list.v1-attach-list:empty::before,
.sales-uploaded-files.v1-attach-list:empty::before {
  content: none;
}
