/* Sidebar Transitions - Fast Animations */
.collapsing {
    transition: height 0.15s ease !important;
}

.collapse {
    transition: height 0.15s ease !important;
}

/* Override Bootstrap's default transition duration */
.sidebar-nav .collapse {
    transition: height 0.15s ease !important;
}

.sidebar-nav .collapsing {
    transition: height 0.15s ease !important;
}

/* Ensure smooth arrow rotation */
.sidebar-nav .has-arrow .arrow {
    transition: transform 0.15s ease !important;
}

/* Active state transitions */
.sidebar-nav .nav-item.active > a {
    transition: all 0.15s ease !important;
}

.sidebar-nav .nav-link:hover {
    transition: all 0.15s ease !important;
} 