/* Custom styles beyond Tailwind */

/* Smooth transitions for sidebar */
#sidebar {
    transition: width 0.2s ease-in-out;
}

/* Hide scrollbar but allow scrolling */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Mobile nav safe area for notched devices */
#mobile-nav {
    padding-bottom: env(safe-area-inset-bottom, 0);
}

/* Add bottom padding to main content on mobile to account for nav bar */
@media (max-width: 767px) {
    #main-content {
        padding-bottom: 4rem;
    }
}

/* htmx loading indicator */
.htmx-indicator {
    display: none;
}
.htmx-request .htmx-indicator {
    display: inline-block;
}
