.toast-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 40px 60px;
    border-radius: 5px;
    font-size: 24px;
    z-index: 1000;
    transition: opacity 0.5s ease-in-out;
    max-width: 550px;
    text-align: center;
    line-height: 30px;
    width: max-content;
}

.toast-red {
    background: rgb(180, 26, 26);
}

.toast-green {
    background: rgb(70, 180, 26);
}