/* _content/Mypimes.Web/Components/Layout/MainLayout.razor.rz.scp.css */
/* MainLayout — admin shell (sidebar is owned by NavMenu.razor.css) */

.admin-layout[b-c03a0s81hr] {
    display: flex;
    min-height: 100vh;
    background: var(--admin-bg, #F4F3F8);
}

/* Main area (flex: 1, right of sidebar) */
.admin-main[b-c03a0s81hr] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    min-width: 0;
}

/* Topbar */
.admin-topbar[b-c03a0s81hr] {
    height: 52px;
    background: var(--admin-surface, #fff);
    border-bottom: 1px solid var(--admin-border, #E5E3EE);
    display: flex; align-items: center; gap: 14px;
    padding: 0 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    flex-shrink: 0;
    position: sticky; top: 0; z-index: 100;
}

.topbar-breadcrumb[b-c03a0s81hr] {
    flex: 1;
    display: flex; align-items: center; gap: 8px;
}

.topbar-breadcrumb-icon[b-c03a0s81hr] { font-size: 16px; line-height: 1; }

.topbar-breadcrumb-title[b-c03a0s81hr] {
    font-size: 15px; font-weight: 700;
    color: var(--admin-text, #1A1523);
    font-family: var(--font-display, 'Outfit', sans-serif);
}

.topbar-actions[b-c03a0s81hr] {
    display: flex; align-items: center; gap: 8px;
}

.topbar-icon-btn[b-c03a0s81hr] {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 7px;
    background: var(--admin-bg, #F4F3F8);
    border: 1px solid var(--admin-border, #E5E3EE);
    color: var(--admin-muted, #7C7492);
    cursor: pointer;
    transition: all 0.15s ease;
}

.topbar-icon-btn:hover[b-c03a0s81hr] {
    border-color: var(--primary, #7C3AED);
    color: var(--primary, #7C3AED);
}

/* Page content */
.admin-content[b-c03a0s81hr] {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

/* Blazor error */
#blazor-error-ui[b-c03a0s81hr] {
    background: #FEF3C7;
    border-top: 2px solid #F59E0B;
    bottom: 0; left: 0;
    padding: 0.6rem 1.25rem;
    position: fixed; width: 100%;
    z-index: 1001; display: none;
    font-size: 13px;
}

#blazor-error-ui .dismiss[b-c03a0s81hr] {
    cursor: pointer; position: absolute;
    right: 0.75rem; top: 0.5rem; text-decoration: none;
}

@@media (max-width: 768px) {
    .admin-content[b-c03a0s81hr] { padding: 16px; }
}
/* _content/Mypimes.Web/Components/Layout/NavMenu.razor.rz.scp.css */
/* NavMenu owns the sidebar shell */

.admin-sidebar[b-vqvgn2yx43] {
    width: 220px;
    flex-shrink: 0;
    background: var(--sidebar-bg, #1E1B2E);
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: width 0.25s ease;
    border-right: 1px solid var(--sidebar-border, #2D2645);
    z-index: 200;
}

.admin-sidebar.collapsed[b-vqvgn2yx43] {
    width: 60px;
}

/* Logo */
.nav-logo[b-vqvgn2yx43] {
    padding: 16px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--sidebar-border, #2D2645);
    flex-shrink: 0;
    min-height: 60px;
}

.nav-logo-icon[b-vqvgn2yx43] {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #7C3AED, #10B981);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 800; font-size: 16px;
    flex-shrink: 0;
}

.nav-logo-name[b-vqvgn2yx43] {
    display: block;
    color: #ffffff;
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-weight: 700; font-size: 15px; line-height: 1.2;
}

.nav-logo-sub[b-vqvgn2yx43] {
    display: block;
    color: var(--sidebar-text, #A89FC4);
    font-size: 11px;
}

/* Nav body */
.nav-body[b-vqvgn2yx43] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 0;
    scrollbar-width: thin;
    scrollbar-color: #3D3560 transparent;
}

.nav-section-label[b-vqvgn2yx43] {
    padding: 8px 16px 2px;
    font-size: 10px; font-weight: 700;
    color: var(--sidebar-muted, #5A5278);
    text-transform: uppercase; letter-spacing: 1px;
    margin-top: 6px;
    white-space: nowrap;
}

/* Footer */
.nav-footer[b-vqvgn2yx43] {
    border-top: 1px solid var(--sidebar-border, #2D2645);
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.nav-collapse-btn[b-vqvgn2yx43] {
    background: none;
    border: 1px solid var(--sidebar-border, #2D2645);
    border-radius: 7px;
    color: var(--sidebar-text, #A89FC4);
    cursor: pointer; padding: 6px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s ease;
    align-self: flex-end;
}

.admin-sidebar.collapsed .nav-collapse-btn[b-vqvgn2yx43] {
    align-self: center;
}

.nav-collapse-btn:hover[b-vqvgn2yx43] {
    background: rgba(124,58,237,.2);
    color: #C4B5FD;
    border-color: #7C3AED;
}

.nav-user[b-vqvgn2yx43] {
    display: flex; align-items: center; gap: 8px;
    padding: 4px 0;
}

.nav-user-avatar[b-vqvgn2yx43] {
    width: 30px; height: 30px; border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED, #EC4899);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 11px; font-weight: 700;
    flex-shrink: 0;
}

.nav-user-name[b-vqvgn2yx43] {
    display: block; color: #C4B5FD;
    font-size: 12px; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 110px;
}

.nav-logout-btn[b-vqvgn2yx43] {
    background: none; border: none; padding: 0;
    color: var(--sidebar-text, #A89FC4);
    font-size: 11px; cursor: pointer;
}
.nav-logout-btn:hover[b-vqvgn2yx43] { color: #EF4444; text-decoration: underline; }

/* NavItem child component */
[b-vqvgn2yx43] .nav-item-wrapper { padding: 2px 8px; }

[b-vqvgn2yx43] .nav-item-link {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 10px; border-radius: 8px;
    color: var(--sidebar-text, #A89FC4);
    font-size: 13.5px; font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease;
    position: relative;
    white-space: nowrap;
}

[b-vqvgn2yx43] .nav-item-link:hover {
    background: rgba(124,58,237,.15);
    color: #C4B5FD;
}

[b-vqvgn2yx43] .nav-item-link.active {
    background: rgba(124,58,237,.22);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(124,58,237,.3);
}

[b-vqvgn2yx43] .nav-item-link.collapsed {
    justify-content: center;
    padding: 9px;
}

[b-vqvgn2yx43] .nav-item-icon {
    font-size: 16px; width: 20px;
    text-align: center; flex-shrink: 0; line-height: 1;
}

[b-vqvgn2yx43] .nav-item-label { flex: 1; }

[b-vqvgn2yx43] .nav-item-badge {
    background: #EF4444; color: white;
    font-size: 10px; font-weight: 700;
    padding: 2px 6px; border-radius: 10px;
}

[b-vqvgn2yx43] .nav-item-badge-dot {
    position: absolute; top: 5px; right: 5px;
    width: 7px; height: 7px; border-radius: 50%;
    background: #EF4444;
    border: 1.5px solid var(--sidebar-bg, #1E1B2E);
}

/* Mobile */
@@media (max-width: 768px) {
    .admin-sidebar[b-vqvgn2yx43] {
        position: fixed; left: -220px; top: 0;
        transition: left 0.25s ease, width 0.25s ease;
    }

    .admin-sidebar.mobile-open[b-vqvgn2yx43] { left: 0; }
    .admin-sidebar.collapsed[b-vqvgn2yx43] { width: 220px; left: -220px; }

    [b-vqvgn2yx43] .nav-item-link.collapsed {
        justify-content: flex-start;
        padding: 8px 10px;
    }
}

/* Tenant chip */
.nav-tenant-chip[b-vqvgn2yx43] {
    display: flex; align-items: center; gap: 6px;
    margin: 0 12px 8px;
    padding: 6px 10px;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 8px;
    font-size: 12px; color: #C4B5FD;
}
.nav-tenant-dot[b-vqvgn2yx43] {
    width: 7px; height: 7px; border-radius: 50%;
    background: #10B981; flex-shrink: 0;
}
.nav-tenant-name[b-vqvgn2yx43] { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-tenant-change[b-vqvgn2yx43] {
    background: none; border: none; color: #7C7492; cursor: pointer;
    font-size: 10px; padding: 0; line-height: 1;
}
.nav-tenant-change:hover[b-vqvgn2yx43] { color: #EF4444; }

/* No tenant banner */
.nav-no-tenant[b-vqvgn2yx43] {
    display: flex; flex-direction: column; gap: 4px;
    margin: 0 12px 8px;
    padding: 8px 10px;
    background: rgba(245,158,11,0.1);
    border: 1px dashed rgba(245,158,11,0.4);
    border-radius: 8px;
    font-size: 11px; color: #FCD34D;
}
.nav-select-link[b-vqvgn2yx43] {
    color: #F59E0B; text-decoration: none; font-weight: 600; font-size: 11px;
}
.nav-select-link:hover[b-vqvgn2yx43] { text-decoration: underline; }

/* Disabled nav items */
[b-vqvgn2yx43] .nav-item-disabled {
    opacity: 0.4;
    cursor: not-allowed !important;
    pointer-events: none;
}
/* _content/Mypimes.Web/Components/Pages/Catalogo/Index.razor.rz.scp.css */
/* =============================================
   TASK-07 — Catálogo público reskin
   ============================================= */

/* Hero */
.catalogo-hero[b-5ezaiyws3u] {
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    border-radius: 0;
}

.catalogo-hero-content[b-5ezaiyws3u] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.catalogo-logo[b-5ezaiyws3u] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: contain;
    border: 3px solid rgba(255,255,255,0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.catalogo-logo-fallback[b-5ezaiyws3u] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 3px solid rgba(255,255,255,0.5);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(4px);
}

.catalogo-title[b-5ezaiyws3u] {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.catalogo-desc[b-5ezaiyws3u] {
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-size: 14px;
    font-weight: 300;
}

/* Info bar */
.catalogo-infobar[b-5ezaiyws3u] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding: 10px 16px;
    background: rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 13px;
    color: var(--text-muted, #6c757d);
}

.catalogo-info-item[b-5ezaiyws3u] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.catalogo-sync-btn[b-5ezaiyws3u] {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary, #7C3AED);
    font-size: 16px;
    padding: 0 2px;
    line-height: 1;
}

/* Grid 4 columnas */
.catalogo-grid[b-5ezaiyws3u] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 16px;
}

@media (max-width: 1024px) {
    .catalogo-grid[b-5ezaiyws3u] { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .catalogo-grid[b-5ezaiyws3u] { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .catalogo-grid[b-5ezaiyws3u] { grid-template-columns: 1fr; }
}

/* Product card */
.catalogo-product-card[b-5ezaiyws3u] {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.07);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    display: flex;
    flex-direction: column;
}

.catalogo-product-card:hover[b-5ezaiyws3u] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.catalogo-product-card--agotado[b-5ezaiyws3u] {
    opacity: 0.6;
}

.catalogo-product-img-wrap[b-5ezaiyws3u] {
    height: 160px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalogo-product-img[b-5ezaiyws3u] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalogo-product-emoji-wrap[b-5ezaiyws3u] {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.catalogo-product-body[b-5ezaiyws3u] {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.catalogo-product-header[b-5ezaiyws3u] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.catalogo-product-name[b-5ezaiyws3u] {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
}

/* DOT de disponibilidad */
.catalogo-avail-dot[b-5ezaiyws3u] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
    display: inline-block;
}

.catalogo-avail-dot.ok[b-5ezaiyws3u]     { background: #10B981; }
.catalogo-avail-dot.bajo[b-5ezaiyws3u]   { background: #F59E0B; }
.catalogo-avail-dot.agotado[b-5ezaiyws3u] { background: #EF4444; }

.catalogo-product-desc[b-5ezaiyws3u] {
    font-size: 12px;
    color: #6c757d;
    margin: 0 0 6px;
    line-height: 1.4;
}

.catalogo-stock-warn[b-5ezaiyws3u] {
    font-size: 11px;
    color: #F59E0B;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.catalogo-agotado-label[b-5ezaiyws3u] {
    font-size: 11px;
    color: #EF4444;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.catalogo-product-footer[b-5ezaiyws3u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.catalogo-product-price[b-5ezaiyws3u] {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary, #7C3AED);
}

.catalogo-add-btn[b-5ezaiyws3u] {
    background: var(--primary, #7C3AED);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

.catalogo-add-btn:hover[b-5ezaiyws3u] {
    background: var(--primary-dark, #5B21B6);
}
/* _content/Mypimes.Web/Components/Pages/Home.razor.rz.scp.css */
/* Dashboard scoped styles */

/* Stat grid */
.dash-stat-grid[b-bjglxlm68j] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

/* Bottom layout */
.dash-bottom-grid[b-bjglxlm68j] {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 16px;
}

/* Loading */
.dash-loading[b-bjglxlm68j] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 80px 0;
    color: var(--admin-muted, #7C7492);
    font-size: 14px;
}

.dash-spinner[b-bjglxlm68j] {
    width: 32px; height: 32px;
    border: 3px solid var(--admin-border, #E5E3EE);
    border-top-color: var(--primary, #7C3AED);
    border-radius: 50%;
    animation: dashSpin 0.8s linear infinite;
}

@@keyframes dashSpin { to[b-bjglxlm68j] { transform: rotate(360deg); } }

/* Tenant list */
.dash-tenant-list[b-bjglxlm68j] {
    display: flex;
    flex-direction: column;
}

.dash-tenant-row[b-bjglxlm68j] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-bottom: 1px solid #F3F0FA;
    cursor: pointer;
    transition: background 0.12s ease;
}

.dash-tenant-row:last-child[b-bjglxlm68j] { border-bottom: none; }

.dash-tenant-row:hover[b-bjglxlm68j] { background: #F8F7FD; }

.dash-tenant-dot[b-bjglxlm68j] {
    width: 9px; height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dash-tenant-dot.active[b-bjglxlm68j]   { background: var(--accent, #10B981); }
.dash-tenant-dot.inactive[b-bjglxlm68j] { background: var(--admin-border, #E5E3EE); }

.dash-tenant-info[b-bjglxlm68j] {
    flex: 1;
    min-width: 0;
}

.dash-tenant-name[b-bjglxlm68j] {
    display: block;
    font-size: 13px; font-weight: 600;
    color: var(--admin-text, #1A1523);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.dash-tenant-slug[b-bjglxlm68j] {
    display: block;
    font-size: 11px;
    color: var(--admin-muted, #7C7492);
}

.dash-tenant-stats[b-bjglxlm68j] {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: var(--admin-muted, #7C7492);
}

/* Quick actions */
.dash-quick-grid[b-bjglxlm68j] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px;
}

.dash-quick-btn[b-bjglxlm68j] {
    padding: 14px 10px;
    border-radius: 10px;
    border: 1px solid var(--admin-border, #E5E3EE);
    background: var(--admin-bg, #F4F3F8);
    text-align: center;
    text-decoration: none;
    transition: all 0.15s ease;
    display: block;
}

.dash-quick-btn:hover[b-bjglxlm68j] {
    border-color: var(--primary, #7C3AED);
    background: var(--primary-light, #EDE9FE);
    transform: translateY(-1px);
}

.dash-quick-icon[b-bjglxlm68j] {
    font-size: 22px;
    margin-bottom: 6px;
    line-height: 1;
}

.dash-quick-label[b-bjglxlm68j] {
    font-size: 12px; font-weight: 600;
    color: var(--admin-text, #1A1523);
}

/* Empty state */
.dash-empty[b-bjglxlm68j] {
    padding: 32px;
    text-align: center;
    color: var(--admin-muted, #7C7492);
    font-size: 13px;
}

.dash-empty-icon[b-bjglxlm68j] { font-size: 36px; margin-bottom: 8px; }
.dash-empty p[b-bjglxlm68j]    { margin: 0 0 14px; }

/* Responsive */
@@media (max-width: 1100px) {
    .dash-stat-grid[b-bjglxlm68j]    { grid-template-columns: repeat(2, 1fr); }
    .dash-bottom-grid[b-bjglxlm68j]  { grid-template-columns: 1fr; }
}

@@media (max-width: 600px) {
    .dash-stat-grid[b-bjglxlm68j] { grid-template-columns: 1fr; }
}

.dash-tenant-row.active-tenant[b-bjglxlm68j] {
    background: rgba(124,58,237,0.08);
    border-left: 3px solid var(--primary, #7C3AED);
}
/* _content/Mypimes.Web/Components/Pages/Inventario/Index.razor.rz.scp.css */
.filter-chip[b-ijev61muqw] {
    padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 500;
    border: 1px solid var(--admin-border, #E5E3EE);
    background: var(--admin-surface, #fff);
    color: var(--admin-muted, #7C7492);
    cursor: pointer; white-space: nowrap;
    transition: all 0.15s ease;
}
.filter-chip:hover[b-ijev61muqw] {
    border-color: var(--primary, #7C3AED);
    color: var(--primary, #7C3AED);
}
.filter-chip.active[b-ijev61muqw] {
    background: var(--primary-light, #EDE9FE);
    border-color: #DDD6FE;
    color: var(--primary, #7C3AED);
}
.product-thumb[b-ijev61muqw] {
    width: 36px; height: 36px; border-radius: 8px;
    background: linear-gradient(135deg, #EDE9FE, #DDD6FE);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.product-name[b-ijev61muqw] { font-weight: 600; font-size: 13px; }
/* _content/Mypimes.Web/Components/Pages/Pedidos/Index.razor.rz.scp.css */
/* Filter chips — mismos estilos que Inventario */
.filter-chip[b-3w2m3t2zkp] {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--admin-border, #E5E3EE);
    background: var(--admin-surface, #fff);
    color: var(--admin-muted, #7C7492);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s ease;
}
.filter-chip:hover[b-3w2m3t2zkp] {
    border-color: var(--primary, #7C3AED);
    color: var(--primary, #7C3AED);
}
.filter-chip.active[b-3w2m3t2zkp] {
    background: var(--primary-light, #EDE9FE);
    border-color: #DDD6FE;
    color: var(--primary, #7C3AED);
}

/* Grid de pedidos */
.pedidos-grid[b-3w2m3t2zkp] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 14px;
}

/* Cards */
.pedido-card[b-3w2m3t2zkp] { cursor: default; }
.pedido-card--nuevo[b-3w2m3t2zkp] {
    border-left: 3px solid var(--primary, #7C3AED);
}
.pedido-card-header[b-3w2m3t2zkp] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}
.pedido-customer[b-3w2m3t2zkp] { font-weight: 600; font-size: 14px; display: block; }
.pedido-phone[b-3w2m3t2zkp] { font-size: 12px; color: var(--admin-muted, #7C7492); }
.pedido-items[b-3w2m3t2zkp] {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    font-size: 13px;
}
.pedido-items li[b-3w2m3t2zkp] {
    padding: 3px 0;
    border-bottom: 1px solid var(--admin-border, #E5E3EE);
}
.pedido-items li:last-child[b-3w2m3t2zkp] { border-bottom: none; }
.pedido-qty[b-3w2m3t2zkp] { color: var(--admin-muted, #7C7492); margin-right: 4px; }
.pedido-price[b-3w2m3t2zkp] { color: var(--admin-muted, #7C7492); font-size: 11px; }
.pedido-notes[b-3w2m3t2zkp] {
    font-size: 12px;
    color: var(--admin-muted, #7C7492);
    font-style: italic;
    margin-bottom: 8px;
}
.pedido-footer[b-3w2m3t2zkp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid var(--admin-border, #E5E3EE);
    margin-top: 8px;
}
.pedido-total[b-3w2m3t2zkp] { font-weight: 700; font-size: 15px; color: var(--primary, #7C3AED); }
.pedido-date[b-3w2m3t2zkp] { font-size: 11px; color: var(--admin-muted, #7C7492); }
.pedido-actions[b-3w2m3t2zkp] {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding-top: 10px;
    margin-top: 6px;
    border-top: 1px solid var(--admin-border, #E5E3EE);
}
/* _content/Mypimes.Web/Components/Pages/POS/Index.razor.rz.scp.css */
.pos-layout[b-9adzdyhlgl] { display: flex; gap: 16px; height: calc(100vh - 120px); overflow: hidden; }
.pos-catalog[b-9adzdyhlgl] { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.pos-cart-panel[b-9adzdyhlgl] { width: 360px; flex-shrink: 0; background: var(--admin-surface,#fff); border: 1px solid var(--admin-border,#E5E3EE); border-radius: 12px; display: flex; flex-direction: column; overflow: hidden; }
.pos-product-grid[b-9adzdyhlgl] { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 130px; align-content: start; gap: 10px; overflow-y: auto; padding: 4px; flex: 1; }
.pos-product-card[b-9adzdyhlgl] { background: var(--admin-surface,#fff); border: 1px solid var(--admin-border,#E5E3EE); border-radius: 12px; padding: 14px 10px; cursor: pointer; transition: all 0.15s ease; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; text-align: center; height: 130px; }
.pos-product-card:hover[b-9adzdyhlgl] { border-color: var(--primary,#7C3AED); box-shadow: 0 2px 10px rgba(124,58,237,0.14); transform: translateY(-2px); }
.pos-product-card.unavailable[b-9adzdyhlgl] { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
.pos-product-emoji[b-9adzdyhlgl] { font-size: 34px; line-height: 1; margin-bottom: 2px; }
.pos-product-name[b-9adzdyhlgl] { font-size: 12px; font-weight: 600; color: var(--admin-text,#1A1523); }
.pos-product-price[b-9adzdyhlgl] { font-size: 14px; font-weight: 700; color: var(--primary,#7C3AED); }
.pos-product-stock[b-9adzdyhlgl] { font-size: 11px; color: var(--admin-muted,#7C7492); }
.pos-product-stock.low[b-9adzdyhlgl] { color: var(--danger,#EF4444); }
.pos-cart-header[b-9adzdyhlgl] { padding: 14px 16px; border-bottom: 1px solid var(--admin-border,#E5E3EE); font-weight: 700; font-size: 14px; }
.pos-cart-items[b-9adzdyhlgl] { flex: 1; overflow-y: auto; padding: 8px; }
.pos-cart-item[b-9adzdyhlgl] { display: flex; align-items: center; gap: 8px; padding: 8px; border-radius: 8px; font-size: 13px; }
.pos-cart-item:hover[b-9adzdyhlgl] { background: var(--admin-bg,#F4F3F8); }
.pos-cart-item-name[b-9adzdyhlgl] { flex: 1; font-weight: 500; }
.pos-qty-controls[b-9adzdyhlgl] { display: flex; align-items: center; gap: 4px; }
.pos-qty-btn[b-9adzdyhlgl] { width: 22px; height: 22px; border-radius: 5px; border: 1px solid var(--admin-border,#E5E3EE); background: var(--admin-bg); cursor: pointer; font-size: 14px; line-height: 1; display: flex; align-items: center; justify-content: center; }
.pos-qty-btn:hover[b-9adzdyhlgl] { border-color: var(--primary,#7C3AED); color: var(--primary,#7C3AED); }
.pos-qty-value[b-9adzdyhlgl] { width: 24px; text-align: center; font-weight: 600; }
.pos-remove-btn[b-9adzdyhlgl] { color: var(--admin-muted); cursor: pointer; font-size: 14px; }
.pos-remove-btn:hover[b-9adzdyhlgl] { color: var(--danger,#EF4444); }
.pos-cart-footer[b-9adzdyhlgl] { padding: 12px 16px; border-top: 1px solid var(--admin-border,#E5E3EE); }
.pos-total[b-9adzdyhlgl] { display: flex; justify-content: space-between; font-weight: 700; font-size: 16px; margin-bottom: 12px; }
.pos-checkout[b-9adzdyhlgl] { padding: 12px 16px; border-top: 1px solid var(--admin-border,#E5E3EE); }
.pos-input[b-9adzdyhlgl] { width: 100%; padding: 6px 10px; border-radius: 7px; border: 1px solid var(--admin-border,#E5E3EE); font-size: 13px; margin-bottom: 6px; background: var(--admin-bg); color: var(--admin-text); }
.pos-input:focus[b-9adzdyhlgl] { outline: none; border-color: var(--primary,#7C3AED); }
.pos-pago-chips[b-9adzdyhlgl] { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.pos-pago-chip[b-9adzdyhlgl] { padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 500; border: 1px solid var(--admin-border); background: var(--admin-bg); cursor: pointer; transition: all 0.15s; }
.pos-pago-chip.active[b-9adzdyhlgl] { background: var(--primary-light,#EDE9FE); border-color: var(--primary,#7C3AED); color: var(--primary,#7C3AED); }
.pos-confirm-btn[b-9adzdyhlgl] { width: 100%; padding: 10px; font-size: 14px; font-weight: 700; }
.pos-empty-cart[b-9adzdyhlgl] { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: var(--admin-muted); gap: 8px; }
.pos-empty-cart-icon[b-9adzdyhlgl] { font-size: 48px; }
.pos-search-bar[b-9adzdyhlgl] { padding: 12px; border-bottom: 1px solid var(--admin-border,#E5E3EE); }
.pos-header[b-9adzdyhlgl] { padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; }
/* _content/Mypimes.Web/Components/Pages/Tenants/CamposProducto.razor.rz.scp.css */
/* ── Lista de campos ─────────────────────────────────── */
.campos-list[b-m2143l0dqx] {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--admin-border, #E5E3EE);
    border-radius: 12px;
    overflow: hidden;
    background: var(--admin-surface, #fff);
}

.campo-row[b-m2143l0dqx] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--admin-border, #E5E3EE);
    min-width: 0;
}

.campo-row:last-child[b-m2143l0dqx] {
    border-bottom: none;
}

.campo-info[b-m2143l0dqx] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.campo-nombre[b-m2143l0dqx] {
    font-weight: 700;
    font-size: 14px;
    color: var(--admin-text, #1A1523);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.campo-badges[b-m2143l0dqx] {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}

.campo-badge[b-m2143l0dqx] {
    display: inline-flex;
    align-items: center;
    padding: 2px 9px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.campo-badge-tipo[b-m2143l0dqx] {
    background: var(--admin-bg, #F4F3F8);
    color: var(--admin-muted, #7C7492);
}

.campo-badge-obligatorio[b-m2143l0dqx] {
    background: #fef2f2;
    color: #dc2626;
}

.campo-opciones[b-m2143l0dqx] {
    font-size: 12px;
    color: var(--admin-muted, #7C7492);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Acciones ────────────────────────────────────────── */
.campo-actions[b-m2143l0dqx] {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-shrink: 0;
}

.campo-btn-edit[b-m2143l0dqx] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 7px;
    border: 1px solid var(--admin-border, #E5E3EE);
    background: var(--admin-surface, #fff);
    color: var(--primary, #7C3AED);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.12s ease;
    white-space: nowrap;
}

.campo-btn-edit:hover[b-m2143l0dqx] {
    background: var(--primary-light, #EDE9FE);
    border-color: var(--primary, #7C3AED);
}

.campo-btn-delete[b-m2143l0dqx] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 7px;
    border: 1px solid transparent;
    background: transparent;
    color: #EF4444;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.12s ease;
    white-space: nowrap;
}

.campo-btn-delete:hover[b-m2143l0dqx] {
    background: #fef2f2;
    border-color: #fca5a5;
}
/* _content/Mypimes.Web/Components/Pages/Tenants/Create.razor.rz.scp.css */
/* =============================================
   Create Mercadito — página de creación
   ============================================= */

.create-page-wrap[b-e2jpbjfg1b] {
    max-width: 560px;
    margin: 0 auto;
    padding: 28px 20px 48px;
}

/* ── Breadcrumb ── */
.create-breadcrumb[b-e2jpbjfg1b] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--admin-muted, #7C7492);
    margin-bottom: 24px;
}

.create-breadcrumb-link[b-e2jpbjfg1b] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary, #7C3AED);
    text-decoration: none;
    font-weight: 500;
    transition: opacity .15s;
}

.create-breadcrumb-link:hover[b-e2jpbjfg1b] { opacity: .75; }

.create-breadcrumb-sep[b-e2jpbjfg1b] { opacity: .5; }

/* ── Hero ── */
.create-hero[b-e2jpbjfg1b] {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.create-hero-icon[b-e2jpbjfg1b] {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary, #7C3AED), #5B21B6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}

.create-hero-title[b-e2jpbjfg1b] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--admin-text, #1A1523);
    line-height: 1.2;
}

.create-hero-sub[b-e2jpbjfg1b] {
    font-size: 13.5px;
    color: var(--admin-muted, #7C7492);
    margin: 0;
}

/* ── Card ── */
.create-card[b-e2jpbjfg1b] {
    padding: 0;
    margin-bottom: 16px;
    overflow: hidden;
}

.create-field-group[b-e2jpbjfg1b] {
    padding: 20px 24px;
}

.create-divider[b-e2jpbjfg1b] {
    height: 1px;
    background: var(--admin-border, #E5E3EE);
}

/* ── Labels ── */
.create-field-label-row[b-e2jpbjfg1b] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.create-label[b-e2jpbjfg1b] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--admin-text, #1A1523);
}

.create-label-required[b-e2jpbjfg1b] {
    font-size: 11px;
    font-weight: 600;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary, #7C3AED);
    padding: 2px 8px;
    border-radius: 20px;
}

/* ── Inputs ── */
.create-input[b-e2jpbjfg1b] {
    width: 100%;
    box-sizing: border-box;
}

.create-slug-row[b-e2jpbjfg1b] {
    display: flex;
    align-items: stretch;
}

.create-slug-input[b-e2jpbjfg1b] {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    flex: 1;
}

.create-slug-suffix[b-e2jpbjfg1b] {
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: var(--admin-bg, #F4F3F8);
    border: 1px solid var(--admin-border, #E5E3EE);
    border-left: none;
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--admin-muted, #7C7492);
    white-space: nowrap;
}

.create-hint[b-e2jpbjfg1b] {
    font-size: 12px;
    color: var(--admin-muted, #7C7492);
    margin: 6px 0 0;
}

/* ── URL Preview ── */
.create-url-preview[b-e2jpbjfg1b] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 6px 12px;
    background: rgba(124, 58, 237, 0.07);
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-radius: 8px;
    font-size: 12.5px;
    color: var(--primary, #7C3AED);
}

.create-url-preview strong[b-e2jpbjfg1b] {
    font-weight: 700;
}

/* ── Errors ── */
.create-field-error[b-e2jpbjfg1b] {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #dc2626;
    font-size: 12.5px;
    margin-top: 6px;
}

.create-server-error[b-e2jpbjfg1b] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(220, 38, 38, 0.07);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: 10px;
    color: #dc2626;
    font-size: 13.5px;
    margin-bottom: 16px;
}

/* ── Acciones ── */
.create-actions[b-e2jpbjfg1b] {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
}

.create-submit-btn[b-e2jpbjfg1b] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ── Tip ── */
.create-tip[b-e2jpbjfg1b] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 16px;
    background: var(--admin-bg, #F4F3F8);
    border-radius: 10px;
    font-size: 12.5px;
    color: var(--admin-muted, #7C7492);
    line-height: 1.5;
}

.create-tip strong[b-e2jpbjfg1b] {
    color: var(--admin-text, #1A1523);
}
/* _content/Mypimes.Web/Components/Pages/Tenants/Index.razor.rz.scp.css */
/* =============================================
   Tenants / Mis Mercados — card layout
   ============================================= */

.tenants-grid[b-kzllc4a2r7] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 20px;
}

/* Card principal */
.tenant-card[b-kzllc4a2r7] {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.tenant-card:hover[b-kzllc4a2r7] {
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    transform: translateY(-1px);
}

.tenant-card--inactive[b-kzllc4a2r7] {
    opacity: 0.65;
}

/* Header con avatar + info + badge */
.tenant-card-header[b-kzllc4a2r7] {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 20px 12px;
}

.tenant-avatar[b-kzllc4a2r7] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary, #7C3AED), var(--primary-dark, #5B21B6));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.tenant-avatar-img[b-kzllc4a2r7] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tenant-avatar-initials[b-kzllc4a2r7] {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.tenant-card-info[b-kzllc4a2r7] {
    flex: 1;
    min-width: 0;
}

.tenant-card-name[b-kzllc4a2r7] {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tenant-card-slug[b-kzllc4a2r7] {
    display: block;
    font-size: 12px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Meta info */
.tenant-card-meta[b-kzllc4a2r7] {
    padding: 0 20px 14px;
    font-size: 12px;
    color: #aaa;
}

/* Grid de acciones 3x2 */
.tenant-card-actions[b-kzllc4a2r7] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(0,0,0,0.06);
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.tenant-action-btn[b-kzllc4a2r7] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    background: #fff;
    text-decoration: none;
    transition: background 0.12s ease, color 0.12s ease;
    white-space: nowrap;
}

.tenant-action-btn:hover[b-kzllc4a2r7] {
    background: rgba(124, 58, 237, 0.06);
    color: var(--primary, #7C3AED);
    text-decoration: none;
}

.tenant-action-btn svg[b-kzllc4a2r7] {
    flex-shrink: 0;
    opacity: 0.6;
}

.tenant-action-btn:hover svg[b-kzllc4a2r7] {
    opacity: 1;
}

/* Footer */
.tenant-card-footer[b-kzllc4a2r7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 8px;
}

.tenant-delete-btn[b-kzllc4a2r7] {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    color: #EF4444;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.12s ease;
}

.tenant-delete-btn:hover[b-kzllc4a2r7] {
    background: rgba(239, 68, 68, 0.08);
}

/* Modal de confirmación */
.modal-overlay[b-kzllc4a2r7] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    backdrop-filter: blur(2px);
}

/* Responsive */
@media (max-width: 768px) {
    .tenants-grid[b-kzllc4a2r7] {
        grid-template-columns: 1fr;
    }

    .tenant-card-actions[b-kzllc4a2r7] {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* _content/Mypimes.Web/Components/Pages/Tenants/Workers.razor.rz.scp.css */
/* =============================================
   Workers — página de gestión de trabajadores
   ============================================= */

.workers-page[b-0z6b4a2ioc] {
    max-width: 800px;
    margin: 0 auto;
    padding: 28px 20px 48px;
}

/* ── Header ── */
.workers-header[b-0z6b4a2ioc] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 16px;
}

.workers-back-link[b-0z6b4a2ioc] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--primary, #7C3AED);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 8px;
    transition: opacity .15s;
}
.workers-back-link:hover[b-0z6b4a2ioc] { opacity: .75; }

.workers-title[b-0z6b4a2ioc] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 2px;
    color: var(--admin-text, #1A1523);
    line-height: 1.2;
}

.workers-subtitle[b-0z6b4a2ioc] {
    font-size: 13px;
    color: var(--admin-muted, #7C7492);
    margin: 0;
}

.workers-header-badge[b-0z6b4a2ioc] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary, #7C3AED);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Contraseña temporal ── */
.workers-temp-pass[b-0z6b4a2ioc] {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 12px;
    margin-bottom: 20px;
}

.workers-temp-pass-icon[b-0z6b4a2ioc] {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.workers-temp-code[b-0z6b4a2ioc] {
    display: inline-block;
    background: #fff;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 1.2rem;
    font-family: var(--font-mono, monospace);
    font-weight: 700;
    color: #065f46;
    letter-spacing: 2px;
}

.workers-temp-close[b-0z6b4a2ioc] {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--admin-muted, #7C7492);
    padding: 2px;
    flex-shrink: 0;
    line-height: 1;
    transition: color .15s;
}
.workers-temp-close:hover[b-0z6b4a2ioc] { color: var(--admin-text, #1A1523); }

/* ── Formulario ── */
.workers-form-card[b-0z6b4a2ioc] {
    padding: 0;
    margin-bottom: 20px;
    overflow: hidden;
}

.workers-form-header[b-0z6b4a2ioc] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--admin-border, #E5E3EE);
    font-weight: 700;
    font-size: 14px;
    color: var(--admin-text, #1A1523);
    background: var(--admin-bg, #F4F3F8);
}

.workers-form-body[b-0z6b4a2ioc] { padding: 20px; }

.workers-form-grid[b-0z6b4a2ioc] {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 14px;
    align-items: end;
}

@media (max-width: 640px) {
    .workers-form-grid[b-0z6b4a2ioc] { grid-template-columns: 1fr; }
    .workers-form-btn-wrap[b-0z6b4a2ioc] { width: 100%; }
}

.workers-form-btn-wrap[b-0z6b4a2ioc] { min-width: 120px; }

.workers-label[b-0z6b4a2ioc] {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--admin-text, #1A1523);
    margin-bottom: 6px;
}

/* ── Empty state ── */
.workers-empty[b-0z6b4a2ioc] {
    text-align: center;
    padding: 48px 24px;
    background: var(--admin-bg, #F4F3F8);
    border-radius: 12px;
    border: 1px dashed var(--admin-border, #E5E3EE);
}

.workers-empty-icon[b-0z6b4a2ioc] {
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1;
}

.workers-empty p[b-0z6b4a2ioc] {
    font-weight: 600;
    font-size: 15px;
    color: var(--admin-text, #1A1523);
    margin: 0 0 4px;
}

.workers-empty span[b-0z6b4a2ioc] {
    font-size: 13px;
    color: var(--admin-muted, #7C7492);
}

/* ── Lista ── */
.workers-list-card[b-0z6b4a2ioc] {
    padding: 0;
    overflow: hidden;
}

.workers-list-header[b-0z6b4a2ioc] {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 16px;
    align-items: center;
    padding: 10px 20px;
    background: var(--admin-bg, #F4F3F8);
    border-bottom: 1px solid var(--admin-border, #E5E3EE);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--admin-muted, #7C7492);
}

.workers-row[b-0z6b4a2ioc] {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 16px;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--admin-border, #E5E3EE);
    transition: background .12s;
}
.workers-row:last-child[b-0z6b4a2ioc] { border-bottom: none; }
.workers-row:hover[b-0z6b4a2ioc] { background: var(--admin-bg, #F4F3F8); }
.workers-row--inactive[b-0z6b4a2ioc] { opacity: .6; }

/* Avatar + email */
.workers-identity[b-0z6b4a2ioc] {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.workers-avatar[b-0z6b4a2ioc] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary, #7C3AED), #5B21B6);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.workers-email-wrap[b-0z6b4a2ioc] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.workers-email[b-0z6b4a2ioc] {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--admin-text, #1A1523);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.workers-email-warn[b-0z6b4a2ioc] {
    font-size: 11px;
    color: #f59e0b;
    font-weight: 600;
}

/* Rol badge */
.workers-role-badge[b-0z6b4a2ioc] {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.workers-role-inventario[b-0z6b4a2ioc] {
    background: rgba(59, 130, 246, 0.1);
    color: #1d4ed8;
}

.workers-role-pedidos[b-0z6b4a2ioc] {
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
}

.workers-role-full[b-0z6b4a2ioc] {
    background: rgba(16, 185, 129, 0.1);
    color: #065f46;
}

/* Estado */
.workers-status-dot[b-0z6b4a2ioc] {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}
.workers-status-dot.active[b-0z6b4a2ioc]   { background: #10B981; }
.workers-status-dot.inactive[b-0z6b4a2ioc] { background: #9CA3AF; }

.workers-status-text[b-0z6b4a2ioc] {
    font-size: 13px;
    color: var(--admin-muted, #7C7492);
    vertical-align: middle;
}

/* Acciones */
.workers-actions[b-0z6b4a2ioc] {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.workers-btn[b-0z6b4a2ioc] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 11px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all .12s;
    border: 1px solid transparent;
    white-space: nowrap;
}

.workers-btn--warn[b-0z6b4a2ioc] {
    background: transparent;
    color: #f59e0b;
    border-color: rgba(245,158,11,0.25);
}
.workers-btn--warn:hover[b-0z6b4a2ioc] {
    background: rgba(245,158,11,0.08);
    border-color: rgba(245,158,11,0.4);
}

.workers-btn--danger[b-0z6b4a2ioc] {
    background: transparent;
    color: #ef4444;
    border-color: rgba(239,68,68,0.2);
}
.workers-btn--danger:hover[b-0z6b4a2ioc] {
    background: #fef2f2;
    border-color: rgba(239,68,68,0.4);
}
/* _content/Mypimes.Web/Components/Shared/TenantGuard.razor.rz.scp.css */
.tenant-guard[b-pnlti9gvls] {
    display: flex; align-items: center; justify-content: center;
    min-height: 60vh; padding: 40px 20px;
}
.tenant-guard-card[b-pnlti9gvls] {
    text-align: center; max-width: 420px;
    padding: 48px 40px;
    background: var(--admin-surface, #fff);
    border: 1px solid var(--admin-border, #E5E3EE);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(124,58,237,0.08);
}
.tenant-guard-icon[b-pnlti9gvls] { font-size: 56px; margin-bottom: 16px; }
.tenant-guard-title[b-pnlti9gvls] {
    font-size: 22px; font-weight: 700;
    color: var(--admin-text, #1E1B2E); margin: 0 0 12px;
}
.tenant-guard-desc[b-pnlti9gvls] {
    font-size: 14px; color: var(--admin-muted, #7C7492);
    line-height: 1.6; margin: 0 0 28px;
}
.tenant-guard-actions[b-pnlti9gvls] { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
