/* Disable all animations and transitions */
* {
    transition: none !important;
    animation: none !important;
    transform: none !important;
}

/* Override Bootstrap's default button transitions */
.btn {
    transition: none !important;
}

.btn:hover {
    transform: none !important;
}

/* Ensure no element moves on hover */
.card:hover,
.form-control:hover,
.form-select:hover,
.nav-link:hover,
.dropdown-item:hover,
a:hover,
button:hover,
input:hover,
select:hover {
    transform: none !important;
}

/* Keep shadows static */
.shadow-sm:hover,
.shadow:hover,
.shadow-lg:hover {
    box-shadow: inherit !important;
}