/* ── Espacio filtro → lista ──────────────────────────────────── */
.vs-documentos__filter {
  margin-bottom: 32px;
}

/* ── Lista ──────────────────────────────────────────────────── */
.vs-documentos__list {
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
}

/* ── Fila ───────────────────────────────────────────────────── */
.vs-documentos__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  box-sizing: border-box;
  transition: background 0.2s ease;
}

.vs-documentos__item.is-last-visible {
  border-bottom: none;
}

.vs-documentos__item:hover {
  background: #f9f9f9;
}

/* ── Ícono ──────────────────────────────────────────────────── */
.vs-documentos__item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.vs-documentos__item-icon img {
  width: 36px;
  height: auto;
  display: block;
}

/* ── Título ─────────────────────────────────────────────────── */
.vs-documentos__item-title {
  flex: 1;
  min-width: 0;
  font-weight: 600;
  color: #111111;
  line-height: 1.4;
}

/* ── Botón descargar ────────────────────────────────────────── */
.vs-documentos__item-btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 8px 20px;
  background: #111111;
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875em;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}

.vs-documentos__item-btn:hover {
  color: #ffffff;
  text-decoration: none;
}

/* ── Sin archivo ────────────────────────────────────────────── */
.vs-documentos__item-no-file {
  flex-shrink: 0;
  font-size: 0.85em;
  color: #999;
}

/* ── Ítem oculto por filtro ─────────────────────────────────── */
.vs-documentos__item[hidden] {
  display: none;
}
