/* /Layout/MainLayout.razor.rz.scp.css */
/* ─── Armazón ─────────────────────────────────────────── */
.app-shell[b-y8v2ig3xnd] {
    display: flex;
    min-height: 100vh;
    background: var(--bg);
}

.boot-state[b-y8v2ig3xnd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 14px;
    color: var(--text-muted);
    font-size: 13.5px;
}

/* ─── Barra lateral ───────────────────────────────────── */
.sidebar[b-y8v2ig3xnd] {
    width: 248px;
    background: var(--gfg-teal);
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.sidebar[b-y8v2ig3xnd]::-webkit-scrollbar { width: 8px; }
.sidebar[b-y8v2ig3xnd]::-webkit-scrollbar-track { background: transparent; }

.sidebar[b-y8v2ig3xnd]::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.14);
    border-radius: 4px;
}

/* ─── Área principal ──────────────────────────────────── */
.main-area[b-y8v2ig3xnd] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* ─── Barra superior ──────────────────────────────────── */
.top-bar[b-y8v2ig3xnd] {
    height: 56px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 28px;
    position: sticky;
    top: 0;
    z-index: 5;
}

.top-bar-left[b-y8v2ig3xnd] { display: flex; align-items: center; min-width: 0; }

.crumb[b-y8v2ig3xnd] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    min-width: 0;
}

.crumb svg[b-y8v2ig3xnd] { width: 14px; height: 14px; color: #a6b3bd; flex-shrink: 0; }

.crumb b[b-y8v2ig3xnd] {
    color: var(--text-primary);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top-bar-right[b-y8v2ig3xnd] {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.top-divider[b-y8v2ig3xnd] { width: 1px; height: 26px; background: var(--border); flex-shrink: 0; }

/* ─── Búsqueda rápida ─────────────────────────────────── */
.quick-search[b-y8v2ig3xnd] {
    width: 300px;
    height: 34px;
    border: 1px solid var(--border-strong);
    border-radius: var(--r);
    background: var(--surface-2);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 11px;
    transition: border-color .15s, box-shadow .15s, background-color .15s;
}

.quick-search:focus-within[b-y8v2ig3xnd] {
    border-color: var(--accent);
    background: var(--surface);
    box-shadow: 0 0 0 3px rgba(0, 122, 108, .14);
}

.quick-search svg[b-y8v2ig3xnd] { width: 15px; height: 15px; color: var(--text-muted); flex-shrink: 0; }

.quick-search input[b-y8v2ig3xnd] {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--text-primary);
}

.quick-search input[b-y8v2ig3xnd]::placeholder { color: #90a0ab; }
.quick-search input[b-y8v2ig3xnd]::-webkit-search-cancel-button { cursor: pointer; }

/* ─── Usuario ─────────────────────────────────────────── */
.user-info[b-y8v2ig3xnd] {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}

.user-avatar[b-y8v2ig3xnd] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gfg-teal);
    color: var(--gfg-turquoise-fill);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}

.user-text[b-y8v2ig3xnd] {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    min-width: 0;
}

.user-name[b-y8v2ig3xnd] {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 600;
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-role[b-y8v2ig3xnd] { font-size: 11px; color: var(--text-muted); }

.logout-link[b-y8v2ig3xnd] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    font-size: 12.5px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-secondary);
    background: transparent;
    padding: 0 10px;
    border: 1px solid var(--border-strong);
    border-radius: var(--r);
    transition: all .15s;
    font-weight: 600;
    cursor: pointer;
    margin-left: 4px;
}

.logout-link svg[b-y8v2ig3xnd] { width: 15px; height: 15px; }

.logout-link:hover[b-y8v2ig3xnd] {
    color: var(--neg);
    border-color: var(--neg);
    background: var(--neg-tint);
}

.login-link[b-y8v2ig3xnd] {
    display: inline-flex;
    align-items: center;
    height: 36px;
    font-size: 13px;
    color: var(--gfg-teal);
    text-decoration: none;
    font-weight: 600;
    padding: 0 16px;
    background: var(--gfg-turquoise-fill);
    border-radius: var(--r);
    transition: background-color .15s;
}

