.page-content {
  background-color: #f3f4f5 !important;
}
.blockScreen {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  position: fixed;
  z-index: 999;
}
#purchase .transactionItem .srImg {
  object-fit: contain;
}
#purchaseHandler .purchaseRecord:hover {
  background: #e2e7eb;
}

/* FIX-168 / FIX-170 (2026-05-04): last-purchase amber alert banner — narrowed height. */
.last-purchase-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
  -webkit-tap-highlight-color: rgba(245, 124, 0, 0.15);
}
.last-purchase-banner:hover {
  background: #fff3c4;
  border-color: #ffd54f;
}
.last-purchase-banner:active {
  background: #ffecb3;
}
.last-purchase-banner .lp-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffc107;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}
.last-purchase-banner .lp-text {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  line-height: 1.2;
}
.last-purchase-banner .lp-title {
  display: block;
  font-size: 10px;
  color: #8a6d00;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.last-purchase-banner .lp-detail {
  display: block;
  font-size: 13px;
  color: #5c4500;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.last-purchase-banner .lp-supplier {
  font-weight: 700;
}
.last-purchase-banner .lp-price {
  font-variant-numeric: tabular-nums;
}
.last-purchase-banner .lp-apply {
  flex-shrink: 0;
  padding: 4px 12px;
  background: #f57c00;
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  transition: background 0.15s ease;
}
.last-purchase-banner:hover .lp-apply {
  background: #e65100;
}
.last-purchase-banner:active .lp-apply {
  background: #c54f00;
}
@media (max-width: 480px) {
  .last-purchase-banner {
    padding: 6px 10px;
    gap: 8px;
  }
  .last-purchase-banner .lp-icon {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }
  .last-purchase-banner .lp-detail {
    font-size: 12px;
  }
  .last-purchase-banner .lp-apply {
    padding: 4px 10px;
    font-size: 11px;
    min-height: 26px;
  }
}
