/* pop.css */
#install-container {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
  z-index: 9999;
}
#install-button {
  background-color: #6D9900;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

#close-button {
  top: 5px;
  right: 5px;
  width: 20px; /* Size of close button */
  height: 20px; /* Size of close button */
  background-color: #ff0000;
  color: #fff;
  border: none;
  border-radius: 50%; /* Rounded shape */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 16px; /* Size of close icon */
  padding: 0;
  line-height: 1;
}

#close-button i {
  margin: 0;
}
