/* Popup Container */
#exit-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  z-index: 1000;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  display: none; /* Initially hidden */
  animation: popup-appear 0.5s ease-in-out;
}

#exit-popup h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

#exit-popup p {
  margin-bottom: 15px;
  color: #555;
  font-size: 1rem;
}

#exit-popup form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#exit-popup input[type="email"] {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

#exit-popup button {
  padding: 12px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

#exit-popup button:hover {
  background: #0056b3;
}

/* Close Button */
#exit-popup .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: #333;
  cursor: pointer;
}

#exit-popup .close-btn:hover {
  color: #000;
}

/* Overlay */
#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: none;
}

/* Animations */
@keyframes popup-appear {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
