/* Live QR session countdown overlay (pairs with qr-guard image) */

.docshy-qr-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.docshy-qr-countdown-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.docshy-qr-countdown-chip {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  min-width: 3.25rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: #334155;
  color: #fff;
  font-family: ui-monospace, "Cascadia Code", "SF Mono", Menlo, monospace;
  font-size: clamp(0.7rem, 2.1vw, 0.88rem);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0.04em;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.25);
  z-index: 2;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 480px) {
  .docshy-qr-countdown-chip {
    top: 46%;
  }
}
