  .chart {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
    text-align: center;
  }
  .bar {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    /* background-color: rgb(221, 221, 221); */
    padding: 0 10px;
    border-radius: 1rem;
  }
  .bar-name {
    font-weight: bold;
  }
  .bar-progress {
    flex-grow: 1;
    height: 10px;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    margin-left: 5px;
    overflow: hidden;
    margin-right: 5px;
  }
  .bar-fill {
    display: block;
    height: 100%;
    background-color: var(--Red);
  }
  .percentage {
    margin-top: 5px;
    font-weight: bold;
  }