/* ===== FINAL SIZE TEST — IMAGES ONLY ===== */

/* 1. 28-wheel candidates: much smaller.
   Does NOT change the 28 boxes themselves. */
.track-cell .icon img {
    width: 40% !important;
    height: 40% !important;
    max-width: 40% !important;
    max-height: 40% !important;
    object-fit: contain !important;
    object-position: center !important;
}

/* Shark / Golden Shark are horizontal, allow slightly more width */
.track-cell[data-key="shark"] .icon img,
.track-cell[data-key="frog"] .icon img {
    width: 46% !important;
    height: 46% !important;
    max-width: 46% !important;
    max-height: 46% !important;
}

/* 2. Winner: fixed size from the FIRST moment it appears.
   Only image size changes — winner container remains untouched. */
.winner-emoji img,
.winner-runner img {
    width: 90px !important;
    height: 90px !important;
    max-width: 90px !important;
    max-height: 90px !important;
    object-fit: contain !important;
    object-position: center !important;
}