/* Receipt thumbnail: perforated top edge, like tearing off a paper receipt */
.receipt-card {
  position: relative;
  background: white;
  border-radius: 2px;
}

.receipt-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 8px;
  background-image: radial-gradient(circle at 6px 0, transparent 4px, #FAF8F5 4.5px);
  background-size: 12px 8px;
  background-repeat: repeat-x;
}

.amount-figure {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.status-pending {
  position: relative;
}

.status-pending::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 6px,
    rgba(194, 121, 44, 0.06) 6px,
    rgba(194, 121, 44, 0.06) 12px
  );
  pointer-events: none;
  border-radius: inherit;
}
