/* Disable all Bootstrap hover effects */

/* Disable table hover effects */
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: transparent !important;
}

/* Disable card hover effects */
.card:hover {
  transform: none !important;
  box-shadow: none !important;
  transition: none !important;
}

/* Disable button hover effects */
.btn:hover {
  transform: none !important;
  transition: none !important;
}

/* Disable all hover effects globally */
*:hover {
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

/* Disable Bootstrap transition effects */
.fade,
.collapse,
.collapsing {
  transition: none !important;
}

/* Disable dropdown hover effects */
.dropdown-menu {
  transition: none !important;
}

/* Disable modal hover effects */
.modal-content:hover {
  transform: none !important;
}

/* Disable any remaining hover transformations */
[class*="hover"]:hover {
  transform: none !important;
  transition: none !important;
}
