/* /Components/DesignSystem/ActionHub/BbiActionHub.razor.rz.scp.css */
.bbi-action-hub[b-1ejcwzz6f5] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
    border: 1px solid var(--bbi-border, #e2e8f0);
    border-radius: 1rem;
    background: var(--bbi-surface, #ffffff);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.bbi-action-hub__header[b-1ejcwzz6f5] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.bbi-action-hub__heading[b-1ejcwzz6f5] {
    min-width: 0;
}

.bbi-action-hub__eyebrow[b-1ejcwzz6f5] {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--bbi-primary, #0f5b92);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bbi-action-hub__title[b-1ejcwzz6f5] {
    margin: 0;
    color: var(--bbi-text, #0f172a);
    font-size: 1.35rem;
    line-height: 1.2;
}

.bbi-action-hub__subtitle[b-1ejcwzz6f5] {
    margin: 0.4rem 0 0;
    color: var(--bbi-text-muted, #64748b);
    font-size: 0.9rem;
    line-height: 1.4;
}

.bbi-action-hub__header-actions[b-1ejcwzz6f5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================================
   GRID PRINCIPAL
   ========================================================== */

.bbi-action-hub__grid[b-1ejcwzz6f5] {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
    width: 100%;
}

/* ==========================================================
   CONTENIDO CONTEXTUAL
   ========================================================== */

.bbi-action-hub__content[b-1ejcwzz6f5] {
    width: 100%;
    padding-top: 1.15rem;
    border-top: 1px solid var(--bbi-border, #e2e8f0);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1280px) {
    .bbi-action-hub__grid[b-1ejcwzz6f5] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .bbi-action-hub__grid[b-1ejcwzz6f5] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .bbi-action-hub[b-1ejcwzz6f5] {
        padding: 1rem;
    }

    .bbi-action-hub__header[b-1ejcwzz6f5] {
        flex-direction: column;
    }

    .bbi-action-hub__grid[b-1ejcwzz6f5] {
        grid-template-columns: 1fr;
    }
}
/* /Components/DesignSystem/ActionHub/BbiActionHubItem.razor.rz.scp.css */
.bbi-action-hub-item[b-046b1w1s3t] {
    --bbi-action-accent: #0f5b92;
    --bbi-action-soft: #f8fafc;
    --bbi-action-border: #e2e8f0;
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
    min-height: 6rem;
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid var(--bbi-action-border);
    border-radius: 1rem;
    background: linear-gradient( 180deg, var(--bbi-action-soft) 0%, #ffffff 100% );
    color: #0f172a;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

    .bbi-action-hub-item:hover[b-046b1w1s3t] {
        transform: translateY(-3px);
        border-color: var(--bbi-action-accent);
        box-shadow: 0 12px 28px color-mix( in srgb, var(--bbi-action-accent) 16%, transparent );
    }

    .bbi-action-hub-item:focus-visible[b-046b1w1s3t] {
        outline: 3px solid color-mix( in srgb, var(--bbi-action-accent) 25%, transparent );
        outline-offset: 2px;
    }


/* =========================================================
   ICONO
   ========================================================= */

.bbi-action-hub-item__icon[b-046b1w1s3t] {
    display: grid;
    place-items: center;
    width: 2.8rem;
    height: 2.8rem;
    flex-shrink: 0;
    border-radius: 0.85rem;
    background: var(--bbi-action-soft);
    color: var(--bbi-action-accent);
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px color-mix( in srgb, var(--bbi-action-accent) 15%, transparent );
}


/* =========================================================
   TEXTO
   ========================================================= */

.bbi-action-hub-item__body[b-046b1w1s3t] {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 0.3rem;
}

.bbi-action-hub-item__title[b-046b1w1s3t] {
    color: #172033;
    font-size: 0.92rem;
    font-weight: 750;
    line-height: 1.25;
}

.bbi-action-hub-item__description[b-046b1w1s3t] {
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.4;
}


/* =========================================================
   FLECHA
   ========================================================= */

.bbi-action-hub-item__arrow[b-046b1w1s3t] {
    color: var(--bbi-action-accent);
    font-size: 1.2rem;
    font-weight: 800;
    opacity: 0.65;
    transition: transform 160ms ease, opacity 160ms ease;
}

.bbi-action-hub-item:hover
.bbi-action-hub-item__arrow[b-046b1w1s3t] {
    transform: translateX(4px);
    opacity: 1;
}


/* =========================================================
   TONOS
   ========================================================= */

.bbi-action-hub-item--default[b-046b1w1s3t] {
    --bbi-action-accent: #0f5b92;
    --bbi-action-soft: #f5f9fc;
    --bbi-action-border: #d9e4ed;
}

.bbi-action-hub-item--success[b-046b1w1s3t] {
    --bbi-action-accent: #16834b;
    --bbi-action-soft: #f0fdf4;
    --bbi-action-border: #bbf7d0;
}

.bbi-action-hub-item--primary[b-046b1w1s3t] {
    --bbi-action-accent: #0f5b92;
    --bbi-action-soft: #eff6ff;
    --bbi-action-border: #bfdbfe;
}

.bbi-action-hub-item--neutral[b-046b1w1s3t] {
    --bbi-action-accent: #475569;
    --bbi-action-soft: #f8fafc;
    --bbi-action-border: #cbd5e1;
}

.bbi-action-hub-item--info[b-046b1w1s3t] {
    --bbi-action-accent: #0284c7;
    --bbi-action-soft: #f0f9ff;
    --bbi-action-border: #bae6fd;
}

.bbi-action-hub-item--accent[b-046b1w1s3t] {
    --bbi-action-accent: #7c3aed;
    --bbi-action-soft: #f5f3ff;
    --bbi-action-border: #ddd6fe;
}


/* =========================================================
   SELECCIONADO
   ========================================================= */

.bbi-action-hub-item--selected[b-046b1w1s3t] {
    border-color: var(--bbi-action-accent);
    background: linear-gradient( 180deg, color-mix( in srgb, var(--bbi-action-accent) 12%, #ffffff ) 0%, color-mix( in srgb, var(--bbi-action-accent) 5%, #ffffff ) 100% );
    box-shadow: 0 0 0 2px color-mix( in srgb, var(--bbi-action-accent) 10%, transparent ), 0 12px 28px color-mix( in srgb, var(--bbi-action-accent) 18%, transparent );
    transform: translateY(-2px);
}

    .bbi-action-hub-item--selected[b-046b1w1s3t]::before {
        content: "";
        position: absolute;
        left: 0.75rem;
        right: 0.75rem;
        bottom: -1px;
        height: 3px;
        border-radius: 999px 999px 0 0;
        background: var(--bbi-action-accent);
    }

    .bbi-action-hub-item--selected
    .bbi-action-hub-item__icon[b-046b1w1s3t] {
        background: var(--bbi-action-accent);
        color: #ffffff;
        box-shadow: 0 6px 16px color-mix( in srgb, var(--bbi-action-accent) 28%, transparent );
    }

    .bbi-action-hub-item--selected
    .bbi-action-hub-item__arrow[b-046b1w1s3t] {
        opacity: 1;
        transform: translateX(3px);
    }

/* =========================================================
   DESHABILITADO
   ========================================================= */

.bbi-action-hub-item--disabled[b-046b1w1s3t] {
    opacity: 0.5;
    cursor: not-allowed;
}

    .bbi-action-hub-item--disabled:hover[b-046b1w1s3t] {
        transform: none;
        border-color: var(--bbi-action-border);
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    }


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 640px) {
    .bbi-action-hub-item[b-046b1w1s3t] {
        min-height: 5.5rem;
        padding: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bbi-action-hub-item[b-046b1w1s3t],
    .bbi-action-hub-item__arrow[b-046b1w1s3t] {
        transition: none;
    }

        .bbi-action-hub-item:hover[b-046b1w1s3t] {
            transform: none;
        }
}
/* /Components/DesignSystem/Crud/BbiCrud.razor.rz.scp.css */
.bbi-crud[b-4s8re3b7ik] {
    width: 100%;
}

.bbi-crud__header[b-4s8re3b7ik] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 0.5rem;
    margin-bottom: 1rem;
}

    .bbi-crud__header > div:first-child[b-4s8re3b7ik] {
        min-width: 0;
        flex: 1 1 420px;
    }

.bbi-crud__header-actions[b-4s8re3b7ik] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    flex-wrap: wrap;
    flex: 0 0 auto;
    padding-top: 0.25rem;
}

.bbi-crud__eyebrow[b-4s8re3b7ik] {
    display: block;
    margin-bottom: 0.25rem;
}

.bbi-crud__title[b-4s8re3b7ik] {
    margin-top: 0;
    margin-bottom: 0.35rem;
}

.bbi-crud__subtitle[b-4s8re3b7ik] {
    margin-top: 0;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .bbi-crud__header[b-4s8re3b7ik] {
        flex-direction: column;
    }

    .bbi-crud__header-actions[b-4s8re3b7ik] {
        width: 100%;
        justify-content: flex-start;
    }
}
/* /Components/DesignSystem/Forms/BbiMultiSelect.razor.rz.scp.css */
.bbi-multiselect[b-da7u706j2a] {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(9rem, 1fr) );
    gap: 0.65rem;
    margin-top: 0.45rem;
}

.bbi-multiselect__option[b-da7u706j2a] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 3rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--bbi-border);
    border-radius: 0.75rem;
    background: var(--bbi-surface);
    color: var(--bbi-text);
    cursor: pointer;
    transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

    .bbi-multiselect__option:hover[b-da7u706j2a] {
        border-color: var(--bbi-primary);
        background: var(--bbi-background);
    }

.bbi-multiselect__option--selected[b-da7u706j2a] {
    border-color: var(--bbi-primary);
    background: color-mix( in srgb, var(--bbi-primary) 8%, var(--bbi-surface) );
    box-shadow: 0 0 0 1px color-mix( in srgb, var(--bbi-primary) 20%, transparent );
}

.bbi-multiselect__option--disabled[b-da7u706j2a] {
    opacity: 0.55;
    cursor: not-allowed;
}

.bbi-multiselect__checkbox[b-da7u706j2a] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.bbi-multiselect__indicator[b-da7u706j2a] {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 1.35rem;
    height: 1.35rem;
    border: 1px solid var(--bbi-border);
    border-radius: 0.4rem;
    background: var(--bbi-surface);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    transition: border-color 150ms ease, background-color 150ms ease;
}

.bbi-multiselect__option--selected
.bbi-multiselect__indicator[b-da7u706j2a] {
    border-color: var(--bbi-primary);
    background: var(--bbi-primary);
}

.bbi-multiselect__text[b-da7u706j2a] {
    min-width: 0;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
}

.bbi-multiselect__option:has( .bbi-multiselect__checkbox:focus-visible )[b-da7u706j2a] {
    outline: 2px solid var(--bbi-primary);
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .bbi-multiselect[b-da7u706j2a] {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bbi-multiselect__option[b-da7u706j2a],
    .bbi-multiselect__indicator[b-da7u706j2a] {
        transition: none;
    }
}
/* /Components/DesignSystem/Notifications/BbiToastContainer.razor.rz.scp.css */
.bbi-toast-container[b-yqs7muktvr] {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: min(24rem, calc(100vw - 2rem));
    pointer-events: none;
}

.bbi-toast[b-yqs7muktvr] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    gap: 0.875rem;
    padding: 1rem;
    background: var(--bbi-color-surface, #ffffff);
    border: 1px solid var(--bbi-color-border, #e5e7eb);
    border-left-width: 4px;
    border-radius: 0.875rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
    pointer-events: auto;
    animation: bbi-toast-enter-b-yqs7muktvr 180ms ease-out;
}

.bbi-toast--success[b-yqs7muktvr] {
    border-left-color: #16a34a;
}

.bbi-toast--warning[b-yqs7muktvr] {
    border-left-color: #d97706;
}

.bbi-toast--error[b-yqs7muktvr] {
    border-left-color: #dc2626;
}

.bbi-toast--info[b-yqs7muktvr] {
    border-left-color: #2563eb;
}

.bbi-toast__icon[b-yqs7muktvr] {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 800;
}

.bbi-toast--success .bbi-toast__icon[b-yqs7muktvr] {
    color: #15803d;
    background: #dcfce7;
}

.bbi-toast--warning .bbi-toast__icon[b-yqs7muktvr] {
    color: #b45309;
    background: #fef3c7;
}

.bbi-toast--error .bbi-toast__icon[b-yqs7muktvr] {
    color: #b91c1c;
    background: #fee2e2;
}

.bbi-toast--info .bbi-toast__icon[b-yqs7muktvr] {
    color: #1d4ed8;
    background: #dbeafe;
}

.bbi-toast__content[b-yqs7muktvr] {
    min-width: 0;
}

.bbi-toast__title[b-yqs7muktvr] {
    display: block;
    margin-bottom: 0.25rem;
    color: var( --bbi-color-text, #111827);
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.bbi-toast__message[b-yqs7muktvr] {
    margin: 0;
    color: var( --bbi-color-text-muted, #64748b);
    font-size: 0.8125rem;
    line-height: 1.35rem;
}

.bbi-toast__close[b-yqs7muktvr] {
    display: grid;
    place-items: center;
    width: 1.75rem;
    height: 1.75rem;
    padding: 0;
    color: #64748b;
    background: transparent;
    border: 0;
    border-radius: 0.375rem;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}

    .bbi-toast__close:hover[b-yqs7muktvr] {
        color: #111827;
        background: #f1f5f9;
    }

    .bbi-toast__close:focus-visible[b-yqs7muktvr] {
        outline: 2px solid #2563eb;
        outline-offset: 2px;
    }

@keyframes bbi-toast-enter-b-yqs7muktvr {
    from {
        opacity: 0;
        transform: translateX(1rem);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 640px) {
    .bbi-toast-container[b-yqs7muktvr] {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        width: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bbi-toast[b-yqs7muktvr] {
        animation: none;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.bbi-shell[b-dyu37hwvm2] {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background: var(--bbi-bg-app, #f5f7fa);
}

.bbi-shell__main[b-dyu37hwvm2] {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    min-height: 100vh;
}

.bbi-shell__content[b-dyu37hwvm2] {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.bbi-shell__workspace[b-dyu37hwvm2] {
    flex: 1;
    min-width: 0;
    padding: 24px 28px 32px;
    overflow-x: hidden;
}

/* Tablet */
@media (max-width: 1024px) {
    .bbi-shell__workspace[b-dyu37hwvm2] {
        padding: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .bbi-shell[b-dyu37hwvm2] {
        display: block;
    }

    .bbi-shell__main[b-dyu37hwvm2] {
        width: 100%;
        min-height: 100vh;
    }

    .bbi-shell__workspace[b-dyu37hwvm2] {
        padding: 16px;
    }
}

/* Blazor error UI */
#blazor-error-ui[b-dyu37hwvm2] {
    color-scheme: light only;
    background: #fff3cd;
    border-top: 1px solid #ffe69c;
    bottom: 0;
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.75rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 9999;
}

    #blazor-error-ui .dismiss[b-dyu37hwvm2] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-6ulpbv9e3r] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-6ulpbv9e3r] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-6ulpbv9e3r] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-6ulpbv9e3r] {
    font-size: 1.1rem;
}

.bi[b-6ulpbv9e3r] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-6ulpbv9e3r] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-6ulpbv9e3r] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-6ulpbv9e3r] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-6ulpbv9e3r] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-6ulpbv9e3r] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-6ulpbv9e3r] {
        padding-bottom: 1rem;
    }

    .nav-item[b-6ulpbv9e3r]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-6ulpbv9e3r]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-6ulpbv9e3r]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-6ulpbv9e3r] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-6ulpbv9e3r] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-6ulpbv9e3r] {
        display: none;
    }

    .nav-scrollable[b-6ulpbv9e3r] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-qcfoxwnu6n],
.components-reconnect-repeated-attempt-visible[b-qcfoxwnu6n],
.components-reconnect-failed-visible[b-qcfoxwnu6n],
.components-pause-visible[b-qcfoxwnu6n],
.components-resume-failed-visible[b-qcfoxwnu6n],
.components-rejoining-animation[b-qcfoxwnu6n] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-qcfoxwnu6n],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-qcfoxwnu6n],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-qcfoxwnu6n],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-qcfoxwnu6n],
#components-reconnect-modal.components-reconnect-retrying[b-qcfoxwnu6n],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-qcfoxwnu6n],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-qcfoxwnu6n],
#components-reconnect-modal.components-reconnect-failed[b-qcfoxwnu6n],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-qcfoxwnu6n] {
    display: block;
}


