#install-prompt {
  background-color: #333;
  color: #fff;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  bottom: 10px;
  left: 10px;
  right: 10px;
  max-width: 600px;
  margin: 0 auto;
  z-index: 1000;
  font-family: Arial, sans-serif;
}

/* Responsivo para dispositivos móveis */

@media screen and (max-width: 768px) {
  #install-prompt {
    font-size: 14px;
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  #install-prompt button {
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* Responsivo para telas maiores */

@media screen and (min-width: 769px) {
  #install-prompt {
    font-size: 16px;
  }
}

@media screen and (min-width: 769px) {
  #install-prompt button {
    font-size: 14px;
    padding: 10px 15px;
  }
}

/* Botões personalizados */

#install-button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-left: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

#cancel-button {
  background-color: #ccc;
  color: black;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

#install-button:hover {
  background-color: #218838;
}

#cancel-button:hover {
  background-color: #bbb;
}

