.gauge-container {
  text-align: center;
  width: 200px;
  margin: 20px auto;
}

.gauge {
  width: 100%;
  height: 30px;
  background-color: #ddd;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.gauge-fill {
  height: 100%;
  background-color: #ff8c00; /* Orange pour la jauge */
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.3s ease;
}

.gauge-labels {
  display: flex;
  justify-content: space-between;
}

.gauge-value {
  font-size: 18px;
  font-weight: bold;
  color: #ff8c00; /* Orange pour la valeur */
}

/*pour ne pas que le graph principal soit ecrasé par son conténer dans les fiche
#chart-container canvas {
    width: 800px !important;
    height: 462px !important;
}
*/
