/* Toast Wrapper - FULLY click-through */
.toast-wrapper {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    pointer-events: none !important;   /* KEY FIX */
}

/* Toast message */
.toast-message {
    min-width: 250px;
    padding: 14px 20px;
    border-radius: 8px;
    color: white;
    font-size: 15px;

    pointer-events: none !important;   /* Prevent ANY blocking */

    opacity: 0;
    transform: translateY(-20px);
    animation: slideIn .5s forwards, fadeOut .5s 3s forwards;
}

/* Toast types */
.toast-success { background: #28a745; }
.toast-danger  { background: #dc3545; }
.toast-info    { background: #0d6efd; }

@keyframes slideIn {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    to { opacity: 0; transform: translateY(-20px); }
}
