/* Override to hide USDC badges */
.market-card__chart-bg > *:not(.market-card__content),
.no-usdc > *:not(.market-card__content) {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Hide any USDC badge in the chart background */
.market-card__chart-bg div,
.market-card__chart-bg span,
.market-card__chart-bg img {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Target specific USDC badge */
div[class*="usdc"],
div[class*="USDC"],
span[class*="usdc"],
span[class*="USDC"],
img[alt*="USDC"],
img[src*="usdc"],
img[src*="USDC"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Target any element with USDC text content */
*:has(> span:contains("USDC")),
*:has(> div:contains("USDC")),
*:has(> p:contains("USDC")) {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
