.app-blocker-ab {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    touch-action: none;
}

.loader-box-ab {
    text-align: center;
    font-size: 16px;
    color: #333;
}

.spinner-ab {
    width: 36px;
    height: 36px;
    margin: 0 auto 12px;
    border: 4px solid #ddd;
    border-top-color: #1976d2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.anchor-style {
    color: dodgerblue;
}

.shimmer-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
}

.shimmer {
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient( 90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100% );
    animation: shimmerMove 1.5s infinite;
}

@keyframes shimmerMove {
    100% {
        transform: translateX(300%);
    }
}

/* Optional fade-in when content loads */
.fade-in {
    animation: fadeIn 0.3s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
