/* _content/ERPUniv.PosWeb/Components/Layout/LoginLayout.razor.rz.scp.css */
.login-layout-shell[b-4zzfg05c0p] {
    min-height: 100vh;
    margin: 0;
    padding: 0;
}
/* _content/ERPUniv.PosWeb/Components/Layout/MainLayout.razor.rz.scp.css */
.pos-layout[b-jxhxeohwen] {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(26, 72, 168, 0.18), transparent 26%), radial-gradient(circle at top right, rgba(18, 48, 112, 0.10), transparent 22%), linear-gradient(180deg, #030a18 0%, #071225 100%);
    overflow-x: hidden;
}

.pos-layout__menu-toggle[b-jxhxeohwen] {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1300;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(100, 142, 255, 0.20);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(17, 31, 66, 0.96), rgba(9, 18, 40, 0.96));
    color: #eef4ff;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
    font-size: 1.35rem;
    transition: left .28s ease, transform .18s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

    .pos-layout__menu-toggle:hover[b-jxhxeohwen] {
        transform: translateY(-1px);
        border-color: rgba(124, 161, 255, 0.34);
        box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
        background: linear-gradient(180deg, rgba(23, 40, 85, 0.98), rgba(11, 21, 48, 0.98));
    }

    /* Cuando el men� est� abierto, recorremos el bot�n para que no tape el logo */
    .pos-layout__menu-toggle.is-open[b-jxhxeohwen] {
        left: 304px;
    }

    /* Cuando est� cerrado, vuelve a su lugar */
    .pos-layout__menu-toggle.is-closed[b-jxhxeohwen] {
        left: 16px;
    }

@media (max-width: 991.98px) {
    .pos-layout__menu-toggle[b-jxhxeohwen] {
        top: 14px;
        left: 14px;
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 1.2rem;
    }

        /* En m�vil no lo recorremos tanto porque el men� es overlay */
        .pos-layout__menu-toggle.is-open[b-jxhxeohwen] {
            left: 230px;
        }

        .pos-layout__menu-toggle.is-closed[b-jxhxeohwen] {
            left: 14px;
        }
}

.pos-layout__main[b-jxhxeohwen] {
    min-height: 100vh;
}

.pos-layout__content[b-jxhxeohwen] {
    min-height: 100vh;
    padding: 90px 20px 24px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 992px) {
    .pos-layout__content[b-jxhxeohwen] {
        padding: 84px 28px 28px;
    }
}

@media (max-width: 991.98px) {
    .pos-layout__menu-toggle[b-jxhxeohwen] {
        top: 14px;
        left: 14px;
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 1.2rem;
    }

    .pos-layout__content[b-jxhxeohwen] {
        padding: 74px 14px 18px;
    }
}


.pos-layout__main[b-jxhxeohwen] {
    position: relative;
    z-index: 1;
}

.pos-layout__content[b-jxhxeohwen] {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 18px;
}
/* _content/ERPUniv.PosWeb/Components/Layout/NavMenu.razor.rz.scp.css */
.pos-nav-shell[b-e0fp944skd] {
    position: relative;
    z-index: 1200;
}

.pos-nav[b-e0fp944skd] {
    position: fixed;
    inset: 0 auto 0 0;
    width: 290px;
    max-width: calc(100vw - 32px);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: linear-gradient(180deg, rgba(5, 18, 46, 0.985) 0%, rgba(2, 10, 29, 0.99) 100%);
    border-right: 1px solid rgba(76, 118, 230, 0.14);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255,255,255,0.02) inset;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateX(0);
    transition: transform .28s ease, box-shadow .28s ease;
    overflow: hidden;
    z-index: 1201;
}

.pos-nav-shell.closed .pos-nav[b-e0fp944skd] {
    transform: translateX(-100%);
}

.pos-nav__top[b-e0fp944skd] {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 18px 16px 8px;
}

.pos-nav__brand[b-e0fp944skd] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8px 8px;
    margin-bottom: 6px;
}

.pos-nav__logo[b-e0fp944skd] {
    width: 168px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(26, 98, 255, 0.16));
}
.pos-nav__menu[b-e0fp944skd] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px 4px 0;
}

    /* IMPORTANTE: NavLink renderiza un <a> dentro de un componente hijo */
    .pos-nav__menu[b-e0fp944skd]  a.pos-nav__link,
    .pos-nav__menu[b-e0fp944skd]  a.pos-nav__link:link,
    .pos-nav__menu[b-e0fp944skd]  a.pos-nav__link:visited,
    .pos-nav__menu[b-e0fp944skd]  a.pos-nav__link:hover,
    .pos-nav__menu[b-e0fp944skd]  a.pos-nav__link:active {
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 46px;
        padding: 0 14px;
        border-radius: 14px;
        color: #c9d8ff !important;
        text-decoration: none !important;
        font-size: 0.96rem;
        font-weight: 600;
        border: 1px solid transparent;
        background: transparent;
        transition: background .22s ease, border-color .22s ease, color .22s ease, transform .18s ease, box-shadow .22s ease;
    }

        .pos-nav__menu[b-e0fp944skd]  a.pos-nav__link span,
        .pos-nav__menu[b-e0fp944skd]  a.pos-nav__link i {
            color: inherit !important;
            text-decoration: none !important;
        }

        .pos-nav__menu[b-e0fp944skd]  a.pos-nav__link:hover {
            color: #ffffff !important;
            text-decoration: none !important;
            background: linear-gradient(180deg, rgba(24, 45, 92, 0.72), rgba(12, 26, 57, 0.72));
            border-color: rgba(98, 139, 255, 0.16);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
            transform: translateY(-1px);
        }

        .pos-nav__menu[b-e0fp944skd]  a.pos-nav__link.active,
        .pos-nav__menu[b-e0fp944skd]  a.pos-nav__link.active:hover {
            color: #ffffff !important;
            text-decoration: none !important;
            background: linear-gradient(180deg, rgba(31, 61, 119, 0.96), rgba(18, 40, 87, 0.96));
            border-color: rgba(102, 144, 255, 0.26);
            box-shadow: 0 12px 24px rgba(11, 19, 46, 0.28), 0 0 0 1px rgba(255,255,255,0.03) inset;
        }

