#exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.exit-popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  font-family: sans-serif;
  line-height: 1.5;
}

.exit-popup-content p {
  font-size: 18px;
  font-weight: bold;
  color: #111;
  margin-bottom: 15px;
}

.exit-popup-content p strong {
  color: #d90000;
}

.exit-popup-hidden {
  display: none !important;
}

#exit-popup button {
  margin-top: 15px;
  padding: 12px 20px;
  background-color: #111;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  max-width: 240px;
}

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

#exit-popup a {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: #007bff;
  text-decoration: underline;
  font-weight: bold;
}
