/* Popup styles */
#exitPopup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 400px;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  z-index: 1000;
  display: none;
}

#exitPopup h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

#exitPopup p {
  font-size: 16px;
  margin: 10px 0;
}

#exitPopup .closeBtn{
  background: rgb(197, 66, 66);
}
#exitPopup .closeBtn:hover{
  background: rgb(199, 79, 79);
}
#exitPopup button {
  background-color: green;
  color: white;
  border: none;
  padding: .5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

#exitPopup button:hover {
  background-color: #218838;
}

/* Overlay background */
#popupOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}