/* install-prompt.css */

#installContainer {
  display: none; /* Hidden by default */
  position: fixed;
  top: 70px;
  right: 20px;
  width: 300px;
  padding: 20px;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  z-index: 1000;
  opacity: 0; /* Hidden by default */
}

#installHeader {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

#installIcon {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  margin-right: 15px;
}

#installTitle {
  font-size: 18px;
  font-weight: bold;
}

#installButton {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}

#installButton:hover {
  background-color: #45a049;
}

#installCancel {
  display: block;
  margin-top: 10px;
  text-align: center;
  cursor: pointer;
  color: #888;
}
