body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

/* .containerPage2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 2rem;
  overflow: hidden;
} */

p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-left: 2rem;
  margin-right: 2rem;
}

img {
  margin-bottom: 20px;
}

.buttonPage {
  background-color: white;
  color: black;
  border: 1px solid;

  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease; /* transition for smooth color change */
}

.buttonPage:hover {
  border: 1px solid;
  background-color: #d5d2d2; /* gris más claro */
}
.buttonInstall {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #98fb98;
  color: #333; /* dark grey */
  border: none;
  padding: 0px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease; /* transition for smooth color change */
}

.buttonInstall:hover {
  background-color: #ddd; /* slightly darker grey */
}
.containerButton {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.closeButton {
  padding: 5px 10px;
  cursor: pointer;
  color: black; /* Example text color */
  font-size: 50px;
}
/* Estilo del fondo oscurecido */
.modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
}
/* Estilo del contenedor del modal */
.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  text-align: center;
}

/* Estilo del título del modal */
.modal-content p {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Estilo de los botones del modal */
.modal-content button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Estilo hover de los botones del modal */
.modal-content button:hover {
  background-color: #0056b3;
}

/* Estilo del botón Sí */
#installYes {
  background-color: #007bff;
}

#installYes:hover {
  background-color: #0056b3;
}

/* Estilo del botón No */
#installNo {
  background-color: #dc3545;
}

#installNo:hover {
  background-color: #b02a37;
}

@media all and (display-mode: standalone) {
}

@media all and (display-mode: fullscreen) {
  .buttonInstall {
    display: none;
  }
  .toastIos {
    display: none;
  }
}

/* Path: html/css/normalize.css */

.toast {
  border: 2px solid #89d329;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
}

.toastIos {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  background-color: #f4f4f4;
  border: 2px solid #89d329;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: column-reverse;
  width: 300px;
  img {
    width: 100%;
    height: auto;
  }
}
.toastIos img {
  width: 100%;
  height: auto;
}

.dismissButton,
.messageButton {
  background-color: transparent;
  border: none;
  color: #89d329;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
}

.dismissButton:hover,
.messageButton:hover {
  text-decoration: underline;
}

.dismissButton:focus,
.messageButton:focus {
  outline: none;
}

.dismissButton {
  margin-right: 10px;
  font-size: 30px; /* Tamaño de la "X" aumentado */
}

@media (max-width: 768px) {
  /* Ajustar este valor según el punto de interrupción que desees para móviles */
  img {
    max-width: 100%;
    height: auto;
    width: 250px;
  }
}

.containerLogo {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centra verticalmente */
  align-items: center; /* Centra horizontalmente */
  width: auto;
  height: auto;
  gap: 2rem;
  margin: auto; /* Margen automático para centrar horizontalmente */
}

.containerInstall {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
  margin-right: 1rem;
}