.pos-nav__icon[b-e0fp944skd] {
    font-size: 1.08rem;
    width: 20px;
    min-width: 20px;
    text-align: center;
    opacity: 0.96;
}

.pos-nav__footer[b-e0fp944skd] {
    margin-top: auto;
    padding: 12px 16px 14px;
    border-top: 1px solid rgba(90, 134, 255, 0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.00), rgba(255,255,255,0.01));
}

.pos-nav__logout[b-e0fp944skd] {
    width: 85%;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, rgba(16, 26, 58, 0.96), rgba(9, 17, 39, 0.96));
    color: #eef4ff;
    font-size: .95rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
    transition: transform .18s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

    .pos-nav__logout:hover[b-e0fp944skd] {
        transform: translateY(-1px);
        border-color: rgba(255,255,255,0.12);
        background: linear-gradient(180deg, rgba(23, 36, 78, 0.98), rgba(12, 22, 48, 0.98));
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
    }

.pos-nav-backdrop[b-e0fp944skd] {
    position: fixed;
    inset: 0;
    background: rgba(2, 8, 24, 0.50);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
    z-index: 1200;
}

    .pos-nav-backdrop.show[b-e0fp944skd] {
        opacity: 1;
        pointer-events: auto;
    }

@media (max-width: 991.98px) {
    .pos-nav[b-e0fp944skd] {
        width: 286px;
    }

    .pos-nav__top[b-e0fp944skd] {
        padding: 18px 16px 8px;
    }

    .pos-nav__logo[b-e0fp944skd] {
        width: 156px;
    }

    .pos-nav__menu[b-e0fp944skd] {
        gap: 6px;
        padding-top: 6px;
    }

        .pos-nav__menu[b-e0fp944skd]  a.pos-nav__link,
        .pos-nav__menu[b-e0fp944skd]  a.pos-nav__link:link,
        .pos-nav__menu[b-e0fp944skd]  a.pos-nav__link:visited,
        .pos-nav__menu[b-e0fp944skd]  a.pos-nav__link:hover,
        .pos-nav__menu[b-e0fp944skd]  a.pos-nav__link:active {
            min-height: 46px;
            font-size: 0.97rem;
            border-radius: 13px;
        }

    .pos-nav__logout[b-e0fp944skd] {
        min-height: 44px;
        border-radius: 16px;
    }
}
/* _content/ERPUniv.PosWeb/Components/Pages/Auth/Login.razor.rz.scp.css */
.auth-wrap--pos[b-l6r4pvt882] {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 20px 14px;
    background: radial-gradient(1200px 700px at 20% 10%, rgba(64,140,255,.22) 0%, rgba(0,0,0,0) 55%), radial-gradient(900px 600px at 80% 20%, rgba(125,80,255,.16) 0%, rgba(0,0,0,0) 55%), linear-gradient(180deg, #050a14 0%, #070b14 45%, #050a14 100%);
}

    .auth-wrap--pos .auth-card[b-l6r4pvt882] {
        width: 100%;
        max-width: 980px;
        display: grid;
        grid-template-columns: 1fr;
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 24px;
        overflow: hidden;
        background: rgba(10,18,38,.55);
        backdrop-filter: blur(10px);
        box-shadow: 0 22px 70px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.05) inset;
    }

    .auth-wrap--pos .auth-brand[b-l6r4pvt882] {
        padding: 18px 18px 10px 18px;
        background: radial-gradient(900px 400px at 50% 10%, rgba(64,140,255,.22), rgba(0,0,0,0) 60%), linear-gradient(180deg, rgba(7,26,51,.65), rgba(7,11,20,.25));
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .auth-wrap--pos .auth-brand-center[b-l6r4pvt882] {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-direction: column;
        text-align: center;
    }

    .auth-wrap--pos .auth-logo[b-l6r4pvt882] {
        width: 180px;
        max-width: 70%;
        height: auto;
        margin-bottom: 6px;
        filter: drop-shadow(0 14px 32px rgba(0,0,0,.55));
    }

    .auth-wrap--pos .auth-brand-textblock[b-l6r4pvt882] {
        min-width: 0;
    }

    .auth-wrap--pos .auth-brand-kicker[b-l6r4pvt882] {
        margin-bottom: 8px;
        font-size: 11px;
        letter-spacing: .22em;
        color: rgba(160,195,255,.85);
        font-weight: 700;
    }

    .auth-wrap--pos .auth-brand-tagline[b-l6r4pvt882] {
        font-size: 12.5px;
        line-height: 1.45;
        color: rgba(234,242,255,.78);
        max-width: 420px;
    }

    .auth-wrap--pos .auth-form[b-l6r4pvt882] {
        padding: 22px 20px 20px;
    }

        .auth-wrap--pos .auth-form h2[b-l6r4pvt882] {
            margin: 2px 0 6px 0;
            font-size: 30px;
            letter-spacing: .2px;
            color: rgba(234,242,255,.94);
        }

    .auth-wrap--pos .auth-sub[b-l6r4pvt882] {
        margin: 0 0 18px 0;
        font-size: 13px;
        color: rgba(234,242,255,.68);
    }

    .auth-wrap--pos .auth-form-body[b-l6r4pvt882] {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .auth-wrap--pos .field-group[b-l6r4pvt882] {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

        .auth-wrap--pos .field-group label[b-l6r4pvt882] {
            font-size: 13px;
            color: rgba(234,242,255,.76);
            font-weight: 600;
            margin: 0;
        }

    .auth-wrap--pos .auth-input[b-l6r4pvt882] {
        display: block;
        width: 100%;
        height: 50px;
        padding: 0 14px;
        border-radius: 14px;
        border: 1px solid rgba(255,255,255,.10);
        background: rgba(255,255,255,.055);
        color: rgba(234,242,255,.94);
        box-sizing: border-box;
        outline: none;
        appearance: none;
        -webkit-appearance: none;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
        transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
    }

        .auth-wrap--pos .auth-input[b-l6r4pvt882]::placeholder {
            color: rgba(234,242,255,.38);
        }

        .auth-wrap--pos .auth-input:hover[b-l6r4pvt882] {
            border-color: rgba(255,255,255,.16);
            background: rgba(255,255,255,.065);
        }

        .auth-wrap--pos .auth-input:focus[b-l6r4pvt882] {
            border-color: rgba(64,140,255,.48);
            box-shadow: 0 0 0 4px rgba(64,140,255,.14), inset 0 1px 0 rgba(255,255,255,.03);
            background: rgba(255,255,255,.07);
        }

    /* Autofill Chrome */
    .auth-wrap--pos input.auth-input:-webkit-autofill[b-l6r4pvt882],
    .auth-wrap--pos input.auth-input:-webkit-autofill:hover[b-l6r4pvt882],
    .auth-wrap--pos input.auth-input:-webkit-autofill:focus[b-l6r4pvt882],
    .auth-wrap--pos input.auth-input:-webkit-autofill:active[b-l6r4pvt882] {
        -webkit-text-fill-color: rgba(234,242,255,.94);
        -webkit-box-shadow: 0 0 0 1000px rgba(18, 28, 48, 0.95) inset !important;
        transition: background-color 9999s ease-in-out 0s;
        border: 1px solid rgba(255,255,255,.10);
    }

    .auth-wrap--pos .auth-actions[b-l6r4pvt882] {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 4px;
        width: 100%;
    }

    .auth-wrap--pos .auth-btn[b-l6r4pvt882] {
        display: block;
        width: 100%;
        margin: 0;
        height: 48px;
        border-radius: 14px;
        border: 1px solid rgba(64,140,255,.45);
        background: linear-gradient(180deg, rgba(64,140,255,.95), rgba(64,140,255,.72));
        color: #fff;
        font-weight: 700;
        letter-spacing: .2px;
        cursor: pointer;
        transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
        box-shadow: 0 14px 34px rgba(64,140,255,.18);
    }

        .auth-wrap--pos .auth-btn:hover[b-l6r4pvt882] {
            filter: brightness(1.03);
            box-shadow: 0 18px 44px rgba(64,140,255,.24);
        }

        .auth-wrap--pos .auth-btn:active[b-l6r4pvt882] {
            transform: translateY(1px);
        }

    .auth-wrap--pos .auth-btn-ghost[b-l6r4pvt882] {
        border: 1px solid rgba(255,255,255,.12);
        background: rgba(255,255,255,.05);
        color: rgba(234,242,255,.88);
        box-shadow: none;
    }

        .auth-wrap--pos .auth-btn-ghost:hover[b-l6r4pvt882] {
            background: rgba(255,255,255,.08);
            filter: none;
            box-shadow: none;
        }

    .auth-wrap--pos .auth-error[b-l6r4pvt882] {
        margin: 0 0 4px 0;
        padding: 10px 12px;
        border-radius: 12px;
        border: 1px solid rgba(255, 90, 90, .25);
        background: rgba(255, 90, 90, .10);
        color: rgba(255, 210, 210, .95);
        font-size: 13px;
    }

@media (min-width: 980px) {
    .auth-wrap--pos[b-l6r4pvt882] {
        padding: 28px;
        align-items: center;
    }

        .auth-wrap--pos .auth-card[b-l6r4pvt882] {
            grid-template-columns: 1.05fr 0.95fr;
            min-height: 560px;
        }

        .auth-wrap--pos .auth-brand[b-l6r4pvt882] {
            border-bottom: none;
            border-right: 1px solid rgba(255,255,255,.08);
            padding: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .auth-wrap--pos .auth-brand-center[b-l6r4pvt882] {
            flex-direction: column;
            gap: 16px;
            text-align: center;
            max-width: 420px;
        }

        .auth-wrap--pos .auth-logo[b-l6r4pvt882] {
            width: 250px;
            max-width: 100%;
        }

        .auth-wrap--pos .auth-brand-kicker[b-l6r4pvt882] {
            font-size: 12px;
        }

        .auth-wrap--pos .auth-brand-tagline[b-l6r4pvt882] {
            font-size: 14px;
            line-height: 1.5;
        }

        .auth-wrap--pos .auth-form[b-l6r4pvt882] {
            padding: 34px 40px 30px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

            .auth-wrap--pos .auth-form h2[b-l6r4pvt882] {
                font-size: 34px;
            }

        .auth-wrap--pos .auth-input[b-l6r4pvt882] {
            height: 48px;
        }

        .auth-wrap--pos .auth-btn[b-l6r4pvt882] {
            height: 48px;
        }
}
/* _content/ERPUniv.PosWeb/Components/Pages/Home.razor.rz.scp.css */
.pos-home[b-5z3e3neinv] {
    padding: 1.25rem;
    color: #f5f7fb;
}

.pos-home__hero[b-5z3e3neinv] {
    background: radial-gradient(circle at top right, rgba(91, 141, 239, 0.18), transparent 28%), linear-gradient(135deg, rgba(10, 18, 40, 0.98), rgba(7, 10, 24, 0.98));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 1.25rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    margin-bottom: 1.25rem;
}

.pos-home__hero-content[b-5z3e3neinv] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.pos-home__eyebrow[b-5z3e3neinv] {
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #8ab4ff;
    font-weight: 700;
    margin-bottom: .35rem;
}

.pos-home__title[b-5z3e3neinv] {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1.05;
    font-weight: 800;
    color: #ffffff;
}

.pos-home__subtitle[b-5z3e3neinv] {
    margin: .55rem 0 0 0;
    max-width: 720px;
    color: rgba(255,255,255,0.72);
    line-height: 1.55;
    font-size: .98rem;
}

.pos-home__cut-card[b-5z3e3neinv] {
    min-width: 240px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: .95rem 1rem;
    backdrop-filter: blur(10px);
}

.pos-home__cut-label[b-5z3e3neinv] {
    display: block;
    font-size: .8rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: .35rem;
}

.pos-home__cut-date[b-5z3e3neinv] {
    display: block;
    font-size: 1rem;
    color: #fff;
    line-height: 1.4;
}

.pos-home__context-grid[b-5z3e3neinv] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .85rem;
}

.context-chip[b-5z3e3neinv] {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: .95rem 1rem;
    min-height: 84px;
}

.context-chip__label[b-5z3e3neinv] {
    display: block;
    font-size: .78rem;
    color: rgba(255,255,255,0.62);
    margin-bottom: .35rem;
}

.context-chip__value[b-5z3e3neinv] {
    display: block;
    color: #fff;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 700;
}

.pos-home__section[b-5z3e3neinv] {
    margin-top: 1.15rem;
}

.section-head[b-5z3e3neinv] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .85rem;
}

    .section-head h2[b-5z3e3neinv] {
        margin: 0;
        font-size: 1.2rem;
        color: #fff;
    }

    .section-head p[b-5z3e3neinv] {
        margin: .2rem 0 0 0;
        color: rgba(255,255,255,0.68);
        font-size: .92rem;
    }

.quick-actions[b-5z3e3neinv] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9rem;
}

.quick-action-card[b-5z3e3neinv] {
    display: flex;
    align-items: center;
    gap: .9rem;
    width: 100%;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(20,24,44,.95), rgba(12,15,29,.96));
    color: #fff;
    border-radius: 22px;
    padding: 1rem;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    box-shadow: 0 10px 26px rgba(0,0,0,0.22);
}

    .quick-action-card:hover[b-5z3e3neinv] {
        transform: translateY(-2px);
        border-color: rgba(138,180,255,0.45);
        box-shadow: 0 16px 32px rgba(0,0,0,0.28);
    }

.quick-action-card__icon[b-5z3e3neinv] {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    background: rgba(138,180,255,0.12);
    border: 1px solid rgba(138,180,255,0.22);
}

.quick-action-card__body[b-5z3e3neinv] {
    display: flex;
    flex-direction: column;
    gap: .22rem;
}

    .quick-action-card__body strong[b-5z3e3neinv] {
        font-size: 1rem;
        font-weight: 700;
    }

    .quick-action-card__body span[b-5z3e3neinv] {
        color: rgba(255,255,255,0.68);
        font-size: .88rem;
        line-height: 1.4;
    }

.kpi-grid[b-5z3e3neinv] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .9rem;
}

