/* لودر خفيف — بدون backdrop-filter */
#consultant-page-loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: #f5f8ff;
    pointer-events: all;
}

#consultant-page-loader-overlay.cpl-hidden {
    display: none;
}

#consultant-page-loader-overlay .cpl-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(39, 179, 246, 0.18);
    border-top-color: #27b3f6;
    border-radius: 50%;
    animation: cpl-spin 0.9s linear infinite;
    will-change: transform;
}

#consultant-page-loader-overlay .cpl-text {
    margin: 0;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2b3674;
}

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

@media (prefers-reduced-motion: reduce) {
    #consultant-page-loader-overlay .cpl-spinner {
        animation: none;
        border-top-color: #27b3f6;
    }
}
