﻿/* Asegura que el tbody tenga posición relativa */
.areaBlocker-target {
    position: relative;
    min-height: 450px;
}

.areaBlocker-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9) !important; /* Fondo semi-transparente */
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    flex-direction: column;
    transition: opacity 0.3s ease;
    opacity: 1;
}

    .areaBlocker-loading-overlay.hidden {
        opacity: 0;
        pointer-events: none;
    }

/* Mantén tus estilos existentes para el contenido */
.areaBlocker-loading-content {
    text-align: center;
    padding: 70px;
}

    .areaBlocker-loading-content i {
        font-size: 24px;
        color: #005bb7;
        margin-bottom: 8px;
    }

.areaBlocker-loading-text {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}
