/* Global Toast Container with backdrop */
#global-toast-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
    backdrop-filter: blur(6px); 
}

/* Toast Base Style */
.global-toast {
    padding: 12px 20px;
    margin-bottom: 50px;
    margin-left: 50px;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    min-width: 200px;
    max-width: 300px;
    word-wrap: break-word;
    opacity: 0;
    position: relative;
        transition: opacity 0.3s ease, transform 0.3s ease;
    text-align: center;
    pointer-events: auto;
    transform: translateX(-100);
}

/* Show animation */
.global-toast.show { 
    opacity: 1;
    transform: translateX(0);

}

/* Toast Types */
.global-toast.success { background-color: #28a745; }
.global-toast.error   { background-color: #dc3545; }
.global-toast.notice  { background-color: #2196F3; } /* آبی برای اطلاع رسانی */
