﻿
.toast-container {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    
    min-width: 300px;
    max-width: 90%;
    padding: 15px 30px;
    border-radius: 50px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 1rem;
    direction: rtl;
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    
    transition: top 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.4s ease-in-out;
}

.toast-container.show {
    /* تغییر مکان نوتیفیکیشن به بالاتر (از 50px به 20px) */
    top: 20px;
    opacity: 1;
}

/* موفقیت */
.toast-success {
    background-color: #16a34a;
    color: #ffffff;
}

/* خطا */
.toast-error {
    background-color: #dc2626;
    color: #ffffff;
}
