.toast-container-success {
    position: fixed;
    top: 50px;
    left: 50px;
    width: 250px;
    padding: 10px;
    z-index: 2000;
    background-color: #9ee995;
    border: 1px solid #52e94a;
    border-radius: 4px;
    display: none;
    color: black;
}

.toast-container-error {
    position: fixed;
    top: 50px;
    left: 50px;
    width: 250px;
    padding: 10px;
    z-index: 2000;
    background-color: rgb(255, 94, 89);
    border: 1px solid rgb(255, 45, 39);
    border-radius: 4px;
    display: none;
    color: white;
}
