.btnCrearCurso {
    background-image: linear-gradient(to right, #283048 0%, #859398  51%, #283048  100%);
    text-align: center;
    text-transform: uppercase;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btnCrearCurso:hover {
    transition: 0.5s;
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }  

  .btnInscribirseCurso {
    background-image: linear-gradient(to right, #283048 0%, #859398  51%, #283048  100%);
    text-align: center;
    text-transform: uppercase;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btnInscribirseCurso:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    transition: 0.5s;
    text-decoration: none;
  }

  .btnEliminarCurso {
    background-image: linear-gradient(to right, #FF512F 0%, #DD2476  51%, #FF512F  100%);
    text-align: center;
    margin: 10px;
    padding: 15px 20px;
    text-transform: uppercase;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btnEliminarCurso:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    transition: 0.5s;
    text-decoration: none;
  }

  .btnEditarCurso {
    background-image: linear-gradient(to right, #08784d 0%, #85D8CE  51%, #08784d  100%);
    text-align: center;
    margin: 10px;
    padding: 15px 20px;
    text-transform: uppercase;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btnEditarCurso:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    transition: 0.5s;
    text-decoration: none;
  }

  
  .btnCopiarCurso {
    background-image: linear-gradient(to right, #283048 0%, #859398  51%, #283048  100%);
    text-align: center;
    margin: 10px;
    padding: 15px 20px;
    text-transform: uppercase;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .btnCopiarCurso:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    transition: 0.5s;
    text-decoration: none;
  }

  .btn-group .btn {
    margin: 2px; /* Ajusta el espaciado entre botones */
    padding: 5px 10px; /* Ajusta el relleno de los botones */
    color: white; /* Color del texto */
    box-shadow: 0 0 20px #eee; /* Sombra (opcional) */
    border-radius: 10px; /* Radio del borde */
    transition: background-position 0.5s, color 0.5s; /* Transición suave para el hover */
}

/* Estilos para el hover de todos los botones del grupo */
.btn-group .btn:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}