.icoLogo{ width: 110px; }
.txtLiga { color: blue; }
.txtLiga:hover { font-style: italic; color: red;}
.divTrmns { width: 380px; margin: 40px auto; }

/********************* Modal Ping *************************/
/* Estilos para el modal */
.modalPing {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /*overflow: auto;*/
}

.modalPing-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 10px;
  max-width: 400px;
  text-align: center; /* Centra todo el contenido */
}

.modalPing .closePng {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
    cursor: pointer;
}

.modalPing .close:hover,
.modalPing .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Estilos para el input */
.modalPing .input-numero {
  width: calc(100% - 20px); /* Reducir el ancho del input para dar espacio al placeholder */
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px; /* Tamaño de la tipografía */
  text-align: center; /* Centra el contenido */
}

/* Estilos para el botón */
.modalPing .boton-continuar {
  display: block;
  width: calc(100% - 20px); /* Misma anchura que el input */
  padding: 10px;
  margin: 10px auto;
  background-color: #3498db; /* Color del botón */
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px; /* Tamaño de la tipografía */
}