.login-link:hover[b-y8v2ig3xnd] { background: #55d7c1; text-decoration: none; color: var(--gfg-teal); }

/* ─── Contenido ───────────────────────────────────────── */
.content-area[b-y8v2ig3xnd] {
    flex: 1;
    padding: 26px 28px 48px;
    max-width: 1600px;
    width: 100%;
}

/* ─── Responsivo ──────────────────────────────────────── */
@media (max-width: 1200px) {
    .quick-search[b-y8v2ig3xnd] { width: 220px; }
}

@media (max-width: 900px) {
    .quick-search[b-y8v2ig3xnd] { display: none; }
    .top-divider[b-y8v2ig3xnd] { display: none; }
}

@media (max-width: 768px) {
    .app-shell[b-y8v2ig3xnd] { flex-direction: column; }

    .sidebar[b-y8v2ig3xnd] {
        width: 100%;
        height: auto;
        position: relative;
        border-right: none;
    }

    .content-area[b-y8v2ig3xnd] { padding: 18px 16px 32px; }
    .top-bar[b-y8v2ig3xnd] { padding: 0 16px; }
    .user-text[b-y8v2ig3xnd] { display: none; }
    .logout-link span[b-y8v2ig3xnd] { display: none; }
    .logout-link[b-y8v2ig3xnd] { padding: 0 8px; }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* ─── Marca ───────────────────────────────────────────── */
.nav-brand[b-l34fs8stbj] {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.brand-link[b-l34fs8stbj] {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none !important;
}

.brand-isotipo[b-l34fs8stbj] {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-divider[b-l34fs8stbj] {
    width: 1px;
    height: 26px;
    background: rgba(113, 228, 209, .28);
    flex-shrink: 0;
}

.brand-text[b-l34fs8stbj] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

/* El nombre largo del manual no cabe en una línea a 248 px: se parte en dos
   antes que abreviarlo a "GFG", que el manual reserva para casos necesarios. */
.brand-name[b-l34fs8stbj] {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: break-word;
}

.brand-sub[b-l34fs8stbj] {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.12em;
    color: #71E4D1;
    text-transform: uppercase;
    font-weight: 600;
}

/* ─── Alternador móvil ────────────────────────────────── */
.navbar-toggler[b-l34fs8stbj] {
    appearance: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: absolute;
    top: 8px;
    right: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--r);
    background-color: rgba(255, 255, 255, .06);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba%28255,255,255,0.8%29' stroke-width='2' stroke-linecap='round'%3e%3cline x1='3' y1='6' x2='21' y2='6'/%3e%3cline x1='3' y1='12' x2='21' y2='12'/%3e%3cline x1='3' y1='18' x2='21' y2='18'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
}

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

/* ─── Etiquetas de sección ────────────────────────────── */
.nav-section-label[b-l34fs8stbj] {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #8697a3;
    font-weight: 700;
    padding: 20px 20px 8px;
    font-family: 'Montserrat', sans-serif;
}

/* ─── Elementos de navegación ─────────────────────────── */
.nav-item[b-l34fs8stbj] { padding: 1px 10px; }

.nav-item[b-l34fs8stbj]  .nav-link {
    display: flex;
    align-items: center;
    gap: 11px;
    height: 40px;
    color: #c3ced6;
    font-size: 13.5px;
    font-weight: 500;
    padding: 0 12px;
    border-radius: var(--r);
    transition: background-color .15s, color .15s;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.nav-item[b-l34fs8stbj]  .nav-link:hover {
    background: rgba(255, 255, 255, .07);
    color: #ffffff;
}

/* Activo: relleno turquesa de marca con texto teal (8.4:1) */
.nav-item[b-l34fs8stbj]  .nav-link.active {
    background: #71E4D1;
    color: #28333b;
    font-weight: 600;
}

.nav-item[b-l34fs8stbj]  .nav-link.active .nav-icon { opacity: 1; }

/* ─── Iconos ──────────────────────────────────────────── */
.nav-icon[b-l34fs8stbj] {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    opacity: .75;
    transition: opacity .15s;
}

.nav-item[b-l34fs8stbj]  .nav-link:hover .nav-icon { opacity: 1; }

/* ─── Contenedor desplazable ──────────────────────────── */
.nav-scrollable[b-l34fs8stbj] {
    overflow-y: auto;
    padding-bottom: 20px;
}

/* ─── Responsivo ──────────────────────────────────────── */
@media (max-width: 768px) {
    .navbar-toggler[b-l34fs8stbj] { display: block; }
    .nav-scrollable[b-l34fs8stbj] { display: none; }
    .navbar-toggler:checked ~ .nav-scrollable[b-l34fs8stbj] { display: block; }
}

@media (min-width: 769px) {
    .navbar-toggler[b-l34fs8stbj] { display: none; }
    .nav-scrollable[b-l34fs8stbj] { display: block; }
}
/* /Pages/AccessDenied.razor.rz.scp.css */
.denied-wrap[b-xius0xsmgq] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 32px;
}

.denied-card[b-xius0xsmgq] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow);
    padding: 44px 40px;
    max-width: 460px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.denied-icon[b-xius0xsmgq] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--neg-tint);
    color: var(--neg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.denied-icon svg[b-xius0xsmgq] { width: 32px; height: 32px; }

.denied-card h1[b-xius0xsmgq] {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.denied-card p[b-xius0xsmgq] {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}
/* /Pages/CashFlowDashboard.razor.rz.scp.css */
/* ─── Encabezado ──────────────────────────────────────── */
.cf-header[b-t1uisp9wq9] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cf-header-left[b-t1uisp9wq9] { display: flex; flex-direction: column; gap: 5px; min-width: 0; }

.cf-header h1[b-t1uisp9wq9] {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.cf-header .accent[b-t1uisp9wq9] { color: var(--accent); }

.cf-subtitle[b-t1uisp9wq9] {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.cf-period[b-t1uisp9wq9] {
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-variant-numeric: tabular-nums;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 8px 14px;
    white-space: nowrap;
}

/* ─── Filtros ─────────────────────────────────────────── */
.cf-filters[b-t1uisp9wq9] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    padding: 16px 18px;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.cf-filter-group[b-t1uisp9wq9] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 150px;
}

.cf-filter-group label[b-t1uisp9wq9] {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
    white-space: nowrap;
}

.cf-input[b-t1uisp9wq9], .cf-select[b-t1uisp9wq9] {
    height: 36px;
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border-strong);
    border-radius: var(--r);
    padding: 0 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: border-color .15s, box-shadow .15s;
}

.cf-select[b-t1uisp9wq9] {
    padding-right: 34px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23616e78' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 11px center;
}

.cf-select-sm[b-t1uisp9wq9] { min-width: 100px; }

.cf-input:focus[b-t1uisp9wq9], .cf-select:focus[b-t1uisp9wq9] {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 122, 108, .14);
}

.cf-toggle-group[b-t1uisp9wq9] { justify-content: flex-end; }

.cf-toggle-label[b-t1uisp9wq9] {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    white-space: nowrap;
}

.cf-toggle-label input[b-t1uisp9wq9] {
    width: 17px;
    height: 17px;
    accent-color: var(--accent);
    cursor: pointer;
    margin: 0;
}

.cf-btn[b-t1uisp9wq9] {
    height: 36px;
    padding: 0 20px;
    background: var(--gfg-turquoise-fill);
    color: var(--gfg-teal);
    border: none;
    border-radius: var(--r);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .15s;
}

.cf-btn:hover[b-t1uisp9wq9] { background: #55d7c1; }

/* ─── Indicadores ─────────────────────────────────────── */
.cf-kpi-grid[b-t1uisp9wq9] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.cf-kpi[b-t1uisp9wq9] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 2px solid var(--border-strong);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    transition: box-shadow .2s, transform .2s;
}

.cf-kpi:hover[b-t1uisp9wq9] {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(31,42,51,.09), 0 8px 20px rgba(31,42,51,.07);
}

.cf-kpi-label[b-t1uisp9wq9] {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
}

.cf-kpi-value[b-t1uisp9wq9] {
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-variant-numeric: tabular-nums;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text-primary);
}

.cf-kpi-value.positive[b-t1uisp9wq9] { color: var(--pos); }
.cf-kpi-value.negative[b-t1uisp9wq9] { color: var(--neg); }
.cf-kpi-value.intercompany[b-t1uisp9wq9] { color: var(--text-secondary); }

.cf-kpi-sub[b-t1uisp9wq9] { font-size: 12px; color: var(--text-muted); }

/* ─── Paneles ─────────────────────────────────────────── */
.cf-panel[b-t1uisp9wq9] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    padding: 20px 22px;
    margin-bottom: 18px;
}

