/* 8.207 — بنر و حالت‌های بصریِ نگهبانِ شبکه (RTL، مینیمال، بدونِ Overlay تمام‌صفحه). */

.ng-banner {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 4000;
    padding: .42rem .9rem;
    font-size: .8rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    direction: rtl;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .12);
}

.ng-banner--offline { background: #b91c1c; color: #fff; }
.ng-banner--slow { background: #d97706; color: #fff; }
.ng-banner--ok { background: #15803d; color: #fff; }

/* فرم در حالِ ارسال: دکمه‌های submit قفل و کم‌رنگ؛ کلِ صفحه قفل نمی‌شود. */
.ng-btn-busy {
    opacity: .55;
    pointer-events: none;
    position: relative;
}

/* نشانگرِ کوچکِ چرخان روی لینک/منوی در حالِ بارگذاری. */
.ng-nav-busy { opacity: .65; }
.ng-nav-busy::after {
    content: '';
    display: inline-block;
    width: .65rem;
    height: .65rem;
    margin-inline-start: .35rem;
    vertical-align: -0.05rem;
    border: 2px solid currentColor;
    border-inline-start-color: transparent;
    border-radius: 999px;
    animation: ng-spin .7s linear infinite;
}

@keyframes ng-spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
    .ng-nav-busy::after { animation: none; }
}
