﻿#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000000;
}

.toast {
    background-color: #e74c3c;
    color: #fff;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    min-width: 250px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: Vazir,sans-serif;
    animation: fadeInOut 4s ease forwards;
}
.toast-success {
    background-color: #28a745; /* سبز */
}

.toast-error {
    background-color: #dc3545; /* قرمز */
}

.toast-warning {
    background-color: #ffc107; /* زرد تیره */
    color: #000;
}

.toast-info {
    background-color: #17a2b8; /* آبی آگاه‌سازی */
}


@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    90% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}
