/* CSS Gradient Generator — page-specific styling on top of shared components. */

.gradient-preview {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-5);
  transition: background 0.15s ease;
}

.stop-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-border);
}
.stop-row:last-of-type { border-bottom: none; }
.stop-row input[type="color"] {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  padding: 2px;
  background: var(--color-bg);
  flex-shrink: 0;
  cursor: pointer;
}
.stop-row input[type="range"] { flex: 1; accent-color: var(--color-brand); }
.stop-pos-label { width: 42px; text-align: right; font-size: var(--text-xs); color: var(--color-text-subtle); flex-shrink: 0; }
