/* Portal shared modal choice buttons — MODAL_BUTTONS.md / Five-130 */
:root {
  --portal-accent: #c9a227;
  --portal-on-accent: #1a1408;
  --portal-modal-bg: #1e3f34;
  --portal-modal-border: rgba(201, 162, 39, 0.45);
}

.portal-choice,
.choice.portal-choice {
  display: block;
  width: 100%;
  min-height: 72px;
  padding: 20px 16px;
  border: none;
  border-radius: 12px;
  background: var(--portal-accent);
  color: var(--portal-on-accent);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
}

.portal-choice-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Do not force this onto Cancel-only links / icon rows / pager toolbars */
