  /* Fondo oscuro del modal */
  .modal-nequi-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: none; /* Inicialmente oculto */
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  /* Contenedor del modal */
  .modal-nequi {
    background: white;
    padding: 20px 30px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    text-align: center;
  }

  /* Botones */
  .modal-nequi button {
    padding: 10px 20px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .cancel-btn {
    background-color: #ccc;
  }

  .continue-btn {
    background-color: #4CAF50;
    color: white;
  }