body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background-color: #1e1e1e;
  color: #f0f0f0;
}


.load-PWAndroid-install::after {
content: "(cargando)";
}

.app-container {
  padding: 2em;
  text-align: center;
}

button {
  padding: 1em 2em;
  border: none;
  background-color: #444;
  color: #fff;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1em;
}



/* Modal */
.install-overlay {
    display: none;
    flex-direction: column;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.95);
width: 100%;
height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 9999;

}



 /* MODAL INSTALL PWA */
    input[type="radio"] {
      display: none;
    }

    label {
      padding: 10px 20px;
      border: 1px solid #aaa;
      margin-right: 5px;
      cursor: pointer;
      border-radius: 5px;
      background-color: #000000;
      transition: background 0.2s;
    }

    /* Marca visual del botón activo */
    #ios:checked + label[for="ios"],
    #android:checked + label[for="android"] {
      background-color: #007aff;
      color: white;
      border-color: #007aff;
    }

    .contenido > div {
      display: none;
      margin-top: 20px;
      padding: 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      background: #858585;
    }

    /* Mostrar contenido correspondiente */
    #ios:checked ~ .contenido .ios,
    #android:checked ~ .contenido .android {
      display: block;
    }

