#messages:has(.notification) {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 0.25rem;
}
.notification {
    background-color: var(--accomplished_blue);
    color: white;
    border-radius: 4px;
    padding: 1rem;
    position: relative;
}
.notification.is-success {
    background-color: #00A0DD;
    color: #fff;
}
.notification.is-danger {
    background-color: #f14668;
    color: #fff;
}
.notification>.delete {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: rgba(10,10,10,.2);
    border: none;
    border-radius: 290486px;
    cursor: pointer;
    pointer-events: auto;
    display: inline-block;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 0;
    height: 20px;
    max-height: 20px;
    max-width: 20px;
    min-height: 20px;
    min-width: 20px;
    outline: 0;
    /* position: relative; */
    vertical-align: top;
    width: 20px;
}
.notification>.delete::after, .notification>.delete::before {
    background-color: #fff;
    content: "";
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform-origin: center center;
}
.notification>.delete::before {
    height: 2px;
    width: 50%;
}
.notification>.delete::after {
    height: 50%;
    width: 2px;
}
.notification p {
    margin: 0;
    padding: 0;
    font-size: 1rem;

    a {
        color: inherit;
        text-decoration: underline;
    }
}