/*
  CumComing 1.2 patch
  - Header auth buttons in header.php are <a> tags (so they can link to /account/?auth=...)
  - Original theme styles were tuned for <button> elements; anchors can render text slightly off-center.
  - This patch makes .ccui-btn behave like a centered pill for both <a> and <button>.
  NOTE: This is additive and does not change existing colors/shadows/radius.
*/

.ccui-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  text-decoration:none;
  box-sizing:border-box;
}

/* Keep visited links consistent with the pill look */
.ccui-btn:visited{
  color:inherit;
}
