/* CSS untuk menghilangkan efek zoom dan animasi */
.container-fluid {
    transition: none !important;
    transform: none !important;
}

.card {
    transition: none !important;
    transform: none !important;
    cursor: default !important;
}

.card:hover {
    transform: none !important;
    box-shadow: none !important;
}

.btn:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Nonaktifkan semua animasi dan transisi */
*:not(.modal-container, .modal-panel) {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

/* Override khusus untuk elemen yang perlu animasi */
.modal-container, .modal-panel {
    /* Biarkan animasi untuk modal */
}

/* Disable hover effects */
a:hover, button:hover, .btn:hover, .nav-link:hover {
    transform: none !important;
}

/* Set zoom to 100% */
html, body {
    zoom: 100% !important;
} 