td.icon-cell {
  position: relative;
  overflow: hidden;
}

td.icon-cell img {
  transition: transform 0.3s; /* Add a smooth transition effect */
  max-width: 100%;
  height: auto;
}

td.icon-cell:hover img {
  transform: scale(1.1); /* Scale the icon on hover */
}
