.evaluation-container {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.section-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
.chart-section {
  margin-bottom: 30px;
}
.chart-inner-container {
  height: 200px;
}
.slider-section {
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.evaluation-item {
  margin-bottom: 15px;
}
.item-title {
  font-size: 16px;
  font-weight: bold;
  color: #555;
  margin-bottom: 10px;
  text-align: center;
}
.evaluation-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.evaluation-label {
  font-size: 14px;
  color: #555;
  white-space: nowrap;
  min-width: 30px;
  text-align: center;
}
.evaluation-slider {
  position: relative;
  width: 100%;
  height: 20px;
  display: flex;
  align-items: center;
  margin: 0 10px;
}
.slider-line {
  width: 100%;
  height: 4px;
  background-color: #ddd;
  border-radius: 2px;
}
.slider-point {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  background-color: #ff8c00;
  border-radius: 50%;
  z-index: 2;
  transform: translateY(-50%);
}
.slider-ticks {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.slider-ticks .tick {
  width: 8px;
  height: 8px;
  background-color: #aaa;
  border-radius: 50%;
}
.point-low {
  left: 0%;
  transform: translate(0, -50%);
}
.point-low-25 {
  left: 25%;
  transform: translate(-50%, -50%);
}
.point-medium {
  left: 50%;
  transform: translate(-50%, -50%);
}
.point-high-75 {
  left: 75%;
  transform: translate(-50%, -50%);
}
.point-high {
  left: 100%;
  transform: translate(-100%, -50%);
}
#chartA {
  width: 100% !important;
  height: 100% !important;
}