.Paperform__Question {
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    background-color: #ffffff;
}

.Slider__axis-label--min::after {
  content: '%';
}

.Slider__axis-label--max::after {
  content: '%';
}

div[data-reach-slider-handle]::before {
  content: attr(aria-valuenow) '%'; /* Use aria-valuenow to get the current value */
}

/* Main dropdown container */
.Select {
  margin-top: 10px;
  margin-bottom: -10px;
  font-family: Arial, sans-serif;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.Select:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Single select dropdown */
.Select--single {
  background-color: #fff;
}

/* Multi select dropdown */
.Select--multi {
  background-color: #f8f8f8;
}

/* Dropdown menu */
.Select-menu-outer {
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Individual option in the dropdown */
.Select-option {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* Selected option label */
.Select-value-label {
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 0px;
  margin-right: 0px;
  display: inline-block;
}

/* Icon for multi-select options */
.Select-value-icon {
  padding: 0px;
  cursor: pointer;
  color: #666;
  transition: color 0.2s ease;
}

.Select-value-icon:hover {
  color: #ff4d4d;
}

/* Dropdown menu for specific questions */
[id^="react-select-"][id$="--list"] {
  max-height: 400px;
  overflow-y: auto;
}

/* Individual options within specific questions */
[id^="react-select-"][id$="--option-"] {
  padding: 8px 12px;
  border-bottom: 1px solid #f0f0f0;
}

[id^="react-select-"][id$="--option-"]:last-child {
  border-bottom: none;
}