.kpi-card[b-5z3e3neinv] {
    border-radius: 22px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(20,24,44,.96), rgba(11,14,28,.98));
    box-shadow: 0 12px 28px rgba(0,0,0,0.24);
}

.kpi-card__label[b-5z3e3neinv] {
    display: block;
    color: rgba(255,255,255,0.68);
    font-size: .82rem;
    margin-bottom: .45rem;
}

.kpi-card__value[b-5z3e3neinv] {
    display: block;
    color: #fff;
    font-size: clamp(1.35rem, 2.3vw, 1.9rem);
    font-weight: 800;
    line-height: 1.05;
}

.kpi-card__meta[b-5z3e3neinv] {
    display: block;
    margin-top: .4rem;
    color: rgba(255,255,255,0.52);
    font-size: .82rem;
}

.kpi-card--sales[b-5z3e3neinv] {
    background: linear-gradient(180deg, rgba(18,34,62,.96), rgba(11,17,32,.98));
}

.kpi-card--tickets[b-5z3e3neinv] {
    background: linear-gradient(180deg, rgba(37,24,66,.96), rgba(17,12,30,.98));
}

.kpi-card--avg[b-5z3e3neinv] {
    background: linear-gradient(180deg, rgba(24,42,72,.96), rgba(10,17,31,.98));
}

