body {
    font-family: Arial, sans-serif;
    margin: 20px;
}


/* Highlight updates smoothly for <td> */
td {
    font-size: 13px;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Add a specific style for the ticker cell */
#ticker {
    transition: color 0.5s ease; /* Smooth transition for background */
}

/* Optional: Smooth USD value color transitions */
#usdValue {
    transition: color 0.5s ease;
}

