/* General container styling for both Android and iOS prompts */
#install-container, #ios-install-container {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: #fff;
  padding: 15px;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  width: 300px; /* Set a fixed width */
  max-width: 100%; /* Responsive for smaller devices */
  border-radius: 8px; /* Rounded corners for better design */
}

/* Styling for the install button (Android) */
#install-button {
  background-color: #ffa000; /* Your brand color */
  color: #fff;
  border: none;
  padding: 10px;
  margin-top: 10px;
  width: 100%; /* Full-width button */
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  border-radius: 5px; /* Rounded corners */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

#install-button:hover {
  background-color: #1f1b4d; /* Slightly darker on hover */
}

/* Close button for Android and iOS prompts */
#close-button, #close-button-ios {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background-color: #ff0000; /* Red background for close button */
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  line-height: 1;
  transition: background-color 0.3s ease;
}

#close-button:hover, #close-button-ios:hover {
  background-color: #cc0000; /* Darker red on hover */
}

#close-button i, #close-button-ios i {
  margin: 0;
}

/* iOS specific container */
#ios-install-container {
  background-color: #f9f9f9; /* Slightly different background for iOS prompt */
  border: 1px solid #ddd;
  padding: 15px;
}

#ios-install-container p {
  font-size: 14px;
  color: #333;
  margin: 0;
  padding: 5px 0;
}

/* iOS instructions text */
#ios-install-container p strong {
  color: #ffa000; /* Match your brand color for emphasis */
}

/* Responsive styling for smaller screens */
@media (max-width: 600px) {
  #install-container, #ios-install-container {
    bottom: 5px;
    right: 5px;
    width: 90%; /* Responsive width */
  }

  #install-button {
    font-size: 14px;
    padding: 8px;
  }
}
