/* style.css */
/* Animasi Khusus untuk Modal */
.modal-show {
    display: flex !important;
    opacity: 1 !important;
}

.modal-content-show {
    transform: scale(1) !important;
}

/* Scrollbar Kustom */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #D0E7E6; 
}
::-webkit-scrollbar-thumb {
    background: #95CCDD; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4274D9; 
}

/* Micro-animations untuk tombol dan kartu */
.mode-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mode-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(41, 54, 129, 0.1), 0 8px 10px -6px rgba(41, 54, 129, 0.1);
}

button {
    transition: all 0.2s ease-in-out;
}
button:active {
    transform: scale(0.97);
}
