.notification-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 9999;
    animation: fadein 0.5s;
}

.toast-close {
    position: absolute;
    top: 3px;
    right: 3px;
    background: none;
    border: none;
    height: 0;
    cursor: pointer;
    color: #fff;
    padding: 0;
    line-height: 0;
}

.toast-close:hover {
    color: #000;
}
@keyframes fadein {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
