/* Helpfulness slider with tooltip integration */

.helpfulness-slider {
  position: relative;
  width: 100%;
}

.helpfulness-slider__slider {
  position: relative;
  z-index: 1;
}

/* Tooltip styling specific to helpfulness slider */
.helpfulness-slider__tooltip {
  position: absolute;
  /* Position will be set dynamically by the controller */
  top: 0;
  left: 0;
  z-index: 9999; /* Very high z-index to ensure visibility */
  width: 1px; /* Small non-zero values to ensure the element exists in the DOM */
  height: 1px;
}

.helpfulness-slider__tooltip-content {
  width: 280px;
  white-space: normal;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.5;
}