.kpi-card--cash[b-5z3e3neinv] {
    background: linear-gradient(180deg, rgba(17,54,46,.96), rgba(9,24,21,.98));
}

.kpi-card--entry[b-5z3e3neinv] {
    background: linear-gradient(180deg, rgba(17,46,60,.96), rgba(8,19,28,.98));
}

.kpi-card--output[b-5z3e3neinv] {
    background: linear-gradient(180deg, rgba(63,26,36,.96), rgba(24,10,14,.98));
}

.payments-list[b-5z3e3neinv] {
    display: grid;
    gap: .8rem;
}

.payment-card[b-5z3e3neinv] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 20px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(20,24,44,.96), rgba(11,14,28,.98));
}

.payment-card__main[b-5z3e3neinv] {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

    .payment-card__main strong[b-5z3e3neinv] {
        color: #fff;
        font-size: 1rem;
    }

    .payment-card__main span[b-5z3e3neinv],
    .payment-card__amount span[b-5z3e3neinv] {
        color: rgba(255,255,255,0.66);
        font-size: .88rem;
    }

.payment-card__amount[b-5z3e3neinv] {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: .22rem;
}

    .payment-card__amount strong[b-5z3e3neinv] {
        color: #fff;
        font-size: 1.02rem;
    }

.empty-panel[b-5z3e3neinv],
.pos-home__state[b-5z3e3neinv] {
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(20,24,44,.96), rgba(11,14,28,.98));
    color: #fff;
}

