/* 
 * no-table-hover.css
 * Disables hover effects on tables for better UX in data-heavy tables
 */

/* Remove hover effects from table rows */
.table-hover tbody tr:hover {
  background-color: transparent !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Remove hover effects from table cells */
.table td:hover, 
.table th:hover {
  background-color: transparent !important;
  transform: none !important;
}

/* Ensure no transitions on table elements */
.table tr,
.table td,
.table th {
  transition: none !important;
}

/* Maintain static appearance for all table elements */
.table-hover tbody tr,
.table tbody tr {
  transform: none !important;
  box-shadow: none !important;
}
