/* Transient corner toast — the single, app-wide success/error notification.
   Fired by tonchoToast() in /js/toncho-utils.js from three places: the AJAX
   edit/create drawer save, the inline delete flow, and the classic full-page
   redirect-with-flash bridge (resources/views/layouts/flash-toast.blade.php).
   Loaded by both layouts.app and layouts.auth so every screen shares it. */
.toncho-toast {
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 1100;
    max-width: 360px;
    padding: 12px 16px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 6px 20px rgba(11, 30, 58, 0.22);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.toncho-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.toncho-toast--ok {
    background: #00a65a;
}
.toncho-toast--error {
    background: #dd4b39;
}
