
.notify {
    position: relative;
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    color: white;
    background-color: #24292f;
    border: 1px solid black;
    border-radius: 5px;
    padding: 8px;
    margin: 8px 0;
}

.notify .callout {
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translate(-50%);
    color: white;
    background: red;
    border: 1px solid black;
    border-radius: 12px;
    font-size: 60%;
    padding: 2px 12px;
}

.notify .icon::before {
    content: "\f0a1";
    font-family: 'Font Awesome 6 Free';
    /* font-weight: 500; */
    color: white;
}

.notify .messages {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notify .messages a {
    font-size: 80%;
    color: white!important;
}


.notify .messages a.memauth::before {
    content: "\f4fc";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: steelblue;
    margin-right: 8px;
}

