/*
 * Smooth slide for the hover-revealed sidebar on desktop.
 *
 * Filament intentionally disables the sidebar transition on desktop
 * (the `lg:transition-none` utility), so with sidebarFullyCollapsibleOnDesktop()
 * the peek-open/close happens instantly and feels janky. We re-enable a
 * transition just for the transform (the property that slides it in/out).
 */
@media (min-width: 1024px) {
    .fi-main-sidebar {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        will-change: transform;
    }
}