.pos-home__state--error[b-5z3e3neinv] {
    border-color: rgba(255, 107, 107, 0.35);
}

.pos-home__loader[b-5z3e3neinv] {
    width: 42px;
    height: 42px;
    margin: 0 auto .8rem auto;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.16);
    border-top-color: #8ab4ff;
    animation: spin-b-5z3e3neinv 0.9s linear infinite;
}

.pos-btn[b-5z3e3neinv] {
    border: 0;
    border-radius: 14px;
    padding: .82rem 1rem;
    font-weight: 700;
    cursor: pointer;
}

.pos-btn--primary[b-5z3e3neinv] {
    background: #8ab4ff;
    color: #08101f;
}

@keyframes spin-b-5z3e3neinv {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1100px) {
    .pos-home__context-grid[b-5z3e3neinv],
    .quick-actions[b-5z3e3neinv],
    .kpi-grid[b-5z3e3neinv] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .pos-home[b-5z3e3neinv] {
        padding: .9rem;
    }

    .pos-home__hero[b-5z3e3neinv],
    .empty-panel[b-5z3e3neinv],
    .pos-home__state[b-5z3e3neinv] {
        border-radius: 20px;
        padding: 1rem;
    }

    .pos-home__context-grid[b-5z3e3neinv],
    .quick-actions[b-5z3e3neinv],
    .kpi-grid[b-5z3e3neinv] {
        grid-template-columns: 1fr;
    }

    .payment-card[b-5z3e3neinv] {
        flex-direction: column;
        align-items: flex-start;
    }

    .payment-card__amount[b-5z3e3neinv] {
        text-align: left;
    }
}


.pos-home__hero-actions[b-5z3e3neinv] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
}

.pos-logout[b-5z3e3neinv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: .4rem .6rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.7);
    transition: all .2s ease;
}

.pos-logout__icon[b-5z3e3neinv] {
    font-size: 1.2rem;
    line-height: 1;
}

.pos-logout__text[b-5z3e3neinv] {
    font-size: 0.65rem;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.pos-logout:hover[b-5z3e3neinv] {
    color: #fff;
    transform: translateY(-1px);
}
/* _content/ERPUniv.PosWeb/Components/Pages/Ventas/NuevaVenta.razor.rz.scp.css */
.sale-page[b-5f16g9pqa7] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    color: #E5E7EB;
    min-width: 0;
}

/* =========================
   HEADER
========================= */
.sale-header[b-5f16g9pqa7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    background: radial-gradient(circle at top left, rgba(59,130,246,.18), transparent 35%), linear-gradient(180deg, rgba(15,23,42,.96), rgba(8,15,30,.96));
    box-shadow: 0 20px 50px rgba(0,0,0,.28);
    min-width: 0;
}

.sale-header-copy[b-5f16g9pqa7] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .25rem;
    min-width: 0;
    flex: 1 1 auto;
}

.sale-kicker[b-5f16g9pqa7] {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    color: #93C5FD;
    text-transform: uppercase;
}

.sale-title[b-5f16g9pqa7] {
    margin: 0;
    font-size: 1.95rem;
    font-weight: 800;
    color: #F8FAFC;
    line-height: 1.05;
}

.sale-header-actions[b-5f16g9pqa7] {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex: 0 0 auto;
}

    .sale-header-actions .erp-btn[b-5f16g9pqa7] {
        min-width: 170px;
        justify-content: center;
    }

/* =========================
   LAYOUT PRINCIPAL
========================= */
.sale-layout[b-5f16g9pqa7] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 1rem;
    align-items: start;
    min-width: 0;
}

.sale-main[b-5f16g9pqa7],
.sale-side[b-5f16g9pqa7] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.sale-side[b-5f16g9pqa7] {
    min-width: 0;
    position: sticky;
    top: 1rem;
}

.sale-side-actions[b-5f16g9pqa7] {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.sale-side-action-btn[b-5f16g9pqa7] {
    width: 100%;
    justify-content: center;
}

/* =========================
   ICONOS
========================= */
.erp-btn i[b-5f16g9pqa7] {
    font-size: 1rem;
}

/* =========================
   RESPONSIVE TABLET
========================= */
@media (max-width: 1280px) {
    .sale-layout[b-5f16g9pqa7] {
        grid-template-columns: minmax(0, 1fr) 380px;
    }
}

@media (max-width: 1100px) {
    .sale-layout[b-5f16g9pqa7] {
        grid-template-columns: 1fr;
    }

    .sale-side[b-5f16g9pqa7] {
        position: static;
        order: -1;
    }

    .sale-header[b-5f16g9pqa7] {
        flex-direction: column;
        align-items: stretch;
    }

    .sale-header-actions[b-5f16g9pqa7] {
        width: 100%;
    }

        .sale-header-actions .erp-btn[b-5f16g9pqa7] {
            width: 100%;
            min-width: 0;
        }
}

/* =========================
   RESPONSIVE MOBILE
========================= */
@media (max-width: 768px) {
    .sale-page[b-5f16g9pqa7] {
        padding: .8rem;
        gap: .85rem;
    }

    .sale-header[b-5f16g9pqa7] {
        padding: 1rem;
        border-radius: 20px;
        gap: .9rem;
    }

    .sale-title[b-5f16g9pqa7] {
        font-size: 1.55rem;
    }

    .sale-header-actions[b-5f16g9pqa7] {
        flex-direction: column;
        gap: .75rem;
    }

        .sale-header-actions .erp-btn[b-5f16g9pqa7] {
            width: 100%;
        }
}

/* =========================
   RESPONSIVE MOBILE CHICO
========================= */
@media (max-width: 520px) {
    .sale-page[b-5f16g9pqa7] {
        padding: .7rem;
    }

    .sale-header[b-5f16g9pqa7] {
        padding: .9rem;
        border-radius: 18px;
    }

    .sale-title[b-5f16g9pqa7] {
        font-size: 1.4rem;
    }

    .sale-kicker[b-5f16g9pqa7] {
        font-size: .74rem;
    }
}
/* _content/ERPUniv.PosWeb/Components/POS/Sales/CustomerPanel.razor.rz.scp.css */
.customer-panel[b-9b8muk1pwp] {
    padding: 1.1rem 1.1rem 1rem;
}

.customer-panel__header[b-9b8muk1pwp] {
    margin-bottom: .85rem;
}

.customer-panel__row[b-9b8muk1pwp] {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .9fr);
    gap: 1rem;
    align-items: end;
}