.cf-panel-header[b-t1uisp9wq9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.cf-panel-title[b-t1uisp9wq9] {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.cf-tag[b-t1uisp9wq9] {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: var(--r-sm);
    font-weight: 600;
    background: var(--surface-2);
    border: 1px solid var(--border-strong);
    color: var(--text-secondary);
    white-space: nowrap;
}

/* ─── Cascada ─────────────────────────────────────────── */
.cf-waterfall[b-t1uisp9wq9] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cf-waterfall-row[b-t1uisp9wq9] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cf-waterfall-label[b-t1uisp9wq9] {
    width: 210px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-primary);
    flex-shrink: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cf-waterfall-bar-track[b-t1uisp9wq9] {
    flex: 1;
    height: 24px;
    background: var(--surface-3);
    border-radius: var(--r-sm);
    overflow: hidden;
    min-width: 0;
}

.cf-waterfall-bar[b-t1uisp9wq9] {
    height: 100%;
    border-radius: var(--r-sm);
    transition: width 1s cubic-bezier(.22, 1, .36, 1);
}

.cf-bar-positive[b-t1uisp9wq9] { background: var(--pos-fill); }
.cf-bar-negative[b-t1uisp9wq9] { background: var(--neg-fill); }

.cf-waterfall-amount[b-t1uisp9wq9] {
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-variant-numeric: tabular-nums;
    font-size: 13px;
    font-weight: 600;
    width: 150px;
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
}

.cf-waterfall-amount.positive[b-t1uisp9wq9] { color: var(--pos); }
.cf-waterfall-amount.negative[b-t1uisp9wq9] { color: var(--neg); }

/* ─── Cuadrícula de dos columnas ──────────────────────── */
.cf-grid-2col[b-t1uisp9wq9] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}

.cf-grid-2col .cf-panel[b-t1uisp9wq9] { margin-bottom: 0; }

/* ─── Rubros ──────────────────────────────────────────── */
.cf-categories[b-t1uisp9wq9] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cf-category-row[b-t1uisp9wq9] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--r);
    cursor: pointer;
    border: 1px solid transparent;
    transition: background-color .15s, border-color .15s;
}

