/* ============================================
   toast.css — 2027.js maketoast()
   ============================================ */

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: var(--z-toast, 1000);
    max-width: 300px;
    padding: 15px 20px;
    color: var(--color-toast-fg, #fff);
    background-color: var(--color-toast-bg, #333);
    border-radius: var(--radius-md, 5px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-family: var(--font-sans, system-ui, sans-serif);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}
