/* Basic styling for body */
.pwa {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
#install-container-ios{
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  text-align: center;
  background-color: #f1f1f1;
  color: #000000;
  width:80%;
  padding: 5px 15px;
  border-radius: 30px;
  position: fixed;
  font-size: 14px;
  transition: background-color 0.3s ease;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
}

#install-container-ios:hover{
  background-color: #f1f1f1;
}


.install-container {
    position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: none; /* Hidden by default */
}

.install-btn {
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  background-color: #f1f1f1; 
  color: #000000;
  border: none;
  padding: 5px 15px;
  cursor: pointer;
  border-radius: 30px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.install-btn:hover {
  background-color: #f1f1f1;
}

/* Responsive behavior */
@media (max-width: 1023px) {
  .install-container {
    display: block; /* Show on smaller screens */
  }
}
