@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.animate-in {
    animation: zoomIn 0.2s ease-out;
}
#search-dialog .hide-scrollbar::-webkit-scrollbar {
    display: none;
}
#search-dialog .hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}