﻿.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
}

.toast-message {
    min-width: 340px;
    padding: 18px 22px;
    border-radius: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 45px rgba(15,23,42,0.18);
    animation: slideIn .3s ease;
    font-weight: 600;
}

    .toast-message.success {
        background: linear-gradient(135deg,#16a34a,#22c55e);
    }

    .toast-message.error {
        background: linear-gradient(135deg,#dc2626,#ef4444);
    }

    .toast-message.warning {
        background: linear-gradient(135deg,#d97706,#f59e0b);
    }

    .toast-message.info {
        background: linear-gradient(135deg,#2563eb,#3b82f6);
    }

.toast-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

@keyframes slideIn {

    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
