.message {
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-weight: 500;
    position: absolute;
    inset: 0 0 auto 0;
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease-out;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.message-success {
    background-color: rgb(0, 158, 0);
}

.message-error {
    background-color: rgb(158, 0, 0);
}

.message-info {
    background-color: rgb(158, 134, 0);
}