﻿.simple-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 18px;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn .25s ease;
}

    .simple-toast.success {
        background: #28a745;
    }

    .simple-toast.error {
        background: #dc3545;
    }

    .simple-toast.warning {
        background: #ffc107;
        color: black;
    }

    .simple-toast.info {
        background: #17a2b8;
    }

.icon {
    font-size: 18px;
    font-weight: bold;
}

@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}
