/* ===== Toast Notification System ===== */
#alert__msg{
    position: fixed;
    z-index: 999999;
    top: 100px;
    right: -420px;
    width: 380px;
    max-width: calc(100vw - 30px);
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #555;
    border-left: 3px solid rgba(69, 157, 201, 0.6);
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 2px 12px rgba(0,0,0,0.08);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    display: block;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#alert__msg.nemo-toast-visible{
    right: 0;
}

/* Type variants */
#alert__msg.success{
    border-left-color: rgba(52, 199, 89, 0.6);
}
#alert__msg.warning{
    border-left-color: rgba(255, 149, 0, 0.6);
}
#alert__msg.danger{
    border-left-color: rgba(255, 59, 48, 0.6);
}
#alert__msg.info{
    border-left-color: rgba(69, 157, 201, 0.6);
}

/* Title */
.alert__title{
    font-weight: 500;
    font-size: 13px;
    color: #444;
}

/* Message body */
.alert_message{
    line-height: 1.4;
    padding-top: 4px;
    font-size: 12px;
    color: #777;
}

/* OK button — hidden, toast auto-dismisses */
.alert__ok{
    display: none;
}

/* Mobile */
@media(max-width: 500px){
    #alert__msg{
        width: 260px;
        right: -280px;
        top: 75px;
    }
}

/* ===== Loader cover (unchanged) ===== */
.local-cover{
    position: absolute;
    z-index: 99999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.75) url(/images/common/loader.svg) no-repeat 50% 50%;
}

#loader{
    position: fixed;
    z-index: 99999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.75) url(/images/common/loader.svg) no-repeat 50% 50%;
}
