
.toast-container-custom {
    position: fixed;
    bottom: 30px; /* فاصله از پایین */
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 90%;
}

.custom-toast {
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    color: #fff;
    outline-offset: 3px;
    box-shadow: 2px 2px 5px #4d4d4d, inset 2px 2px 5px #4d4d4d5c;
    animation: fadeInOut 3s ease forwards;
}

/* رنگ پیام‌ها براساس نوع */
.custom-toast.error {
    background: #e74c3c;
}

.custom-toast.success {
    background: #2ecc71;
}

.custom-toast.warning {
    background: #f39c12;
}

.custom-toast.info {
    background: #3498db;
}

.custom-toast.danger {
    background: #e74c3c;
}

/* انیمیشن */
@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}
