/* Shared UI helpers */

/* Choice buttons (A/B/C badge like Reply Battle) */
.choiceBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  border-radius:10px;
  margin-right:12px;
  font-weight:800;
  letter-spacing:0.02em;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  color:rgba(255,255,255,0.92);
  flex:0 0 auto;
}

.choiceText{
  display:inline-block;
  vertical-align:middle;
  line-height:1.25;
  color:rgba(255,255,255,0.92);
}

/* Ensure buttons that contain badge/text align nicely */
button.option, .optionBtn, button.choice{
  text-align:left;
}

/* Site footer (centered links) */
.site-footer{
  width:100%;
  padding:10px 0 14px;
}
.site-footer-inner{
  max-width:1100px;
  margin:0 auto;
  padding:0 22px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  color:rgba(255,255,255,0.42);
  font-size:11px;
  letter-spacing:0.04em;
  text-transform:uppercase;
}
.site-footer-inner .footer-link{
  color:rgba(255,255,255,0.58);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,0.10);
  padding-bottom:2px;
}
.site-footer-inner .footer-link:hover{
  color:rgba(255,255,255,0.92);
  border-bottom-color:rgba(255,255,255,0.28);
}
.site-footer-inner .footer-sep{
  color:rgba(255,255,255,0.35);
}

/* Legal pages: single-color background + no panel dividers */
body.solid-page{ background: var(--bg) !important; }
body.legal-page .panel{ background: transparent; border:0; box-shadow:none; }
/* keep inner spacing from the page markup */
