/* ===============================
   LOADER FULLSCREEN
==================================*/
#aatti-loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.7);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

#aatti-loader-overlay .spinner-border {
    width: 3rem;
    height: 3rem;
}


/* ===============================
   TOAST NOTIFY
==================================*/
#aatti-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    min-width: 260px;
    max-width: 340px;
    padding: 12px 16px;
    border-radius: 6px;
    color: #fff;
    z-index: 99999;
    opacity: 0;
    transform: translateY(20px);
    transition: all .3s ease;
}

#aatti-toast.show {
    opacity: 1;
    transform: translateY(0);
}

#aatti-toast.success { background: #28a745; }
#aatti-toast.danger  { background: #dc3545; }
#aatti-toast.warning { background: #ffc107; color:#000; }
#aatti-toast.info    { background: #17a2b8; }
