/* EdCare Core Plugin Styles - Namespaced to prevent conflicts */

.edcare-processing {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.edcare-block-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 999;
}

.edcare-block-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 1000;
}

/* Ensure EdCare styles don't interfere with other plugins */
.edcare-core-widget {
    /* Scope all EdCare widget styles within this class */
}

/* JetEngine compatibility - ensure our styles don't affect JetEngine elements */
.jet-listing-grid .edcare-processing,
.jet-listing .edcare-processing,
.elementor-widget-jet-listing-grid .edcare-processing {
    position: static;
    pointer-events: auto;
    opacity: 1;
}

.jet-listing-grid .edcare-block-overlay,
.jet-listing .edcare-block-overlay,
.elementor-widget-jet-listing-grid .edcare-block-overlay {
    display: none;
}