/**
 * 支付印章 (`.rc-stamp`)：右下角倾斜圆形印章，已付 / 未付配色 (`--paid / --unpaid`)。
 * 圆桌内尺寸与位置由 shell-circle 单独覆盖，方桌走此基础规则。
 */

/* ==================== Payment Stamp ==================== */

.rc-stamp {
  position: absolute;
  right: 6px;
  bottom: 26px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid;
  transform: rotate(-18deg);
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

.rc-stamp span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding: 0 4px;
  text-align: center;
}

.rc-stamp--paid {
  border-color: #ffffff;
  color: #ffffff;
}

.rc-stamp--unpaid {
  border-color: #d4380d;
  color: #d4380d;
}
