#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background: #333;
    color: white;
    padding: 12px 50px;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    animation: slideIn 0.3s ease-out forwards;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    direction: rtl;
}

.toast.success { background: #28a746dc; border-right: 5px solid #1e7e34d0; }
.toast.error { background: #dc3545; border-right: 5px solid #bd2130; }
.toast.info { background: #d38b3a; border-right: 5px solid #b5742d; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}