/* Base tweaks on top of Tailwind CDN */

html {
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* Toast animation */
@keyframes bo-toast-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.bo-toast {
    animation: bo-toast-in .18s ease-out;
}

/* Thin scrollbars in sidebar */
#sidebar nav::-webkit-scrollbar { width: 6px; }
#sidebar nav::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 3px; }
