﻿@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* الأساس */
#toast-container > .toast {
    direction: rtl;
    border-radius: 14px;
    padding: 16px 22px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    /* تأكد أن overflow visible لعمل التحريك خارج الشاشة */
    overflow: visible;
}

/* كلاس دخول وخروج سنضيفهما عبر JS */
.toast.toast-opening {
    animation: slideInRight 0.6s forwards;
}

.toast.toast-closing {
    animation: slideOutRight 0.5s forwards;
}

/* ألوان - مثال */
.toast-success {
    background-color: #d4af37 !important;
    color: #000 !important;
}

.toast-error {
    background-color: #000 !important;
    color: #fff !important;
}
