.container-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 99;
}

.notify-toast {
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.notify-toast-success {
    background-color:#4CAF50;
}

.notify-toast-error {
    background-color:#f44336;
}

.active {
    opacity: 1;
    transform: translateX(0%);
}