#notificationToast {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    animation: toast-slide-in 0.5s ease-out;
    transition: all 0.3s ease;
}

#notificationToast .flex-sty04 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
}

#notificationToast .flex-sty04 strong {
    font-size: 14px;
    color: #333;
}

#notificationToast .fa-close {
    color: #888;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s;
}

#notificationToast .fa-close:hover {
    color: #333;
}

#notificationToast .ma-t15 {
    padding: 15px;
    font-size: 14px;
    color: #555;
}

#notificationToast.fade-out {
    opacity: 0;
    transform: translateX(20px);
}

@keyframes toast-slide-in {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}