/* Modal background overlay */
#exit-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Modal box */
.modal-content {
  background: #fff;
  padding: 2em;
  max-width: 500px;
  width: 90%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-align: center;
  font-family: sans-serif;
}

/* Text inside modal */
.modal-content p {
  margin: 1em 0;
  font-size: 1rem;
  color: #333;
}

/* Button container */
.modal-buttons {
  margin-top: 1.5em;
  display: flex;
  justify-content: center;
  gap: 1em;
}

/* Proceed button */
#proceed-link {
  padding: 0.75em 1.5em;
  background: #007bff;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

#proceed-link:hover {
  background: #0056b3;
}

/* Cancel button */
.cancel-btn {
  padding: 0.75em 1.5em;
  background: #ccc;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cancel-btn:hover {
  background: #999;
}
