/* Styles for Notifications and pips */
.unt_container { 
    display:block;
    position: relative;
    width:90%;
    margin:0.5em auto 2em auto;
    padding:0.5em;
    z-index: 1;
    /* "card" styling */
    border: 1px solid #e3e3e3;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13), 0 3px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.unt_inner_wrapper {
    margin:0;
    padding:0.5em;
    outline: 2px solid #820000;
    background-color:#fdf1f1;
}

.unt_header {
    font-size:1.5em;
    color: #820000;
    font-weight: bold;
}

.unt_text {
    margin-bottom:0;
}

.unt_active_update::after {
    display:inline-block;
    background-color:#B1040E;
    content:'';
    font-size:1em;
    height: 12px;
    position: relative;
    top:-5px;
    left:1px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    transition: height 0.25s ease-out, background-color 0.25s ease-out;
}
.unt_active_update:hover::after {
    height:18px;
    background-color:#E50808;
}