 

 .containerGeneral input{
    font-family: cursive;
 }
 .equiposContenedor{
        justify-items: center;
 }
/*
 .puntosMaximo {
     PLACE-SELF: CENTER;
    border: #fd76b7 8px solid;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background: white;
 }
 .puntosMaximo strong{
    font-family: cursive;
    font-size: 20;
 }*/

 .puntosMaximo {
    display: none;
 }

 .grupoEquipo {
     margin-bottom: 10px;
     position: relative;
 }

 .nombreGrupoEquipo {
     display: flex;
    justify-content: space-between;
 }

 .nombreGrupoEquipo input{
    border: solid 1px rgba(255, 255, 255, 0);
    background-color: rgba(255, 255, 255, 0);
    color: white;
    font-size: 18px;
 }
 .nombreGrupoEquipo .valorActual{
    justify-items: end;
 }

 .barraPorcentajeAvance {
     display: flex;
 }

 .barraPorcentajeAvance p{
    display: none;
 }

 input {
     padding: 6px;
     margin: 3px 0;
 }

 .nombreInput {
     width: 180px;
 }

 .valorInput {
     width: 100px;
 }

 /* Barra de progreso */
 progress {
     width: 600px;
     height: 15px;
     appearance: none;
 }

 progress::-webkit-progress-bar {
     background-color: #eee;
     border-radius: 10px;
     overflow: hidden;
 }

 progress::-webkit-progress-value {
     background: linear-gradient(90deg, #4CAF50, #1E90FF);
     transition: width 2s ease;
     border-radius: 10px;
 }

 /* NAVE */
 .nave {
     position: absolute;
     top: 35px;
     /* Ajuste para colocarla encima de la barra */
     width: 35px;
     transition: left 2s ease;
 }