.customer-panel__client[b-9b8muk1pwp],
.customer-panel__phone[b-9b8muk1pwp] {
    min-width: 0;
}

.customer-panel__phone-wrap[b-9b8muk1pwp] {
    position: relative;
    display: flex;
    align-items: center;
}

.customer-panel__phone-input[b-9b8muk1pwp] {
    padding-right: 3.4rem;
}

.customer-panel__phone-input--error[b-9b8muk1pwp] {
    border-color: rgba(239, 68, 68, .65) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .10);
}

.customer-panel__phone-btn[b-9b8muk1pwp] {
    position: absolute;
    right: 8px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    color: #E5E7EB;
    cursor: pointer;
    transition: all .15s ease;
}

    .customer-panel__phone-btn:hover[b-9b8muk1pwp] {
        background: rgba(139,92,246,.22);
        color: #FFFFFF;
    }

    .customer-panel__phone-btn i[b-9b8muk1pwp] {
        font-size: 1rem;
    }

.customer-panel__hint[b-9b8muk1pwp] {
    margin-top: .55rem;
}

.customer-panel__error[b-9b8muk1pwp] {
    margin-top: .55rem;
    font-size: .84rem;
    font-weight: 600;
    color: #FCA5A5;
}

@media (max-width: 900px) {
    .customer-panel__row[b-9b8muk1pwp] {
        grid-template-columns: 1fr;
        gap: .85rem;
    }
}



.customer-panel__feedback-wrap[b-9b8muk1pwp] {
    min-height: 22px; /* 👈 RESERVA EL ESPACIO */
    margin-top: .5rem;
    display: flex;
    align-items: center;
}

.customer-panel__feedback[b-9b8muk1pwp] {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .82rem;
    font-weight: 500;
}

/* HINT */
.customer-panel__feedback--hint[b-9b8muk1pwp] {
    color: #64748B; /* gris elegante */
}

/* ERROR */
.customer-panel__feedback--error[b-9b8muk1pwp] {
    color: #FBBF24;
}

    .customer-panel__feedback--error i[b-9b8muk1pwp] {
        font-size: .85rem;
    }
/* _content/ERPUniv.PosWeb/Components/POS/Sales/PaymentModal.razor.rz.scp.css */
.payment-modal[b-ljrtuyaqik] {
    max-width: 760px;
}

.payment-modal__total-wrap[b-ljrtuyaqik] {
    margin-bottom: 1.2rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    text-align: center;
}

.payment-modal__total-label[b-ljrtuyaqik] {
    font-size: .88rem;
    color: #94A3B8;
    margin-bottom: .35rem;
    font-weight: 600;
}

.payment-modal__total-value[b-ljrtuyaqik] {
    font-size: 2rem;
    font-weight: 900;
    color: #F8FAFC;
    line-height: 1.1;
}

.payment-modal__grid[b-ljrtuyaqik] {
    gap: .95rem;
}

.payment-modal__input[b-ljrtuyaqik] {
    text-align: right;
    font-weight: 800;
    font-size: 1.05rem;
}

.payment-modal__checks[b-ljrtuyaqik] {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}

.payment-modal__check[b-ljrtuyaqik] {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: #E2E8F0;
    font-size: .95rem;
    font-weight: 600;
}

    .payment-modal__check input[type="checkbox"][b-ljrtuyaqik] {
        width: 16px;
        height: 16px;
        accent-color: #8B5CF6;
    }

.payment-modal__status-wrap[b-ljrtuyaqik] {
    min-height: 42px;
    margin-top: 1rem;
}

.payment-modal__status[b-ljrtuyaqik] {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .7rem .85rem;
    border-radius: 14px;
    font-size: .92rem;
    font-weight: 700;
    border: 1px solid transparent;
}

    .payment-modal__status i[b-ljrtuyaqik] {
        font-size: .95rem;
    }

.payment-modal__status--success[b-ljrtuyaqik] {
    color: #86EFAC;
    background: rgba(34,197,94,.10);
    border-color: rgba(34,197,94,.20);
}

.payment-modal__status--warning[b-ljrtuyaqik] {
    color: #FDE68A;
    background: rgba(245,158,11,.10);
    border-color: rgba(245,158,11,.20);
}

.payment-modal__status--error[b-ljrtuyaqik] {
    color: #FCA5A5;
    background: rgba(239,68,68,.10);
    border-color: rgba(239,68,68,.20);
}

.payment-modal__status--info[b-ljrtuyaqik] {
    color: #93C5FD;
    background: rgba(59,130,246,.10);
    border-color: rgba(59,130,246,.20);
}

.payment-modal__summary[b-ljrtuyaqik] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.08);
    display: grid;
    gap: .7rem;
}

.payment-modal__summary-row[b-ljrtuyaqik] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

    .payment-modal__summary-row span[b-ljrtuyaqik] {
        color: #94A3B8;
        font-weight: 500;
    }

    .payment-modal__summary-row strong[b-ljrtuyaqik] {
        color: #F8FAFC;
        font-weight: 800;
    }

