/* Fix flickering effect when clicking elements */

/* Disable transitions on active states to prevent flickering */
button:active,
a:active,
.btn:active,
.nav-link:active,
input:active,
select:active {
  transition: none !important;
}

/* Override transform effects on active elements to prevent layout shifts */
.btn:active,
.nav-link:active,
.list-group-item:active,
.hover-card:active,
.dashboard-card:active,
.project-card:active,
.report-card:active {
  transform: none !important;
}

/* Ensure no opacity changes on active states */
.fade:not(.show):active {
  opacity: 1 !important;
}

/* Fix for buttons and links not to shift content */
.btn.active,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  transform: none !important;
}

/* Prevent any animation or transition during click */
*:active {
  animation: none !important;
}
