/* Simple toast notifications styles (additional to inline styles) */
#site-notifications-container {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}
.site-notification {
    animation: site-toast-in 220ms ease-out;
}
.site-notification--success { }
.site-notification--error { }
.site-notification--warning { }

@keyframes site-toast-in {
    from { transform: translateY(8px) scale(0.98); opacity: 0 }
    to { transform: translateY(0) scale(1); opacity: 1 }
}
