/* Gold balance pill, shared across every mahjong.nu game client. Self-contained (doesn't
   rely on a host page's CSS variables) so it looks the same regardless of which game
   includes it. */

.mahjong-balance-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid #a6841f;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  white-space: nowrap;
}

/* Used only when the host page has no #topbar to dock into. */
.mahjong-balance-pill.mahjong-balance-floating {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1000;
  margin-left: 0;
  background: #1a2129;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}
