.receipt-success {
  padding: 15px;
  text-align: center;
}
.receipt-success-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 14px;
  place-items: center;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  font-size: 42px;
  font-weight: 900;
}
.receipt-success p { color: #475569; }
.receipt-success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.receipt-viewer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.receipt-viewer-head h2 { margin: 0; }
.receipt-viewer {
  display: block;
  width: 100%;
  height: min(70vh, 760px);
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  background: #fff;
}
.receipt-print-frame {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 650px) {
  .receipt-viewer-head { align-items: flex-start; flex-direction: column; }
  .receipt-viewer { height: 68vh; }
}
