.tr-hover {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  }
  
  .tr-hover:hover {
    transform: scale(1.01); /* Slightly enlarge row */
    background-color: rgba(60, 174, 213, 0.1); /* Light blue tint */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Adds subtle shadow */
  }
  
thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  width: 100px !important;
}