/* ── NEW-SCALE — específico de pantalla ─────── */

/* Barra de gradiente con texto/números dentro */
.scale__points .color-gradient {
  height: 36px;
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}
.scale__points .color-gradient span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: var(--weight-semibold);
  color: rgba(0,0,0,0.65);
}

/* Lista de valores (puntos de la escala) */
.values {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-bottom: var(--space-8);
}

.value {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--bg-surface);
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.value input,
.value p {
  width: 54px;
  text-align: center;
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  padding: var(--space-1);
  background: var(--bg-raised);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  margin: 0;
}

.value .color {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.value a {
  flex: 1;
  font-size: var(--text-xs);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: color var(--ease-default);
}
.value a:active { color: var(--accent); }

.value .fa-trash {
  color: var(--danger);
  font-size: var(--text-base);
  padding: var(--space-2);
  cursor: pointer;
  opacity: 0.8;
  transition: opacity var(--ease-default);
}
.value .fa-trash:active { opacity: 1; }