.toastmsg {
    position: fixed;
    left: 0;
    right: 0;
    margin:auto;
    max-width: 400px;
    padding: 6px;
    background-color: #ccc;
    color: #333;
    font-family: sans-serif;
    text-align: center;
    border: 1px solid #aaa;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s, top 0.2s, visibility 0.2s;
}

.toastmsg--visible {
    top: 110px;
    opacity: 1;
    visibility: visible;
}

.toastmsg--success {
    background-color: #00c02b;
    border-color: #009d23;
    color: #fff;
}

.toastmsg--error {
    background-color: #d50000;
    border-color: #ba0000;
    color: #fff;
}