﻿.toast-message {
    position: fixed;
    right: 24px;
    bottom: 24px;
    min-width: 280px;
    max-width: 420px;
    padding: 14px 18px;
    border-radius: 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all .25s ease;
    z-index: 999999;
}

    .toast-message.show {
        opacity: 1;
        transform: translateY(0);
    }

    .toast-message.success {
        background: linear-gradient(135deg, #16a34a, #22c55e);
    }

    .toast-message.error {
        background: linear-gradient(135deg, #dc2626, #ef4444);
    }

    .toast-message.info {
        background: linear-gradient(135deg, #2563eb, #38bdf8);
    }
