
    /* Demure Toast Styling */
    .plot-toast {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        z-index: 9999;

        /* Layout */
        display: flex;
        align-items: center;
        padding: 1rem 1.5rem;
        min-width: 300px;
        max-width: 450px;

        /* Aesthetic: Glassmorphism */
        background: rgba(15, 23, 42, 0.9); /* Matching var(--plot-dark) with slight transparency */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        color: #ffffff;

        /* Border & Shadow */
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);

        /* Typography */
        font-size: 0.95rem;
        font-weight: 500;
        letter-spacing: -0.01em;
        line-height: 1.4;
    }

    /* Accent indicator */
    .plot-toast::before {
        content: '';
        position: absolute;
        left: 0;
        top: 25%;
        height: 50%;
        width: 4px;
        background: var(--plot-accent);
        border-radius: 0 4px 4px 0;
    }

    /* Alpine.js Transitions */
    [x-cloak] { display: none !important; }

    .plot-toast[x-show="false"] {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    /* Mobile Responsiveness */
    @media (max-width: 640px) {
        .plot-toast {
            bottom: 1.5rem;
            right: 1.5rem;
            left: 1.5rem;
            min-width: auto;
        }
    }
