/* ==========================================================================
   stake-v47.css — clean balance chip (visual only, no mechanics touched)
   Turns the bare balance number into a calm, Stake-style pill.
   ========================================================================== */

html body main section > div[class*="tabular-nums"][class*="top-3"][class*="right-4"] {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  right: auto !important;
  left: 0.75rem !important;
  top: 0.5rem !important;
  z-index: 30 !important;

  padding: 5px 12px 5px 10px !important;
  border-radius: 9999px !important;
  background: rgba(11, 26, 36, 0.72) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 6px 18px -12px rgba(0, 0, 0, 0.9) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  backdrop-filter: blur(8px) !important;

  font-family: "Chakra Petch", system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  line-height: 1 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  text-shadow: none !important;
  white-space: nowrap !important;
}

@media (min-width: 1024px) {
  html body main section > div[class*="tabular-nums"][class*="top-3"][class*="right-4"] {
    left: 1.25rem !important;
    top: 0.85rem !important;
    padding: 6px 14px 6px 12px !important;
    font-size: 14px !important;
  }
}
