.banner-alert {
    background-color: red;
    color: yellow;
    text-align: center;
    font-weight: bold;
    margin-bottom: 1ch;
    display: none;

    &[data-message]{
        display: block;
        &::after{
            content: attr(data-message);
        }
    }
}

