/* Site-wide "PORTAL LOCKED" badge. Rendered only for Admins while the portal lock is on
   (see PortalLockIndicatorViewComponent). Fixed to the top-center of the viewport so it stays
   visible on every page and while scrolling, without pushing page content down. */
.portal-lock-indicator {
    position: fixed;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.4rem;
    border-radius: 999px;
    background: #b91c1c;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
    /* Purely informational - never intercept clicks meant for the page underneath. */
    pointer-events: none;
}

.portal-lock-indicator__icon {
    font-size: 0.95rem;
}

.portal-lock-indicator__text {
    font-size: 1rem;
    text-transform: uppercase;
}

[data-theme="dark"] .portal-lock-indicator {
    background: #dc2626;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}
