/* Custom animations for sidebar - minimal CSS for Tailwind compatibility */

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}

/* Custom scrollbar hiding for better cross-browser support */
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Smooth transform utilities for complex animations */
.transform-gpu {
    transform: translateZ(0);
}