.payment-modal__footer[b-ljrtuyaqik] {
    display: flex;
    justify-content: flex-end;
    gap: .75rem;
}

@media (max-width: 768px) {
    .payment-modal__total-value[b-ljrtuyaqik] {
        font-size: 1.7rem;
    }

    .payment-modal__checks[b-ljrtuyaqik] {
        grid-template-columns: 1fr;
    }

    .payment-modal__footer[b-ljrtuyaqik] {
        flex-direction: column;
    }

        .payment-modal__footer .erp-btn[b-ljrtuyaqik] {
            width: 100%;
        }
}
/* _content/ERPUniv.PosWeb/Components/POS/Sales/ProductQuantityModal.razor.rz.scp.css */
.product-qty-modal__product-card[b-x6rzki3j5u] {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(10, 15, 30, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 18px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.product-qty-modal__sku[b-x6rzki3j5u] {
    font-size: 0.80rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #93C5FD;
    margin-bottom: 0.35rem;
}

.product-qty-modal__name[b-x6rzki3j5u] {
    font-size: 1rem;
    font-weight: 700;
    color: #F8FAFC;
    margin-bottom: 0.85rem;
}

.product-qty-modal__meta[b-x6rzki3j5u] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.product-qty-modal__meta-item[b-x6rzki3j5u] {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 14px;
    padding: 0.75rem;
}

.product-qty-modal__meta-label[b-x6rzki3j5u] {
    display: block;
    font-size: 0.72rem;
    color: #94A3B8;
    margin-bottom: 0.25rem;
}

.product-qty-modal__meta-value[b-x6rzki3j5u] {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #E2E8F0;
}

.product-qty-modal__qty-input[b-x6rzki3j5u] {
    font-size: 1.05rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .product-qty-modal__meta[b-x6rzki3j5u] {
        grid-template-columns: 1fr;
    }
}
/* _content/ERPUniv.PosWeb/Components/POS/Sales/ProductSearchBar.razor.rz.scp.css */
.product-search-bar[b-01ppz4wvue] {
    padding: 1.1rem 1.1rem 1rem;
}

.product-search-bar__header[b-01ppz4wvue] {
    margin-bottom: .85rem;
}

.product-search-bar__actions[b-01ppz4wvue] {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.product-search-bar__body[b-01ppz4wvue] {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    min-width: 0;
}

.product-search-bar__input-wrap[b-01ppz4wvue] {
    position: relative;
    display: flex;
    align-items: center;
}

.product-search-bar__input[b-01ppz4wvue] {
    padding-right: 3.4rem;
}

.product-search-bar__input--error[b-01ppz4wvue] {
    border-color: rgba(245, 158, 11, .45) !important;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, .08);
}

.product-search-bar__search-btn[b-01ppz4wvue] {
    position: absolute;
    right: 8px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    color: #E5E7EB;
    cursor: pointer;
    transition: all .15s ease;
}

    .product-search-bar__search-btn:hover[b-01ppz4wvue] {
        background: rgba(139,92,246,.22);
        color: #FFFFFF;
    }

    .product-search-bar__search-btn i[b-01ppz4wvue] {
        font-size: 1rem;
    }

.product-search-bar__feedback-wrap[b-01ppz4wvue] {
    min-height: 22px;
    margin-top: .5rem;
    display: flex;
    align-items: center;
}

.product-search-bar__feedback[b-01ppz4wvue] {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .82rem;
    font-weight: 500;
}

.product-search-bar__feedback--hint[b-01ppz4wvue] {
    color: #64748B;
}

.product-search-bar__feedback--error[b-01ppz4wvue] {
    color: #FBBF24;
}

    .product-search-bar__feedback--error i[b-01ppz4wvue] {
        font-size: .85rem;
        opacity: .9;
    }

@media (max-width: 900px) {
    .product-search-bar__actions[b-01ppz4wvue] {
        width: 100%;
    }

        .product-search-bar__actions .erp-btn[b-01ppz4wvue] {
            flex: 1 1 auto;
        }
}

@media (max-width: 640px) {
    .product-search-bar__actions[b-01ppz4wvue] {
        flex-direction: column;
        gap: .65rem;
    }

        .product-search-bar__actions .erp-btn[b-01ppz4wvue] {
            width: 100%;
        }
}
/* _content/ERPUniv.PosWeb/Components/POS/Sales/ProductSearchModal.razor.rz.scp.css */
.product-search-modal .erp-form-grid--product[b-lq77xyel4j] {
    margin-bottom: 1rem;
}

.product-search-modal__input-wrap[b-lq77xyel4j] {
    position: relative;
    display: flex;
    align-items: center;
}

.product-search-modal__input[b-lq77xyel4j] {
    padding-right: 3.4rem;
}

.product-search-modal__input--error[b-lq77xyel4j] {
    border-color: rgba(245, 158, 11, .45) !important;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, .08);
}

.product-search-modal__search-btn[b-lq77xyel4j] {
    position: absolute;
    right: 8px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    color: #E5E7EB;
    cursor: pointer;
    transition: all .15s ease;
}

    .product-search-modal__search-btn:hover[b-lq77xyel4j] {
        background: rgba(139,92,246,.22);
        color: #FFFFFF;
    }

    .product-search-modal__search-btn i[b-lq77xyel4j] {
        font-size: 1rem;
    }

.product-search-modal__feedback-wrap[b-lq77xyel4j] {
    min-height: 22px;
    margin-top: .5rem;
    display: flex;
    align-items: center;
}

.product-search-modal__feedback[b-lq77xyel4j] {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .82rem;
    font-weight: 500;
}

.product-search-modal__feedback--hint[b-lq77xyel4j] {
    color: #64748B;
}

.product-search-modal__feedback--error[b-lq77xyel4j] {
    color: #FBBF24;
}

    .product-search-modal__feedback--error i[b-lq77xyel4j] {
        font-size: .85rem;
        opacity: .9;
    }

.product-search-modal .modal-table[b-lq77xyel4j] {
    max-height: 420px;
}

.product-search-modal .erp-table thead th:first-child[b-lq77xyel4j],
.product-search-modal .erp-table tbody td:first-child[b-lq77xyel4j] {
    position: sticky;
    left: 0;
    z-index: 1;
    background: rgba(8,15,30,.98);
}

.product-search-modal .erp-table thead th:first-child[b-lq77xyel4j] {
    z-index: 2;
    background: rgba(20, 28, 45, .98);
}

@media (max-width: 768px) {
    .product-search-modal .erp-form-grid[b-lq77xyel4j] {
        grid-template-columns: 1fr;
    }

    .product-search-modal .modal-table[b-lq77xyel4j] {
        max-height: 360px;
    }
}
/* _content/ERPUniv.PosWeb/Components/POS/Sales/QuickCustomerModal.razor.rz.scp.css */
.quick-customer-modal__error[b-ubf73nsngh] {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: 1rem;
    font-size: .84rem;
    font-weight: 600;
    color: #FBBF24;
}

    .quick-customer-modal__error i[b-ubf73nsngh] {
        font-size: .9rem;
    }
/* _content/ERPUniv.PosWeb/Components/POS/Sales/SaleItemsTable.razor.rz.scp.css */
.sale-items-table[b-n0bcd5mm9i] {
    padding: 1.1rem 1.1rem 1rem;
}

.sale-items-table__header[b-n0bcd5mm9i] {
    margin-bottom: .85rem;
}

.sale-items-table__toolbar[b-n0bcd5mm9i] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .8rem;
}

