.container-scale {
    position: relative;
    max-width: 600px;
    width: 85%;
    top: 1.5rem;
    left: 2.2rem;
}

.scale {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.color-block {
    width: 20%;  /* 100% / 5 fields */
    height: 50px;
}

.red {
    background-color: #e74c3c;
}

.orange {
    background-color: #f39c12;
}

.yellow {
    background-color: #f1c40f;
}

.light-green {
    background-color: #ccff3e;
}

.green {
    background-color: #00f867;
}

.scale-arrow {
    position: absolute;
    top: -16px;
    left: calc(50%); /* Adjust this for the initial position of the arrow */
    font-size: 13px;
    transition: all 0.3s ease;
}

.scale-icon {
    position: absolute;
    top: 6px;
    left: calc(50%); /* Adjust this for the initial position of the arrow */
    font-size: 24px;
    transition: all 0.3s ease;
}


.scale-ai-legend {
    position: absolute;
    top: 53px;
    left: calc(9%);
    font-size: 9px;
    transition: all 0.3s ease;
    opacity: 50%;
    font-weight: bolder;
}


.scale-not-ai-legend {
  position: absolute;
  top: 53px;
  left: calc(84%);
  font-size: 9px;
  transition: all 0.3s ease;
  opacity: 50%;
  font-weight: bolder;
}

