/* Popup styles */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.popup-content {
  background-color: #00647a;
  margin: 20% auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  text-align: center;
  position: relative;
}

.close {
  color: #f1c50e;
  font-size: 24px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #ff5722;
}

/* Hyperlink styles */
#opt-in-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

#opt-in-link:hover {
  color: #f1c50e !important;
}

/* OK button styles */
#okButton {
  background-color: #f1c50e;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#okButton:hover {
  background-color: #f1c40ec2;
}