.cf-category-row:hover[b-t1uisp9wq9] { background: var(--surface-2); }

.cf-category-row.selected[b-t1uisp9wq9] {
    background: var(--accent-tint);
    border-color: var(--accent-tint-2);
}

.cf-category-dot[b-t1uisp9wq9] {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    flex-shrink: 0;
}

.cf-category-info[b-t1uisp9wq9] {
    width: 165px;
    flex-shrink: 0;
    min-width: 0;
}

.cf-category-name[b-t1uisp9wq9] {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cf-category-count[b-t1uisp9wq9] { font-size: 11px; color: var(--text-muted); }

.cf-category-bar-track[b-t1uisp9wq9] {
    flex: 1;
    height: 18px;
    background: var(--surface-3);
    border-radius: var(--r-sm);
    overflow: hidden;
    min-width: 0;
}

.cf-category-bar[b-t1uisp9wq9] {
    height: 100%;
    border-radius: var(--r-sm);
    transition: width 1s cubic-bezier(.22, 1, .36, 1);
}

.cf-category-amount[b-t1uisp9wq9] {
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-variant-numeric: tabular-nums;
    font-size: 12.5px;
    font-weight: 600;
    width: 120px;
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
}

.cf-category-amount.positive[b-t1uisp9wq9] { color: var(--pos); }
.cf-category-amount.negative[b-t1uisp9wq9] { color: var(--neg); }

/* Paleta categórica: matices distinguibles a luminosidad pareja */
.cat-income[b-t1uisp9wq9]       { background: #2f8f4d; }
.cat-expense[b-t1uisp9wq9]      { background: #c0453a; }
.cat-investment[b-t1uisp9wq9]   { background: #2a6f8f; }
.cat-financing[b-t1uisp9wq9]    { background: #6b4f9e; }
.cat-intercompany[b-t1uisp9wq9] { background: #4d6472; }
.cat-commissions[b-t1uisp9wq9]  { background: #b07a12; }
.cat-taxes[b-t1uisp9wq9]        { background: #a25b2a; }
.cat-interest[b-t1uisp9wq9]     { background: #00a28c; }
.cat-adjustments[b-t1uisp9wq9]  { background: #78868f; }
.cat-insurance[b-t1uisp9wq9]    { background: #a8467f; }
.cat-other[b-t1uisp9wq9]        { background: #a6b3bd; }

/* ─── Subcategorías ───────────────────────────────────── */
.cf-subcategories[b-t1uisp9wq9] {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 16px;
}

.cf-subcategory-row[b-t1uisp9wq9] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cf-subcategory-info[b-t1uisp9wq9] {
    width: 165px;
    flex-shrink: 0;
    min-width: 0;
}

.cf-subcategory-name[b-t1uisp9wq9] {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cf-subcategory-pct[b-t1uisp9wq9] { font-size: 11px; color: var(--text-muted); }

.cf-subcategory-bar-track[b-t1uisp9wq9] {
    flex: 1;
    height: 16px;
    background: var(--surface-3);
    border-radius: var(--r-sm);
    overflow: hidden;
    min-width: 0;
}

.cf-subcategory-bar[b-t1uisp9wq9] {
    height: 100%;
    background: var(--gfg-teal);
    border-radius: var(--r-sm);
    transition: width 1s cubic-bezier(.22, 1, .36, 1);
}

.cf-subcategory-amount[b-t1uisp9wq9] {
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-variant-numeric: tabular-nums;
    font-size: 12.5px;
    font-weight: 600;
    width: 120px;
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
}

.cf-subcategory-amount.positive[b-t1uisp9wq9] { color: var(--pos); }
.cf-subcategory-amount.negative[b-t1uisp9wq9] { color: var(--neg); }

.cf-subcategory-count[b-t1uisp9wq9] {
    font-size: 11px;
    color: var(--text-muted);
    width: 34px;
    text-align: right;
    flex-shrink: 0;
}

.cf-btn-detail[b-t1uisp9wq9] {
    width: 100%;
    height: 36px;
    background: var(--surface);
    color: var(--accent);
    border: 1px solid var(--border-strong);
    border-radius: var(--r);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s;
}

.cf-btn-detail:hover[b-t1uisp9wq9] {
    background: var(--accent-tint);
    border-color: var(--accent);
    color: var(--accent-hover);
}

.cf-empty[b-t1uisp9wq9] {
    padding: 48px 24px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── Tabla de movimientos ────────────────────────────── */
.cf-table-wrapper[b-t1uisp9wq9] {
    overflow-x: auto;
    margin: 0 -22px;
    padding: 0 22px;
}

.cf-table[b-t1uisp9wq9] {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

.cf-table thead th[b-t1uisp9wq9] {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 0 12px 10px;
    text-align: left;
    font-weight: 700;
    border-bottom: 1px solid var(--border-strong);
    white-space: nowrap;
}

.cf-table tbody tr[b-t1uisp9wq9] {
    border-bottom: 1px solid var(--border);
    transition: background-color .12s;
}

.cf-table tbody tr:hover[b-t1uisp9wq9] { background: var(--accent-tint); }

.cf-table tbody td[b-t1uisp9wq9] {
    padding: 0 12px;
    height: 44px;
    font-size: 12.5px;
    color: var(--text-primary);
    white-space: nowrap;
}

.cf-table .positive[b-t1uisp9wq9] { color: var(--pos); font-weight: 600; }
.cf-table .negative[b-t1uisp9wq9] { color: var(--neg); font-weight: 600; }

.cf-td-name[b-t1uisp9wq9] {
    font-weight: 500;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cf-td-sub[b-t1uisp9wq9] { color: var(--text-secondary); }

.cf-td-ref[b-t1uisp9wq9] {
    color: var(--text-muted);
    font-size: 11.5px;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cf-badge[b-t1uisp9wq9] {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: var(--r-sm);
    font-weight: 600;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    color: var(--text-secondary);
    white-space: nowrap;
}

.cf-type-badge[b-t1uisp9wq9] {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: var(--r-sm);
    font-weight: 600;
    white-space: nowrap;
}

.cf-type-badge.credit[b-t1uisp9wq9] { background: var(--pos-tint); color: var(--pos); }
.cf-type-badge.debit[b-t1uisp9wq9]  { background: var(--neg-tint); color: var(--neg); }

.cf-table-footer[b-t1uisp9wq9] {
    padding: 14px 0 0;
    margin-top: 4px;
    border-top: 1px solid var(--border);
    font-size: 12.5px;
    color: var(--text-muted);
    text-align: center;
}

/* ─── Pie ─────────────────────────────────────────────── */
.cf-footer[b-t1uisp9wq9] {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 11.5px;
    color: var(--text-muted);
}

/* ─── Responsivo ──────────────────────────────────────── */
@media (max-width: 1200px) {
    .cf-kpi-grid[b-t1uisp9wq9] { grid-template-columns: repeat(2, 1fr); }
    .cf-grid-2col[b-t1uisp9wq9] { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .cf-kpi-grid[b-t1uisp9wq9] { grid-template-columns: 1fr; }
    .cf-filter-group[b-t1uisp9wq9] { min-width: 100%; }
    .cf-waterfall-label[b-t1uisp9wq9] { width: 120px; }
    .cf-waterfall-amount[b-t1uisp9wq9], .cf-category-amount[b-t1uisp9wq9], .cf-subcategory-amount[b-t1uisp9wq9] { width: 104px; font-size: 12px; }
    .cf-category-info[b-t1uisp9wq9], .cf-subcategory-info[b-t1uisp9wq9] { width: 120px; }
    .cf-table-wrapper[b-t1uisp9wq9] { margin: 0 -18px; padding: 0 18px; }
}
/* /Pages/Dashboard.razor.rz.scp.css */
/* ─── Encabezado ──────────────────────────────────────── */
.status-pill[b-6daui1y39l] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    color: var(--pos);
    background: var(--pos-tint);
    padding: 6px 11px;
    border-radius: 5px;
    white-space: nowrap;
}

.status-dot[b-6daui1y39l] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pos-fill);
    flex-shrink: 0;
}

.head-meta[b-6daui1y39l] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.4;
}

.head-date[b-6daui1y39l] {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.head-source[b-6daui1y39l] { font-size: 11px; color: var(--text-muted); }

/* ─── Filtros ─────────────────────────────────────────── */
.filter-row[b-6daui1y39l] {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.filter-row .filter-field[b-6daui1y39l] { min-width: 220px; }
.filter-row .filter-chip[b-6daui1y39l] { margin-bottom: 8px; }

/* ─── Banda de posición ───────────────────────────────── */
.hero-band-main[b-6daui1y39l] {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}

.hero-band-figure[b-6daui1y39l] {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-band-aside[b-6daui1y39l] {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-shrink: 0;
}

.hero-band-aside-block[b-6daui1y39l] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
}

/* ─── Comparación de saldos ───────────────────────────── */
.balance-comparison[b-6daui1y39l] {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.balance-row[b-6daui1y39l] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.balance-label[b-6daui1y39l] {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    width: 56px;
    flex-shrink: 0;
    font-weight: 700;
    text-align: right;
}

.balance-bar-track[b-6daui1y39l] {
    flex: 1;
    height: 30px;
    background: var(--surface-3);
    border-radius: 5px;
    overflow: hidden;
    min-width: 0;
}

.balance-bar[b-6daui1y39l] {
    height: 100%;
    border-radius: 5px;
    transition: width 1s cubic-bezier(.22, 1, .36, 1);
}

.balance-bar.inicial[b-6daui1y39l] { background: #8697a3; }
.balance-bar.final[b-6daui1y39l] { background: var(--gfg-teal); }

.balance-amount[b-6daui1y39l] {
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-variant-numeric: tabular-nums;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    width: 140px;
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
}

.balance-delta[b-6daui1y39l] {
    margin-top: 4px;
    padding: 12px 14px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.balance-delta-label[b-6daui1y39l] {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
}

.balance-delta-value[b-6daui1y39l] {
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-variant-numeric: tabular-nums;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

/* ─── Distribución por unidad ─────────────────────────── */
.unidad-bars[b-6daui1y39l] {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.unidad-bar-row[b-6daui1y39l] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.unidad-bar-label[b-6daui1y39l] {
    width: 130px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-primary);
    flex-shrink: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.unidad-bar-track[b-6daui1y39l] {
    flex: 1;
    height: 22px;
    background: var(--surface-3);
    border-radius: var(--r-sm);
    overflow: hidden;
    min-width: 0;
}

.unidad-bar-fill[b-6daui1y39l] {
    height: 100%;
    background: var(--gfg-teal);
    border-radius: var(--r-sm);
    transition: width 1s cubic-bezier(.22, 1, .36, 1);
}

.unidad-bar-row:nth-child(2) .unidad-bar-fill[b-6daui1y39l] { background: #4d6472; }
.unidad-bar-row:nth-child(3) .unidad-bar-fill[b-6daui1y39l] { background: #00a28c; }
.unidad-bar-row:nth-child(4) .unidad-bar-fill[b-6daui1y39l] { background: var(--gfg-turquoise-fill); }
.unidad-bar-row:nth-child(n+5) .unidad-bar-fill[b-6daui1y39l] { background: #a6b3bd; }

.unidad-bar-amount[b-6daui1y39l] {
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-variant-numeric: tabular-nums;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-primary);
    width: 82px;
    text-align: right;
    flex-shrink: 0;
}

.unidad-bar-count[b-6daui1y39l] {
    font-size: 11px;
    color: var(--text-muted);
    width: 56px;
    text-align: right;
    flex-shrink: 0;
}

/* ─── Flujo diario ────────────────────────────────────── */
.flow-panel[b-6daui1y39l] { margin-bottom: 18px; }

.flow-bars[b-6daui1y39l] {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.flow-item[b-6daui1y39l] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.flow-label[b-6daui1y39l] {
    width: 62px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
    text-align: right;
    flex-shrink: 0;
}

.flow-bar-wrap[b-6daui1y39l] {
    flex: 1;
    height: 28px;
    background: var(--surface-3);
    border-radius: var(--r-sm);
    overflow: hidden;
    min-width: 0;
}

.flow-bar[b-6daui1y39l] {
    height: 100%;
    border-radius: var(--r-sm);
    transition: width 1s cubic-bezier(.22, 1, .36, 1);
}

.flow-bar.abonos[b-6daui1y39l] { background: var(--pos-fill); }
.flow-bar.cargos[b-6daui1y39l] { background: var(--neg-fill); }

.flow-amount[b-6daui1y39l] {
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-variant-numeric: tabular-nums;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    width: 150px;
    text-align: right;
    flex-shrink: 0;
}

.flow-amount.green[b-6daui1y39l] { color: var(--pos); }
.flow-amount.amber[b-6daui1y39l] { color: var(--neg); }

.flow-net[b-6daui1y39l] {
    margin-top: 16px;
    padding: 12px 14px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.flow-net-label[b-6daui1y39l] {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.flow-net-value[b-6daui1y39l] {
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-variant-numeric: tabular-nums;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

/* ─── Gráfica histórica ───────────────────────────────── */
.history-panel[b-6daui1y39l] { margin-bottom: 18px; }

.history-chart[b-6daui1y39l] {
    display: flex;
    gap: 12px;
    height: 230px;
}

.history-y-axis[b-6daui1y39l] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 30px;
    flex-shrink: 0;
    width: 68px;
}

.y-label[b-6daui1y39l] {
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-size: 10.5px;
    color: var(--text-muted);
    white-space: nowrap;
}

.history-bars-container[b-6daui1y39l] {
    flex: 1;
    position: relative;
    min-width: 0;
}

.history-grid-lines[b-6daui1y39l] {
    position: absolute;
    inset: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.history-grid-line[b-6daui1y39l] { height: 1px; background: var(--border); }

.history-bars-scroll[b-6daui1y39l] {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
}

.history-day-group[b-6daui1y39l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    height: 100%;
    min-width: 34px;
    flex-shrink: 0;
}

.history-bar-pair[b-6daui1y39l] {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: calc(100% - 30px);
    width: 100%;
    justify-content: center;
}

.history-bar[b-6daui1y39l] {
    width: 13px;
    border-radius: 3px 3px 0 0;
    transition: height 1s cubic-bezier(.22, 1, .36, 1);
    min-height: 2px;
}

.bar-opening[b-6daui1y39l] { background: #a6b3bd; }
.bar-closing[b-6daui1y39l] { background: var(--gfg-teal); }

.history-day-label[b-6daui1y39l] {
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-size: 10.5px;
    color: var(--text-secondary);
    font-weight: 600;
}

.history-month-label[b-6daui1y39l] {
    font-size: 8.5px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    font-weight: 600;
}

.history-legend[b-6daui1y39l] {
    display: flex;
    gap: 20px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.legend-item[b-6daui1y39l] {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--text-secondary);
}

.legend-swatch[b-6daui1y39l] {
    width: 11px;
    height: 11px;
    border-radius: 3px;
    flex-shrink: 0;
}

.swatch-opening[b-6daui1y39l] { background: #a6b3bd; }
.swatch-closing[b-6daui1y39l] { background: var(--gfg-teal); }

/* ─── Tablas del dashboard ────────────────────────────── */
.accounts-panel[b-6daui1y39l], .usd-panel[b-6daui1y39l] { margin-bottom: 18px; padding-bottom: 0; }

.table-scroll[b-6daui1y39l] {
    overflow-x: auto;
    margin: 0 -22px;
    padding: 0 22px;
}

.acct-table[b-6daui1y39l], .usd-table[b-6daui1y39l] {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.acct-table thead th[b-6daui1y39l], .usd-table thead th[b-6daui1y39l] {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 0 12px 10px;
    text-align: left;
    font-weight: 700;
    border-bottom: 1px solid var(--border-strong);
    white-space: nowrap;
}

.sortable-th[b-6daui1y39l] {
    cursor: pointer;
    user-select: none;
    transition: color .15s;
}

.sortable-th:hover[b-6daui1y39l] { color: var(--accent); }
.sortable-th.sort-active[b-6daui1y39l] { color: var(--accent); }

.sort-arrow[b-6daui1y39l] {
    font-size: 10px;
    margin-left: 2px;
    color: var(--accent);
}

.acct-table tbody tr[b-6daui1y39l], .usd-table tbody tr[b-6daui1y39l] {
    border-bottom: 1px solid var(--border);
    transition: background-color .12s;
}

.acct-table tbody tr:hover[b-6daui1y39l], .usd-table tbody tr:hover[b-6daui1y39l] { background: var(--accent-tint); }

.acct-table tbody td[b-6daui1y39l], .usd-table tbody td[b-6daui1y39l] {
    padding: 0 12px;
    height: 46px;
    font-size: 13px;
    color: var(--text-primary);
}

.account-name[b-6daui1y39l] { font-weight: 500; }

.account-number[b-6daui1y39l] {
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-variant-numeric: tabular-nums;
    color: var(--text-secondary);
    font-size: 12.5px;
}

.date-cell[b-6daui1y39l] { color: var(--text-secondary); font-size: 12.5px; }

.amount[b-6daui1y39l] {
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}

.amount-muted[b-6daui1y39l] { color: var(--text-secondary); font-weight: 500; }

.bar-cell[b-6daui1y39l] { min-width: 100px; }

.acct-table tfoot td[b-6daui1y39l] {
    padding: 0 12px;
    height: 48px;
    background: var(--surface-2);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    border-top: 1px solid var(--border-strong);
}

.acct-table tfoot td.amount-muted[b-6daui1y39l] { font-weight: 500; color: var(--text-secondary); }

.accounts-panel .empty-state[b-6daui1y39l], .usd-panel .empty-state[b-6daui1y39l] { padding-bottom: 40px; }

/* ─── Proyección de inversión ─────────────────────────── */
.invest-panel[b-6daui1y39l] { margin-bottom: 18px; }

.invest-grid[b-6daui1y39l] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 16px;
}

.invest-card[b-6daui1y39l] {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.invest-card.is-highlight[b-6daui1y39l] {
    background: var(--accent-tint);
    border-color: var(--accent-tint-2);
}

.invest-card-label[b-6daui1y39l] {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
}

.invest-card-value[b-6daui1y39l] {
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-variant-numeric: tabular-nums;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.invest-card.is-highlight .invest-card-value[b-6daui1y39l] { color: var(--accent-hover); }

.invest-card-sub[b-6daui1y39l] { font-size: 11.5px; color: var(--text-muted); }

.invest-note[b-6daui1y39l] {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gfg-turquoise-fill);
    border-radius: var(--r);
    padding: 14px 18px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.invest-note strong[b-6daui1y39l] { color: var(--text-primary); font-weight: 600; }

/* ─── Pie ─────────────────────────────────────────────── */
.dash-footer[b-6daui1y39l] {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 11.5px;
    color: var(--text-muted);
}

/* ─── Responsivo ──────────────────────────────────────── */
@media (max-width: 1100px) {
    .invest-grid[b-6daui1y39l] { grid-template-columns: repeat(2, 1fr); }
    .hero-band-aside[b-6daui1y39l] { width: 100%; justify-content: space-between; }
    .hero-band-aside-block[b-6daui1y39l] { text-align: left; }
}

@media (max-width: 640px) {
    .invest-grid[b-6daui1y39l] { grid-template-columns: 1fr; }
    .page-head-right[b-6daui1y39l] { width: 100%; justify-content: space-between; }
    .head-meta[b-6daui1y39l] { align-items: flex-start; }
    .balance-amount[b-6daui1y39l] { width: 108px; font-size: 12px; }
    .flow-amount[b-6daui1y39l] { width: 110px; font-size: 12px; }
    .unidad-bar-label[b-6daui1y39l] { width: 88px; }
    .unidad-bar-count[b-6daui1y39l] { display: none; }
    .table-scroll[b-6daui1y39l] { margin: 0 -18px; padding: 0 18px; }
}