#components-reconnect-modal[b-qcfoxwnu6n] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-qcfoxwnu6n 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-qcfoxwnu6n 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-qcfoxwnu6n 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-qcfoxwnu6n]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-qcfoxwnu6n 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-qcfoxwnu6n {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-qcfoxwnu6n {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-qcfoxwnu6n {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-qcfoxwnu6n] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-qcfoxwnu6n] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-qcfoxwnu6n] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-qcfoxwnu6n] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-qcfoxwnu6n] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-qcfoxwnu6n] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-qcfoxwnu6n] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-qcfoxwnu6n 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-qcfoxwnu6n] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-qcfoxwnu6n {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Layout/Sidebar.razor.rz.scp.css */
.bbi-sidebar[b-g36ew7xaw7] {
    width: 260px;
    min-width: 260px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    background: #ffffff;
    border-right: 1px solid #e5e7eb;
    overflow: hidden;
    z-index: 100;
}

/* =========================================================
   BRAND
   ========================================================= */

.bbi-sidebar__brand[b-g36ew7xaw7] {
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 0 22px;
    border-bottom: 1px solid #eef0f3;
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.bbi-sidebar__navigation[b-g36ew7xaw7] {
    flex: 1;
    padding: 18px 12px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* =========================================================
   SECTIONS
   ========================================================= */

.bbi-sidebar__section[b-g36ew7xaw7] {
    margin-top: 22px;
}

    .bbi-sidebar__section:first-child[b-g36ew7xaw7] {
        margin-top: 0;
    }

.bbi-sidebar__section-title[b-g36ew7xaw7] {
    display: block;
    padding: 0 12px 8px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
}

/* =========================================================
   MAIN ITEMS
   ========================================================= */

.bbi-sidebar__item[b-g36ew7xaw7],
.bbi-sidebar__group[b-g36ew7xaw7] {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #4b5563;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

    .bbi-sidebar__item:hover[b-g36ew7xaw7],
    .bbi-sidebar__group:hover[b-g36ew7xaw7] {
        background: #f3f4f6;
        color: #111827;
    }

/* =========================================================
   ACTIVE ITEM
   ========================================================= */

.bbi-sidebar__item--active[b-g36ew7xaw7] {
    background: #eef4ff;
    color: #1d4ed8;
    font-weight: 600;
}

/* =========================================================
   ICONS
   ========================================================= */

.bbi-sidebar__icon[b-g36ew7xaw7] {
    width: 20px;
    min-width: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

/* =========================================================
   GROUPS
   ========================================================= */

.bbi-sidebar__chevron[b-g36ew7xaw7] {
    margin-left: auto;
    font-size: 14px;
    color: #9ca3af;
}

/* =========================================================
   SUB ITEMS
   ========================================================= */

.bbi-sidebar__subitem[b-g36ew7xaw7] {
    min-height: 36px;
    display: flex;
    align-items: center;
    margin: 2px 0;
    padding: 8px 12px 8px 44px;
    border-radius: 7px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}

    .bbi-sidebar__subitem:hover[b-g36ew7xaw7] {
        background: #f7f8fa;
        color: #111827;
    }

/* =========================================================
   FOOTER
   ========================================================= */

.bbi-sidebar__footer[b-g36ew7xaw7] {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 16px 22px;
    border-top: 1px solid #eef0f3;
    color: #6b7280;
    font-size: 11px;
}

    .bbi-sidebar__footer span[b-g36ew7xaw7] {
        color: #374151;
        font-weight: 700;
        letter-spacing: 0.03em;
    }

    .bbi-sidebar__footer small[b-g36ew7xaw7] {
        color: #9ca3af;
        font-size: 10px;
    }

/* =========================================================
   SCROLLBAR
   ========================================================= */

.bbi-sidebar__navigation[b-g36ew7xaw7] {
    scrollbar-width: thin;
    scrollbar-color: #d1d5db transparent;
}

    .bbi-sidebar__navigation[b-g36ew7xaw7]::-webkit-scrollbar {
        width: 5px;
    }

    .bbi-sidebar__navigation[b-g36ew7xaw7]::-webkit-scrollbar-thumb {
        background: #d1d5db;
        border-radius: 10px;
    }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {
    .bbi-sidebar[b-g36ew7xaw7] {
        display: none;
    }
}
/* /Components/Layout/TopBar.razor.rz.scp.css */
.bbi-topbar[b-k17d6vy0n4] {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 24px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 90;
}

/* =========================================================
   LEFT
   ========================================================= */

.bbi-topbar__left[b-k17d6vy0n4] {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
}

.bbi-topbar__menu-button[b-k17d6vy0n4],
.bbi-topbar__action[b-k17d6vy0n4] {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    border-radius: 9px;
    background: #ffffff;
    color: #4b5563;
    font-family: inherit;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

    .bbi-topbar__menu-button:hover[b-k17d6vy0n4],
    .bbi-topbar__action:hover[b-k17d6vy0n4] {
        background: #f7f8fa;
        border-color: #d1d5db;
        color: #111827;
    }

/* =========================================================
   SEARCH
   ========================================================= */

.bbi-topbar__search[b-k17d6vy0n4] {
    width: min(420px, 100%);
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
    border: 1px solid #e5e7eb;
    border-radius: 9px;
    background: #ffffff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

    .bbi-topbar__search:focus-within[b-k17d6vy0n4] {
        border-color: #93b4e5;
        box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.08);
    }

    .bbi-topbar__search span[b-k17d6vy0n4] {
        color: #9ca3af;
        font-size: 14px;
    }

    .bbi-topbar__search input[b-k17d6vy0n4] {
        width: 100%;
        height: 38px;
        padding: 0;
        border: 0;
        outline: 0;
        background: transparent;
        color: #111827;
        font-family: inherit;
        font-size: 13px;
    }

        .bbi-topbar__search input[b-k17d6vy0n4]::placeholder {
            color: #9ca3af;
        }

/* =========================================================
   RIGHT
   ========================================================= */

.bbi-topbar__right[b-k17d6vy0n4] {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.bbi-topbar__context[b-k17d6vy0n4] {
    display: flex;
    flex-direction: column;
    min-width: 150px;
    line-height: 1.2;
}

.bbi-topbar__context-label[b-k17d6vy0n4] {
    margin-bottom: 3px;
    color: #9ca3af;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bbi-topbar__context strong[b-k17d6vy0n4] {
    color: #374151;
    font-size: 12px;
    font-weight: 600;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
    .bbi-topbar__context[b-k17d6vy0n4] {
        display: none;
    }

    .bbi-topbar__search[b-k17d6vy0n4] {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .bbi-topbar[b-k17d6vy0n4] {
        min-height: 64px;
        padding: 0 16px;
        gap: 12px;
    }

    .bbi-topbar__search[b-k17d6vy0n4] {
        max-width: none;
    }
}

@media (max-width: 560px) {
    .bbi-topbar__search[b-k17d6vy0n4] {
        display: none;
    }

    .bbi-topbar__left[b-k17d6vy0n4] {
        flex: initial;
    }
}
/* /Components/Modules/ThirdParties/pages/ThirdParties.razor.rz.scp.css */
/* ==========================================================
   BBI GLOBAL 360
   MAESTRO DE TERCEROS
   ========================================================== */

.bbi-page[b-21jtw7yxcv] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}


/* ==========================================================
   MENSAJE DEL CENTRO DE ACCIONES
   ========================================================== */

.bbi-third-party-action-message[b-21jtw7yxcv] {
    display: flex;
    align-items: center;
    min-height: 4rem;
    padding: 1rem 1.15rem;
    border: 1px dashed #cbd5e1;
    border-radius: 0.85rem;
    background: linear-gradient( 135deg, #f8fafc 0%, #ffffff 100% );
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.45;
}


/* ==========================================================
   ÁREA DE BÚSQUEDA
   ========================================================== */

.bbi-third-party-search[b-21jtw7yxcv] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.9rem;
    background: linear-gradient( 180deg, #f8fafc 0%, #ffffff 100% );
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.bbi-third-party-search__input[b-21jtw7yxcv] {
    width: 100%;
    max-width: 40rem;
}

.bbi-third-party-search__roles[b-21jtw7yxcv] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
}


/* ==========================================================
   RESULTADOS
   ========================================================== */

.bbi-third-party-results[b-21jtw7yxcv] {
    position: relative;
    max-height: 24rem;
    margin-top: 0.25rem;
    overflow-x: auto;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    border-radius: 0.9rem;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.045);
    scrollbar-gutter: stable;
}

    .bbi-third-party-results[b-21jtw7yxcv]::-webkit-scrollbar {
        width: 10px;
        height: 10px;
    }

    .bbi-third-party-results[b-21jtw7yxcv]::-webkit-scrollbar-track {
        background: #f8fafc;
    }

    .bbi-third-party-results[b-21jtw7yxcv]::-webkit-scrollbar-thumb {
        border: 2px solid #f8fafc;
        border-radius: 999px;
        background: #cbd5e1;
    }

        .bbi-third-party-results[b-21jtw7yxcv]::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }


/* ==========================================================
   CELDA PRINCIPAL DEL TERCERO
   ========================================================== */

.bbi-employee-cell[b-21jtw7yxcv] {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    min-width: 0;
}

    .bbi-employee-cell strong[b-21jtw7yxcv] {
        overflow: hidden;
        color: #1e293b;
        font-size: 0.88rem;
        font-weight: 700;
        line-height: 1.25;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .bbi-employee-cell small[b-21jtw7yxcv] {
        color: #64748b;
        font-size: 0.75rem;
        font-weight: 500;
    }


/* ==========================================================
   ESTADOS
   ========================================================== */

.bbi-status[b-21jtw7yxcv] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.bbi-status--success[b-21jtw7yxcv] {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    color: #15803d;
}

.bbi-status--muted[b-21jtw7yxcv] {
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
}


/* ==========================================================
   CRUD
   ========================================================== */

[b-21jtw7yxcv] .bbi-crud {
    gap: 1rem;
}


/* ==========================================================
   DATAGRID
   ========================================================== */

[b-21jtw7yxcv] .bbi-datagrid {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
}

[b-21jtw7yxcv] .bbi-datagrid__header {
    position: sticky;
    top: 0;
    z-index: 3;
    background: linear-gradient( 180deg, #ffffff 0%, #f8fafc 100% );
}

[b-21jtw7yxcv] .bbi-datagrid table {
    width: 100%;
    min-width: 62rem;
    border-collapse: separate;
    border-spacing: 0;
}

[b-21jtw7yxcv] .bbi-datagrid thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #f8fafc;
}

[b-21jtw7yxcv] .bbi-datagrid tbody tr {
    transition: background-color 140ms ease, box-shadow 140ms ease;
}

    [b-21jtw7yxcv] .bbi-datagrid tbody tr:hover {
        background: #f8fbff;
    }

[b-21jtw7yxcv] .bbi-datagrid th {
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}


/* ==========================================================
   PANEL / FORMULARIO
   ========================================================== */

[b-21jtw7yxcv] .bbi-dynamic-form__section {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 0.9rem;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.035);
}

[b-21jtw7yxcv] .bbi-dynamic-form__section-header {
    padding: 1rem 1.1rem;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient( 180deg, #f8fafc 0%, #ffffff 100% );
}

[b-21jtw7yxcv] .bbi-dynamic-form__section-title {
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 750;
}

[b-21jtw7yxcv] .bbi-dynamic-form__section-description {
    margin-top: 0.25rem;
    color: #64748b;
    font-size: 0.78rem;
    line-height: 1.4;
}

[b-21jtw7yxcv] .bbi-dynamic-form__section-grid {
    padding: 1.1rem;
}


/* ==========================================================
   INPUTS
   ========================================================== */

[b-21jtw7yxcv] .bbi-field__control {
    transition: border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

    [b-21jtw7yxcv] .bbi-field__control:hover:not(:disabled) {
        border-color: #94a3b8;
    }

    [b-21jtw7yxcv] .bbi-field__control:focus {
        border-color: #0f5b92;
        box-shadow: 0 0 0 3px rgba(15, 91, 146, 0.1);
    }


/* ==========================================================
   ACTION HUB
   ========================================================== */

[b-21jtw7yxcv] .bbi-action-hub {
    width: 100%;
    max-width: none;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {

    .bbi-third-party-search__input[b-21jtw7yxcv] {
        max-width: none;
    }

    .bbi-third-party-results[b-21jtw7yxcv] {
        max-height: 22rem;
    }
}

@media (max-width: 640px) {

    .bbi-page[b-21jtw7yxcv] {
        gap: 1rem;
    }

    .bbi-third-party-search[b-21jtw7yxcv] {
        padding: 0.85rem;
    }

    .bbi-third-party-search__roles[b-21jtw7yxcv] {
        align-items: stretch;
        flex-direction: column;
    }

    .bbi-third-party-results[b-21jtw7yxcv] {
        max-height: 20rem;
    }

    [b-21jtw7yxcv] .bbi-dynamic-form__section-grid {
        padding: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    [b-21jtw7yxcv] .bbi-datagrid tbody tr,
    [b-21jtw7yxcv] .bbi-field__control {
        transition: none;
    }
}
