/* Property Extractor block – read-only slider */
.wp-block-negarity-wp-property-extractor.negarity-property-extractor {
  box-sizing: border-box;
  margin-bottom: 0.5rem;
}

.negarity-property-extractor__header {
  margin-bottom: 0.125rem;
}

.negarity-property-extractor__title {
  font-weight: 600;
  font-size: var(--negarity-pe-title-font-size, 0.875rem);
  text-transform: capitalize;
}

.negarity-property-extractor__slider-wrap {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.negarity-property-extractor__min,
.negarity-property-extractor__max {
  font-size: var(--negarity-pe-minmax-font-size, 0.75rem);
  color: var(--negarity-muted, #666);
  min-width: 2ch;
  flex-shrink: 0;
}

.negarity-property-extractor__track {
  position: relative;
  flex: 1;
  height: 6px;
  background: var(--negarity-track-bg, #e5e7eb);
  border-radius: 3px;
  overflow: visible;
  padding-bottom: 0.6em;
}

.negarity-property-extractor__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--negarity-slider-color, #3b82f6);
  border-radius: 3px 0 0 3px;
  pointer-events: none;
}

.negarity-property-extractor__thumb {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  transform: translateY(-50%);
  background: var(--negarity-slider-color, #1d4ed8);
  border: 1.5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

/* Value and label at thumb position (below slider) */
.negarity-property-extractor__value-at-thumb {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 2px;
  white-space: nowrap;
  font-size: var(--negarity-pe-value-font-size, 0.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--negarity-muted, #666);
  pointer-events: none;
}

.negarity-property-extractor__value-at-thumb .negarity-property-extractor__value-num {
  font-variant-numeric: tabular-nums;
}

.negarity-property-extractor__value-at-thumb .negarity-property-extractor__value-label {
  color: var(--negarity-muted, #555);
}
