.progress-container {
    display: flex;
    flex-direction: column;
    align-items: last baseline;
    margin-bottom: 5px;
    /* Espaço entre barras */
  }

  .progress-label {
    margin-bottom: 5px;
    /* Espaço entre a legenda e a barra */
    font-size: small;
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: gray;
  }
  .progress-labelNumber {
    margin-bottom: 5px;
    /* Espaço entre a legenda e a barra */
    font-size: large;
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #4caf50;
    margin: 10px;
  }

  .progress-bar {
    width: 320px;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }

 

  @keyframes loadProgress {
from {
  width: 0;
}
to {
  width: 50%;
  /* Ajuste conforme necessário */
}
}

.progress-fill {
height: 100%;
background-color: #4caf50;
width: 50%; /* Esse valor pode ser sobrescrito pelo JavaScript */
border-radius: 10px;
animation: loadProgress 2s ease-out;
}
.number-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 55px;
  background-color: #258fce;
  color: #f4ed18;
  font-weight: bold;
  border-radius: 100%; /* Bordas arredondadas */
  font-size: 24px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.number-container {
  display: flex;
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente (se necessário) */
  padding-bottom: 10px;
  margin-top: 15px;
}