/* BTC Block Stats chip - header friendly */
.btcblockstats-chip{
  display:inline-flex;
  align-items:center;
  margin-left:10px;
  font-size:12px;
  line-height:1.2;
  white-space:nowrap;
}
.btcblockstats-chip a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:5px 10px;
  border-radius:999px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.18);
}
.btcblockstats-chip .label{ font-weight:600; }
.btcblockstats-chip .muted{ opacity:.6; }

.btcblockstats-chip i{
  width:10px;height:10px;border-radius:50%;
  display:inline-block;
  background: currentColor;
  opacity:.85;
}

/* Small status pills */
.btc-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:2px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  font-variant-numeric: tabular-nums;
}
.btc-pill .dot{
  width:8px;height:8px;border-radius:50%;
  display:inline-block;
  background: currentColor;
  opacity:.9;
}

.btc-green{ color:#2ecc71; }
.btc-yellow{ color:#f1c40f; }
.btc-red{ color:#e74c3c; }

/* make it wrap nicely on narrow headers */
@media (max-width: 700px){
  .btcblockstats-chip{ white-space:normal; }
  .btcblockstats-chip a{ flex-wrap:wrap; }
}
