.qr-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.qr-modal.hidden {
  display: none;
}

.qr-modal-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.qr-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.qr-download-btn {
  display: inline-block;
  margin-top: 10px;
  background: #1e1e2f;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.qr-download-btn:hover {
  background: #343a40;
}

#qrImage {
  max-width: 125px !important;
}/*# sourceMappingURL=reservation.css.map */