.exit-popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.exit-popup {
  background: #fff;
  width: 90%; max-width: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.exit-popup-header {
  background-color: #e6f0ff;
  text-align: center;
  padding: 20px;
  position: relative;
}

.exit-popup-header h2 {
  margin: 10px 0;
}

.exit-popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
}

.exit-popup-body {
  padding: 20px;
}

.exit-popup-body label {
  display: block;
  margin-bottom: 10px;
}

.exit-popup-body input[type="text"],
.exit-popup-body input[type="email"] {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.exit-popup-actions {
  display: flex;
  justify-content: space-between;
}

.exit-popup-actions button {
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.submit-btn {
  background-color: #0056d2;
  color: white;
  border: none;
}

.dismiss-btn {
  background-color: white;
  color: #333;
  border: 1px solid #ccc;
}

.small-note {
  font-size: 13px;
  color: #777;
}
