/* Slider Components */
.slider-wrapper {
  height: 3.75rem;
  margin-top: 1.25rem;
}

.slider-line {
  width: 100%;
  height: 0.375rem;
  background: linear-gradient(90deg, #f7941d 0%, #ffd12d 50%, #26b16d 100%);
  border-radius: 0.3125rem;
  position: relative;
  margin: 1.5625rem 0 0.9375rem 0;
}

.slider-marker {
  position: absolute;
  top: -0.3rem;
  /* Centering marker on line */
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 0.1875rem solid var(--dark);
  transition: 0.4s ease;
}

.slider-marker .marker-value {
  position: absolute;
  top: -1.75rem;
  left: -0.625rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--dark);
}

.indicator-circle-label {
  margin-top: 1.125rem;
}

/* Marker Variants */
.user-marker {
  /* background: #0d6efd; */
  background: var(--yellow);
}

.industry-marker {
  /* background: #28a745; */
  background: var(--blue);
}

/* Metric Cards */
.metric-card {
  border: 0.0625rem solid #ddd;
  padding: 1.125rem;
  border-radius: 0.625rem;
  text-align: center;
  background: white;
}

.metric-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #666;
}

.metric-value {
  font-size: 1.875rem;
  font-weight: bold;
}

/* Badges */
.badge-base {
  padding: 0.25rem 0.5rem;
  border-radius: 0.3125rem;
  text-align: center;
  font-family: var(--font-inter, Inter);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 155%;
  letter-spacing: 0.015rem;
  text-transform: uppercase;
  display: inline-block;
  width: 11.125rem;
}

.badge-primary {
  background: var(--yellow);
  color: var(--dark);
  padding: 0.4rem 0.75rem;
}

.below-industry.badge-primary,
.needs-improvement.badge-primary {
  background: var(--dark);
  color: var(--yellow);
}

@media (max-width: 520px) {
  .slider-marker .industry-marker-value {
    left: 0.35rem;
    top: -2.5rem;
  }

  .indicator-circle-label {
    position: absolute;
    margin-top: 0;
    top: -1.7rem;
    left: -0.4rem;
    font-size: 0.875rem;
  }

  .indicator-circle-label.user-circle-label {
    position: static;
    margin-top: 1rem;
    margin-left: -0.25rem;
  }

  .slider-marker .user-marker-value {
    left: -0.5rem;
    top: 2rem;
  }
}