/* ===== Fix ícones dashboard ===== */

/* ETH do Wikimedia — manter proporção (não amassar) e círculo */
img[src*="Ethereum_logo_2014"]{
  width:40px !important;
  height:40px !important;
  border-radius:50% !important;
  object-fit:contain !important;   /* evita amassar */
  background:#fff !important;
  padding:2px !important;
}

/* SOL do CoinMarketCap — obrigar círculo */
img[src*="coinmarketcap.com/static/img/coins/200x200/5426.png"]{
  width:40px !important;
  height:40px !important;
  border-radius:50% !important;    /* fica redondo */
  object-fit:cover !important;     /* preenche o círculo */
  background:#000 !important;
  padding:2px !important;
}

/* Fallback por ALT, caso a URL mude */
img[alt*="ETH"], img[alt="ETH"] {
  width:40px !important; height:40px !important;
  border-radius:50% !important;
  object-fit:contain !important;   /* evita “amassar” */
  background:#fff !important; padding:2px !important;
}
img[alt*="SOL"], img[alt="SOL"] {
  width:40px !important; height:40px !important;
  border-radius:50% !important;     /* fica redondo */
  object-fit:cover !important;      /* preenche o círculo */
  background:#000 !important; padding:2px !important;
}
