/* Overlay */
#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  z-index: 99999;
}

/* Popup Window */
#offer-popup {
  background: #fff;
  padding: 20px;
  width: 300px;
  border-radius: 10px;
  text-align: center;
}

#offer-popup h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

.offer {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
}

/* App Icon */
.offer img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-right: 10px;
}

/* Offer Details */
.offer-details h3 {
  font-size: 16px;
  margin: 0;
}

.offer-details p {
  font-size: 12px;
  color: #555;
  margin: 5px 0 0;
}

/* Install Button */
.install-button {
  margin-left: auto;
  padding: 6px 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.install-button:hover {
  background-color: #0056b3;
}

/* See Other Offers Button */
#see-other-offers-button {
  margin-top: 10px;
  background-color: #28a745;
  color: #fff;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 5px;
}

#see-other-offers-button:hover {
  background-color: #218838;
}

/* Close Button */
#close-button {
  margin-top: 10px;
  background-color: #ddd;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 5px;
}

#close-button:hover {
  background-color: #bbb;
}
