.bolt11-input-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.max-payout-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 8px;
}

.max-payout-label {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

#max_payout {
  width: 100px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.qr-scanner-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

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

.qr-scanner-container {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 20px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

.qr-scanner-header {
  padding: 16px;
  background: var(--primary-orange);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qr-scanner-title {
  font-size: 18px;
  font-weight: bold;
}

.qr-scanner-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 24px;
  padding: 0;
}

.qr-scanner-video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  background: #000;
}

.qr-scanner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qr-scan-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: var(--primary-orange);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  margin-left: 8px;
}

.qr-scan-button:hover {
  background-color: #e58308;
}

.qr-scan-button i {
  font-size: 16px;
}
