#toast {
    position: fixed;
    right: 0;
    bottom: 0;
    margin: 1rem;
    width: 16rem;
    height: 4rem;
    border-radius: 0.5rem;
    padding: 0.8rem;
    border: 1px solid #ccc;
    font-family: Arial, Helvetica, sans-serif;
}

#toast hr {
    margin: 0.3rem;
}

#toastTitle {
    margin: 0;
}

#toastBody {
    margin: 0;
    font-size: small;
}

.fade-out {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 300ms, opacity 300ms;
}

.fade-in {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 300ms;
}