/*Para la alerta bien*/
    .alert-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 9999;
      display: none; /* Ocultar la alerta por defecto */
    }

    .alert {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #f8f8f8;
      border: 1px solid #ccc;
      border-radius: 5px;
      padding: 20px;
      text-align: center;
      font-family: Arial, sans-serif;
      font-size: 16px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      z-index: 10000;
    }
    
    .alert h1 {
      font-size: 24px;
      margin: 0 0 10px 0;
      color: #333; /* Color del texto del título */
    }

    .alert p {
      font-size: 18px;
      margin: 0;
      color: #666; /* Color del texto del subtítulo */
    }

    .alert button {
      margin-top: 20px;
      padding: 8px 16px;
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 4px;
      color: #fff;
      background-color: #007bff;
      cursor: pointer;
    }

    .alert button:hover {
      background-color: #0056b3;
    }
    
/*Para la alerta mal*/

    .alert-overlay2 {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 9999;
      display: none; /* Ocultar la alerta por defecto */
    }

    .alert2 {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #f8f8f8;
      border: 1px solid #ccc;
      border-radius: 5px;
      padding: 20px;
      text-align: center;
      font-family: Arial, sans-serif;
      font-size: 16px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      z-index: 10000;
    }
    
    .alert2 h1 {
      font-size: 24px;
      margin: 0 0 10px 0;
      color: #333; /* Color del texto del título */
    }

    .alert2 p {
      font-size: 18px;
      margin: 0;
      color: #666; /* Color del texto del subtítulo */
    }

    .alert2 button {
      margin-top: 20px;
      padding: 8px 16px;
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 4px;
      color: #fff;
      background-color: #007bff;
      cursor: pointer;
    }

    .alert2 button:hover {
      background-color: #0056b3;
    }