.sale-items-table__count[b-n0bcd5mm9i] {
    font-size: 1rem;
    color: #CBD5E1;
    font-weight: 500;
}

    .sale-items-table__count strong[b-n0bcd5mm9i] {
        color: #F8FAFC;
        font-weight: 800;
    }

.sale-items-table__wrap[b-n0bcd5mm9i] {
    border-radius: 18px;
    overflow: auto;
}

.sale-items-table__table[b-n0bcd5mm9i] {
    min-width: 980px;
}

    .sale-items-table__table thead th[b-n0bcd5mm9i] {
        white-space: nowrap;
    }

    .sale-items-table__table tbody td[b-n0bcd5mm9i] {
        vertical-align: middle;
    }

.sale-items-table__sku[b-n0bcd5mm9i] {
    font-weight: 700;
    color: #E2E8F0;
}

.sale-items-table__product-name[b-n0bcd5mm9i] {
    font-weight: 800;
    color: #F8FAFC;
    line-height: 1.35;
}

.sale-items-table__tag[b-n0bcd5mm9i] {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    margin-top: .3rem;
    padding: .18rem .45rem;
    border-radius: 999px;
    font-size: .68rem; /* ↓ más pequeño */
    font-weight: 600; /* ↓ menos agresivo */
    line-height: 1;
    color: #6EE7B7; /* ↓ menos brillante */
    background: rgba(16,185,129,.08); /* ↓ más sutil */
    border: 1px solid rgba(16,185,129,.18);
    white-space: nowrap;
}

.sale-items-table__tag-code[b-n0bcd5mm9i] {
    font-weight: 700;
    color: #A7F3D0;
}

.sale-items-table__amount[b-n0bcd5mm9i] {
    font-weight: 800;
    color: #F8FAFC;
}

.sale-items-table__delete-btn[b-n0bcd5mm9i] {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FECACA;
    background: rgba(239,68,68,.12);
    transition: all .15s ease;
}

    .sale-items-table__delete-btn:hover[b-n0bcd5mm9i] {
        background: rgba(239,68,68,.18);
        transform: translateY(-1px);
    }

    .sale-items-table__delete-btn i[b-n0bcd5mm9i] {
        font-size: 1rem;
    }

.sale-items-table__empty[b-n0bcd5mm9i] {
    padding: 1.4rem !important;
    color: #94A3B8;
}

@media (max-width: 768px) {
    .sale-items-table[b-n0bcd5mm9i] {
        padding: 1rem;
    }

    .sale-items-table__toolbar[b-n0bcd5mm9i] {
        margin-bottom: .7rem;
    }

    .sale-items-table__count[b-n0bcd5mm9i] {
        font-size: .95rem;
    }

    .sale-items-table__delete-btn[b-n0bcd5mm9i] {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
}
/* _content/ERPUniv.PosWeb/Components/POS/Sales/SaleSummaryCard.razor.rz.scp.css */
.summary-status-badge[b-7k7v9rhpgb] {
    border-radius: 999px;
    padding: .34rem .72rem;
    font-size: .72rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .01em;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.summary-status-badge--success[b-7k7v9rhpgb] {
    color: #86EFAC;
    background: rgba(34, 197, 94, 0.14);
    border-color: rgba(34, 197, 94, 0.24);
}

.summary-status-badge--warning[b-7k7v9rhpgb] {
    color: #FDE68A;
    background: rgba(245, 158, 11, 0.14);
    border-color: rgba(245, 158, 11, 0.24);
}

.summary-status-badge--danger[b-7k7v9rhpgb] {
    color: #FCA5A5;
    background: rgba(239, 68, 68, 0.14);
    border-color: rgba(239, 68, 68, 0.24);
}

.summary-status-badge--neutral[b-7k7v9rhpgb] {
    color: #CBD5E1;
    background: rgba(148, 163, 184, 0.12);
    border-color: rgba(148, 163, 184, 0.18);
}
