/* Base sprite inline element - now uses individual sprite files */
.sprite {
  display: inline-block;
  width: 24px;
  height: 24px;
  image-rendering: pixelated; /* keep that crisp pixel look */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: -4px; /* baseline alignment tweak */
  margin: 0 2px;
}

/* Optional: tintable outline/rarity rings using box-shadow */
.sprite.r-common { box-shadow: 0 0 0 1px #6b7280 inset; }
.sprite.r-rare { box-shadow: 0 0 0 1px #60a5fa inset; }
.sprite.r-epic { box-shadow: 0 0 0 1px #a78bfa inset; }
.sprite.r-legend { box-shadow: 0 0 0 1px #f59e0b inset; }
