/* _content/TankDesigner.Web/Components/Layout/MainLayout.razor.rz.scp.css */
:root[b-eef5q9bymj] {
    --bg: #f4f7fb;
    --panel: #ffffff;
    --panel-soft: #f8fafc;
    --border: rgba(15, 23, 42, 0.08);
    --text: #1e293b;
    --muted: #6b7280;
    --primary: #1b2430;
    --primary-2: #1f3a5f;
    --sidebar-bg: #0f172a;
    --sidebar-border: #243041;
    --sidebar-text: #cbd5e1;
    --sidebar-muted: #94a3b8;
    --shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
    --shadow-soft: 0 6px 16px rgba(15, 23, 42, 0.05);
    --radius-xl: 18px;
    --radius-lg: 14px;
    --radius-md: 10px;
}

*[b-eef5q9bymj] {
    box-sizing: border-box;
}

html[b-eef5q9bymj], body[b-eef5q9bymj] {
    margin: 0;
    padding: 0;
    background: #f4f7fb;
    color: var(--text);
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    font-size: 14px;
}

.app-shell[b-eef5q9bymj] {
    min-height: 100vh;
    display: flex;
    position: relative;
}

.app-sidebar[b-eef5q9bymj] {
    width: 268px;
    min-width: 268px;
    padding: 18px;
    position: sticky;
    top: 0;
    height: 100vh;
}

.app-main[b-eef5q9bymj] {
    flex: 1;
    min-width: 0;
    padding: 18px 18px 24px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.app-header[b-eef5q9bymj] {
    min-height: 78px;
    border: 1px solid #e5eaf2;
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 24px;
}

.header-left[b-eef5q9bymj] {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.header-logo[b-eef5q9bymj] {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 8px;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

.header-texts[b-eef5q9bymj] {
    min-width: 0;
}

    .header-texts h1[b-eef5q9bymj] {
        margin: 0;
        font-size: 24px;
        line-height: 1.15;
        color: var(--primary);
        font-weight: 700;
        letter-spacing: -0.01em;
    }

    .header-texts p[b-eef5q9bymj] {
        margin: 4px 0 0 0;
        color: var(--muted);
        font-size: 13px;
    }

.header-right[b-eef5q9bymj] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-box[b-eef5q9bymj] {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

.header-status[b-eef5q9bymj] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #eef2f7;
    border: 1px solid #e5eaf2;
    border-radius: 10px;
    padding: 10px 14px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.status-dot[b-eef5q9bymj] {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #19c37d;
    box-shadow: 0 0 0 4px rgba(25, 195, 125, 0.12);
}

.user-identity[b-eef5q9bymj] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

    .user-identity strong[b-eef5q9bymj] {
        font-size: 14px;
        font-weight: 700;
        color: var(--primary);
    }

    .user-identity span[b-eef5q9bymj] {
        font-size: 12px;
        color: var(--muted);
    }

.account-menu[b-eef5q9bymj] {
    position: relative;
}

.account-menu__trigger[b-eef5q9bymj] {
    width: 46px;
    height: 46px;
    border: 1px solid #dbe4ee;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f172a 0%, #1f3a5f 100%);
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .account-menu__trigger:hover[b-eef5q9bymj] {
        transform: translateY(-1px);
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
    }

.account-menu__dropdown[b-eef5q9bymj] {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 190px;
    background: #ffffff;
    border: 1px solid #e5eaf2;
    border-radius: 14px;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
    padding: 8px;
    z-index: 1000;
}

.account-menu__item[b-eef5q9bymj] {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: background 0.15s ease, color 0.15s ease;
}

    .account-menu__item:hover[b-eef5q9bymj] {
        background: #f3f6fa;
    }

.account-menu__item--danger[b-eef5q9bymj] {
    color: #b42318;
}

    .account-menu__item--danger:hover[b-eef5q9bymj] {
        background: #fff1f2;
    }

.auth-link-btn[b-eef5q9bymj] {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0f172a 0%, #1d355d 100%);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
    transition: transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

    .auth-link-btn:hover[b-eef5q9bymj] {
        transform: translateY(-1px);
        opacity: 0.98;
    }

.auth-link-btn--ghost[b-eef5q9bymj] {
    background: #f3f6fa;
    color: #334155;
    border: 1px solid #dbe4ee;
    box-shadow: none;
}

.app-content[b-eef5q9bymj] {
    flex: 1;
    min-width: 0;
    border-radius: var(--radius-xl);
}

[b-eef5q9bymj] .content-container,
[b-eef5q9bymj] .page-container,
[b-eef5q9bymj] .page-wrapper {
    width: 100%;
}

#blazor-error-ui[b-eef5q9bymj] {
    color-scheme: light only;
    background: #fff4e5;
    color: #7a4b00;
    border-top: 1px solid #f0cf9f;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.9rem 1.25rem;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10000;
    font-size: 0.95rem;
}

    #blazor-error-ui .reload[b-eef5q9bymj] {
        color: #7a4b00;
        font-weight: 700;
        margin-left: 1rem;
        text-decoration: none;
    }

        #blazor-error-ui .reload:hover[b-eef5q9bymj] {
            text-decoration: underline;
        }

    #blazor-error-ui .dismiss[b-eef5q9bymj] {
        cursor: pointer;
        position: absolute;
        right: 0.9rem;
        top: 0.7rem;
        font-size: 1.1rem;
    }

@media (max-width: 1100px) {
    .app-sidebar[b-eef5q9bymj] {
        width: 248px;
        min-width: 248px;
    }

    .header-texts h1[b-eef5q9bymj] {
        font-size: 22px;
    }
}

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

    .app-sidebar[b-eef5q9bymj] {
        width: 100%;
        min-width: 100%;
        height: auto;
        position: static;
        padding: 14px 14px 0 14px;
    }

    .app-main[b-eef5q9bymj] {
        padding: 0 14px 18px 14px;
    }

    .app-header[b-eef5q9bymj] {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
    }

    .header-right[b-eef5q9bymj] {
        width: 100%;
        justify-content: flex-start;
    }

    .user-box[b-eef5q9bymj] {
        flex-wrap: wrap;
    }
}

@media (max-width: 560px) {
    .header-left[b-eef5q9bymj] {
        align-items: flex-start;
    }

    .header-logo[b-eef5q9bymj] {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }

    .header-texts h1[b-eef5q9bymj] {
        font-size: 20px;
    }

    .user-box[b-eef5q9bymj] {
        width: 100%;
        justify-content: space-between;
    }

    .user-identity[b-eef5q9bymj] {
        width: 100%;
    }
}
/* _content/TankDesigner.Web/Components/Layout/NavMenu.razor.rz.scp.css */
.nav-shell[b-xgimb858ht] {
    height: 100%;
    background: #07163a;
    border-radius: 28px;
    padding: 20px 16px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

.brand-block[b-xgimb858ht] {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 4px 6px 2px 6px;
}

.brand-logo[b-xgimb858ht] {
    width: 78px;
    height: 78px;
    object-fit: contain;
    border-radius: 16px;
    background: #ffffff;
    padding: 8px;
    flex-shrink: 0;
}

.brand-copy[b-xgimb858ht] {
    min-width: 0;
}

    .brand-copy h2[b-xgimb858ht] {
        margin: 0;
        font-size: 16px;
        line-height: 1.05;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.01em;
    }

    .brand-copy p[b-xgimb858ht] {
        margin: 6px 0 0 0;
        font-size: 11px;
        line-height: 1.4;
        color: #9ca9bf;
    }

.nav-caption[b-xgimb858ht] {
    color: #b9c4d6;
    font-size: 13px;
    font-weight: 500;
    margin: 8px 0 2px 10px;
}

.nav-toggle[b-xgimb858ht] {
    display: none;
}

.nav-toggle-label[b-xgimb858ht] {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid #223250;
    background: #0c1f46;
    color: #ffffff;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-menu[b-xgimb858ht] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* IMPORTANTE: NavLink necesita ::deep */
[b-xgimb858ht] .nav-menu .nav-entry {
    min-height: 58px;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    text-decoration: none !important;
    color: #f8fbff !important;
    background: #091a42;
    border: 1px solid #20345d;
    border-radius: 0;
    padding: 0 18px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

    [b-xgimb858ht] .nav-menu .nav-entry:hover {
        background: #102654;
        border-color: #34548c;
        color: #ffffff !important;
        text-decoration: none !important;
        transform: translateY(-1px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
    }

    [b-xgimb858ht] .nav-menu .nav-entry.active {
        background: #22324f;
        border-color: #22324f;
        color: #ffffff !important;
        text-decoration: none !important;
        font-weight: 600;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    }

        [b-xgimb858ht] .nav-menu .nav-entry.active::before {
            content: "";
            position: absolute;
            left: -1px;
            top: -1px;
            bottom: -1px;
            width: 5px;
            background: #4b8cff;
        }

.nav-copy[b-xgimb858ht] {
    display: block;
    width: 100%;
}

.nav-status[b-xgimb858ht] {
    margin-top: auto;
    background: #0c1d45;
    border-radius: 18px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.nav-status__label[b-xgimb858ht] {
    display: block;
    color: #9daac0;
    font-size: 12px;
    font-weight: 500;
}

.nav-status strong[b-xgimb858ht] {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-top: 8px;
    line-height: 1.35;
}

.nav-status__text[b-xgimb858ht] {
    display: block;
    color: #c8d3e2;
    font-size: 12px;
    line-height: 1.45;
    margin-top: 8px;
}

@media (max-width: 900px) {
    .nav-shell[b-xgimb858ht] {
        border-radius: 20px;
        padding: 16px;
    }

    .brand-logo[b-xgimb858ht] {
        width: 68px;
        height: 68px;
        border-radius: 14px;
    }

    .brand-copy h2[b-xgimb858ht] {
        font-size: 15px;
    }

    .nav-toggle-label[b-xgimb858ht] {
        display: inline-flex;
        align-self: flex-start;
    }

    .nav-menu[b-xgimb858ht] {
        display: none;
    }

    .nav-toggle:checked ~ .nav-menu[b-xgimb858ht] {
        display: flex;
    }

    [b-xgimb858ht] .nav-menu .nav-entry {
        min-height: 52px;
        font-size: 14px;
    }
}
/* _content/TankDesigner.Web/Components/Pages/Cargas.razor.rz.scp.css */
.cargas-page[b-sk4x7tjy9h] {
    padding: 20px 22px 24px;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.05), transparent 28%), linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: calc(100vh - 80px);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #1f2937;
}

.page-header[b-sk4x7tjy9h] {
    margin-bottom: 20px;
    padding: 0 2px;
}

    .page-header h1[b-sk4x7tjy9h] {
        margin: 0;
        font-size: 28px;
        font-weight: 800;
        line-height: 1.15;
        color: #0f172a;
        letter-spacing: -0.02em;
    }

    .page-header p[b-sk4x7tjy9h] {
        margin: 8px 0 0 0;
        font-size: 14px;
        font-weight: 400;
        color: #64748b;
        line-height: 1.55;
        max-width: 760px;
    }

.alert-box[b-sk4x7tjy9h] {
    margin-bottom: 20px;
    padding: 14px 16px;
    border: 1px solid #f7d7aa;
    background: linear-gradient(180deg, #fffaf3 0%, #fff7ed 100%);
    color: #9a3412;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.alert-box__title[b-sk4x7tjy9h] {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 6px;
}

.alert-box ul[b-sk4x7tjy9h] {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.55;
}

.page-layout[b-sk4x7tjy9h] {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 340px;
    gap: 20px;
    align-items: start;
}

.main-column[b-sk4x7tjy9h],
.side-column[b-sk4x7tjy9h] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.td-panel[b-sk4x7tjy9h] {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    backdrop-filter: blur(10px);
}

.td-panel--compact[b-sk4x7tjy9h] {
    padding: 20px;
}

.td-panel--sticky[b-sk4x7tjy9h] {
    position: sticky;
    top: 18px;
}

.td-panel__header[b-sk4x7tjy9h] {
    margin-bottom: 20px;
}

    .td-panel__header h2[b-sk4x7tjy9h] {
        margin: 0;
        font-size: 20px;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.25;
        letter-spacing: -0.01em;
    }

    .td-panel__header p[b-sk4x7tjy9h] {
        margin: 8px 0 0 0;
        font-size: 14px;
        font-weight: 400;
        color: #64748b;
        line-height: 1.6;
    }

.section-kicker[b-sk4x7tjy9h] {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2563eb;
}

.form-grid[b-sk4x7tjy9h] {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 18px 24px;
}

.field[b-sk4x7tjy9h] {
    display: flex;
    flex-direction: column;
}

.field--full[b-sk4x7tjy9h] {
    grid-column: 1 / -1;
}

.field label[b-sk4x7tjy9h] {
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    line-height: 1.4;
}

.field small[b-sk4x7tjy9h] {
    margin-top: 7px;
    font-size: 12px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.5;
}

/* Inputs de Blazor */
[b-sk4x7tjy9h] .td-input {
    display: block;
    width: 100%;
    height: 48px;
    min-height: 48px;
    padding: 10px 14px;
    box-sizing: border-box;
    border: 1px solid #dbe4ee;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    color: #0f172a;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    outline: none;
    box-shadow: none;
    transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

    [b-sk4x7tjy9h] .td-input:hover {
        border-color: #bfd0e5;
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    }

    [b-sk4x7tjy9h] .td-input:focus,
    [b-sk4x7tjy9h] .td-input:focus-visible {
        outline: none;
        border-color: #2563eb;
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
        background: #ffffff;
    }

/* selects */
[b-sk4x7tjy9h] select.td-input,
[b-sk4x7tjy9h] .td-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 48px;
    min-height: 48px;
    line-height: 1.2;
    background-color: #ffffff;
    background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 13px) calc(50% - 3px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 34px;
    cursor: pointer;
}

    [b-sk4x7tjy9h] select.td-input::-ms-expand {
        display: none;
    }

/* numéricos */
[b-sk4x7tjy9h] input[type="number"].td-input {
    appearance: textfield;
    -moz-appearance: textfield;
    height: 48px;
    min-height: 48px;
}

    [b-sk4x7tjy9h] input[type="number"].td-input::-webkit-outer-spin-button,
    [b-sk4x7tjy9h] input[type="number"].td-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

/* Seguridad para valid/invalid de Blazor */
[b-sk4x7tjy9h] input.td-input,
[b-sk4x7tjy9h] select.td-input,
[b-sk4x7tjy9h] textarea.td-input {
    width: 100%;
    min-height: 48px;
    border: 1px solid #dbe4ee;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    color: #0f172a;
    padding: 10px 14px;
    box-sizing: border-box;
    font-size: 14px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: none;
}

/* textarea por si luego la usas */
[b-sk4x7tjy9h] textarea.td-input {
    min-height: 110px;
    resize: vertical;
    line-height: 1.6;
}

/* resumen lateral */
.summary-list[b-sk4x7tjy9h] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row[b-sk4x7tjy9h] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 13px 14px;
    border: 1px solid #e5ebf2;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .summary-row:hover[b-sk4x7tjy9h] {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
    }

.summary-row__label[b-sk4x7tjy9h] {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
}

.summary-row__value[b-sk4x7tjy9h] {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    word-break: break-word;
    line-height: 1.4;
}

/* helpers visuales opcionales si ya los usas en Razor */
.summary-value-ok[b-sk4x7tjy9h] {
    color: #15803d;
}

.summary-value-warn[b-sk4x7tjy9h] {
    color: #b45309;
}

/* responsive */
@media (max-width: 1200px) {
    .page-layout[b-sk4x7tjy9h] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .td-panel--sticky[b-sk4x7tjy9h] {
        position: static;
    }
}

@media (max-width: 980px) {
    .form-grid[b-sk4x7tjy9h] {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .field--full[b-sk4x7tjy9h] {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .cargas-page[b-sk4x7tjy9h] {
        padding: 14px;
    }

    .page-header h1[b-sk4x7tjy9h] {
        font-size: 22px;
    }

    .td-panel[b-sk4x7tjy9h] {
        padding: 18px;
        border-radius: 18px;
    }

    [b-sk4x7tjy9h] .td-input,
    [b-sk4x7tjy9h] input.td-input,
    [b-sk4x7tjy9h] select.td-input,
    [b-sk4x7tjy9h] textarea.td-input {
        min-height: 44px;
    }
}
/* _content/TankDesigner.Web/Components/Pages/Cuenta.razor.rz.scp.css */
.cuenta-page[b-aslyrdnwmr] {
    max-width: 1180px;
    margin: 0 auto;
    padding: 8px 4px 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cuenta-hero[b-aslyrdnwmr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 28px 30px;
    border-radius: 24px;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 28%), linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
    border: 1px solid #e6ebf2;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.cuenta-hero__identity[b-aslyrdnwmr] {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cuenta-avatar[b-aslyrdnwmr] {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0f172a 0%, #1f3a5f 100%);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    font-weight: 800;
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.16);
    flex-shrink: 0;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .cuenta-avatar:hover[b-aslyrdnwmr] {
        transform: translateY(-1px);
        box-shadow: 0 18px 28px rgba(15, 23, 42, 0.18);
    }

.cuenta-kicker[b-aslyrdnwmr] {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 8px;
}

.cuenta-hero h1[b-aslyrdnwmr] {
    margin: 0 0 6px 0;
    font-size: 2rem;
    line-height: 1.05;
    color: #0f172a;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.cuenta-hero p[b-aslyrdnwmr] {
    margin: 0;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.55;
}

.cuenta-hero__status[b-aslyrdnwmr] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f0fdf4 0%, #eefbf3 100%);
    border: 1px solid #cfeeda;
    color: #166534;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(22, 101, 52, 0.06);
}

.cuenta-status-dot[b-aslyrdnwmr] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #19c37d;
    box-shadow: 0 0 0 4px rgba(25, 195, 125, 0.12);
}

.cuenta-grid[b-aslyrdnwmr] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
}

.cuenta-card[b-aslyrdnwmr] {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 22px;
    padding: 26px;
    border: 1px solid #e6ebf2;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    align-self: start;
}

    .cuenta-card:hover[b-aslyrdnwmr] {
        transform: translateY(-2px);
        border-color: #d8e2ef;
        box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
    }

.cuenta-card__header[b-aslyrdnwmr] {
    margin-bottom: 22px;
}

    .cuenta-card__header h2[b-aslyrdnwmr] {
        margin: 0 0 8px 0;
        font-size: 1.5rem;
        color: #0f172a;
        font-weight: 800;
        letter-spacing: -0.01em;
    }

    .cuenta-card__header p[b-aslyrdnwmr] {
        margin: 0;
        color: #64748b;
        line-height: 1.6;
    }

.cuenta-form-grid[b-aslyrdnwmr] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field[b-aslyrdnwmr] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field--full[b-aslyrdnwmr] {
    grid-column: 1 / -1;
}

.field label[b-aslyrdnwmr] {
    font-size: 0.82rem;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.02em;
}

.field input[b-aslyrdnwmr] {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid #dbe4ee;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    font-size: 14px;
    color: #0f172a;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

    .field input:hover[b-aslyrdnwmr] {
        border-color: #c7d5e6;
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    }

    .field input:focus[b-aslyrdnwmr] {
        outline: none;
        border-color: #1f3a5f;
        box-shadow: 0 0 0 4px rgba(31, 58, 95, 0.08);
        background: #ffffff;
    }

    .field input:disabled[b-aslyrdnwmr] {
        background: #f8fafc;
        color: #64748b;
        cursor: not-allowed;
    }

.cuenta-actions[b-aslyrdnwmr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 18px 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #e6ebf2;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.btn-save[b-aslyrdnwmr] {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #0f172a 0%, #1f3a5f 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

    .btn-save:hover[b-aslyrdnwmr] {
        transform: translateY(-1px);
        box-shadow: 0 14px 26px rgba(15, 23, 42, 0.18);
        opacity: 0.98;
    }

    .btn-save:active[b-aslyrdnwmr] {
        transform: translateY(0);
    }

.cuenta-message[b-aslyrdnwmr] {
    padding: 12px 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f0fdf4 0%, #eefbf3 100%);
    border: 1px solid #cfeeda;
    color: #166534;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(22, 101, 52, 0.05);
}

@media (max-width: 980px) {
    .cuenta-grid[b-aslyrdnwmr] {
        grid-template-columns: 1fr;
    }

    .cuenta-hero[b-aslyrdnwmr] {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .cuenta-page[b-aslyrdnwmr] {
        padding: 4px 0 20px;
    }

    .cuenta-hero[b-aslyrdnwmr] {
        padding: 22px 18px;
    }

    .cuenta-card[b-aslyrdnwmr] {
        padding: 20px 18px;
        border-radius: 18px;
    }

    .cuenta-form-grid[b-aslyrdnwmr] {
        grid-template-columns: 1fr;
    }

    .field--full[b-aslyrdnwmr] {
        grid-column: auto;
    }

    .cuenta-hero__identity[b-aslyrdnwmr] {
        align-items: flex-start;
    }

    .cuenta-avatar[b-aslyrdnwmr] {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

    .cuenta-hero h1[b-aslyrdnwmr] {
        font-size: 1.6rem;
    }
    .cuenta-card--mini[b-aslyrdnwmr] {
        padding: 22px;
    }

    .cuenta-resumen[b-aslyrdnwmr] {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .resumen-item[b-aslyrdnwmr] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 14px;
        border-radius: 12px;
        background: rgba(15, 23, 42, 0.04);
        border: 1px solid rgba(15, 23, 42, 0.06);
    }

    .resumen-label[b-aslyrdnwmr] {
        font-size: 0.85rem;
        color: #64748b;
        font-weight: 600;
    }

    .resumen-value[b-aslyrdnwmr] {
        font-weight: 700;
        color: #0f172a;
    }

        .resumen-value.ok[b-aslyrdnwmr] {
            color: #16a34a;
        }
}
/* _content/TankDesigner.Web/Components/Pages/Geometria.razor.rz.scp.css */
.geometria-page[b-wkfknm5fk1] {
    padding: 20px 22px 24px;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.05), transparent 28%), linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: calc(100vh - 80px);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #1f2937;
}

.page-header[b-wkfknm5fk1] {
    margin-bottom: 20px;
    padding: 0 2px;
}

    .page-header h1[b-wkfknm5fk1] {
        margin: 0;
        font-size: 28px;
        font-weight: 800;
        line-height: 1.15;
        color: #0f172a;
        letter-spacing: -0.02em;
    }

    .page-header p[b-wkfknm5fk1] {
        margin: 8px 0 0 0;
        font-size: 14px;
        font-weight: 400;
        color: #64748b;
        line-height: 1.55;
        max-width: 760px;
    }

.alert-box[b-wkfknm5fk1] {
    margin-bottom: 20px;
    padding: 14px 16px;
    border: 1px solid #f7d7aa;
    background: linear-gradient(180deg, #fffaf3 0%, #fff7ed 100%);
    color: #9a3412;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.alert-box__title[b-wkfknm5fk1] {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 6px;
}

.alert-box ul[b-wkfknm5fk1] {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.55;
}

.page-layout[b-wkfknm5fk1] {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 340px;
    gap: 20px;
    align-items: start;
}

.main-column[b-wkfknm5fk1],
.side-column[b-wkfknm5fk1] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.td-panel[b-wkfknm5fk1] {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    backdrop-filter: blur(10px);
}

.td-panel--compact[b-wkfknm5fk1] {
    padding: 20px;
}

.td-panel--sticky[b-wkfknm5fk1] {
    position: sticky;
    top: 18px;
}

.td-panel__header[b-wkfknm5fk1] {
    margin-bottom: 20px;
}

    .td-panel__header h2[b-wkfknm5fk1] {
        margin: 0;
        font-size: 20px;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.25;
        letter-spacing: -0.01em;
    }

    .td-panel__header p[b-wkfknm5fk1] {
        margin: 8px 0 0 0;
        font-size: 14px;
        font-weight: 400;
        color: #64748b;
        line-height: 1.6;
    }

.section-kicker[b-wkfknm5fk1] {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2563eb;
}

.form-grid[b-wkfknm5fk1] {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 18px 24px;
}

.field[b-wkfknm5fk1] {
    display: flex;
    flex-direction: column;
}

    .field label[b-wkfknm5fk1] {
        margin-bottom: 7px;
        font-size: 13px;
        font-weight: 700;
        color: #334155;
        line-height: 1.4;
    }

    .field small[b-wkfknm5fk1] {
        margin-top: 7px;
        font-size: 12px;
        font-weight: 400;
        color: #64748b;
        line-height: 1.5;
    }

.td-input[b-wkfknm5fk1],
input.td-input[b-wkfknm5fk1],
select.td-input[b-wkfknm5fk1],
textarea.td-input[b-wkfknm5fk1] {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    box-sizing: border-box;
    border: 1px solid #dbe4ee;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    outline: none;
    box-shadow: none;
    transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

    .td-input:hover[b-wkfknm5fk1],
    input.td-input:hover[b-wkfknm5fk1],
    select.td-input:hover[b-wkfknm5fk1],
    textarea.td-input:hover[b-wkfknm5fk1] {
        border-color: #bfd0e5;
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    }

    .td-input:focus[b-wkfknm5fk1],
    .td-input:focus-visible[b-wkfknm5fk1],
    input.td-input:focus[b-wkfknm5fk1],
    input.td-input:focus-visible[b-wkfknm5fk1],
    select.td-input:focus[b-wkfknm5fk1],
    select.td-input:focus-visible[b-wkfknm5fk1],
    textarea.td-input:focus[b-wkfknm5fk1],
    textarea.td-input:focus-visible[b-wkfknm5fk1] {
        outline: none;
        border-color: #2563eb;
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
        background: #ffffff;
    }

select.td-input[b-wkfknm5fk1],
.td-select[b-wkfknm5fk1] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff;
    background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 13px) calc(50% - 3px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 34px;
    cursor: pointer;
}

    select.td-input[b-wkfknm5fk1]::-ms-expand {
        display: none;
    }

input[type="number"].td-input[b-wkfknm5fk1] {
    appearance: textfield;
    -moz-appearance: textfield;
}

    input[type="number"].td-input[b-wkfknm5fk1]::-webkit-outer-spin-button,
    input[type="number"].td-input[b-wkfknm5fk1]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

textarea.td-input[b-wkfknm5fk1] {
    min-height: 110px;
    resize: vertical;
    line-height: 1.6;
}

.results-grid[b-wkfknm5fk1] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.result-card[b-wkfknm5fk1] {
    padding: 16px 18px;
    border: 1px solid #e5ebf2;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

    .result-card:hover[b-wkfknm5fk1] {
        transform: translateY(-1px);
        border-color: #d6e2ef;
        box-shadow: 0 12px 22px rgba(15, 23, 42, 0.05);
    }

.result-card__label[b-wkfknm5fk1] {
    display: block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
}

.result-card__value[b-wkfknm5fk1] {
    display: block;
    margin-top: 8px;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.result-card small[b-wkfknm5fk1] {
    display: inline-block;
    margin-top: 5px;
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

.summary-list[b-wkfknm5fk1] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row[b-wkfknm5fk1] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 13px 14px;
    border: 1px solid #e5ebf2;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .summary-row:hover[b-wkfknm5fk1] {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
    }

.summary-row__label[b-wkfknm5fk1] {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
}

.summary-row__value[b-wkfknm5fk1] {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    word-break: break-word;
    line-height: 1.4;
}

/* Helpers opcionales si ya existen en Razor */
.summary-value-ok[b-wkfknm5fk1] {
    color: #15803d;
}

.summary-value-warn[b-wkfknm5fk1] {
    color: #b45309;
}

@media (max-width: 1200px) {
    .page-layout[b-wkfknm5fk1] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .td-panel--sticky[b-wkfknm5fk1] {
        position: static;
    }
}

@media (max-width: 768px) {
    .geometria-page[b-wkfknm5fk1] {
        padding: 14px;
    }

    .form-grid[b-wkfknm5fk1],
    .results-grid[b-wkfknm5fk1] {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .td-panel[b-wkfknm5fk1] {
        padding: 18px;
        border-radius: 18px;
    }

    .page-header h1[b-wkfknm5fk1] {
        font-size: 22px;
    }

    .td-input[b-wkfknm5fk1],
    input.td-input[b-wkfknm5fk1],
    select.td-input[b-wkfknm5fk1],
    textarea.td-input[b-wkfknm5fk1] {
        min-height: 44px;
    }
}
/* _content/TankDesigner.Web/Components/Pages/Home.razor.rz.scp.css */
.home-page[b-xxjxl3ev3z] {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #f8fafc;
}

.home-card[b-xxjxl3ev3z] {
    width: min(700px, 100%);
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    text-align: center;
}

    .home-card h1[b-xxjxl3ev3z] {
        margin: 0 0 10px 0;
        font-size: 32px;
        font-weight: 800;
        color: #0f172a;
    }

    .home-card p[b-xxjxl3ev3z] {
        margin: 0;
        font-size: 16px;
        color: #64748b;
        line-height: 1.6;
    }
/* _content/TankDesigner.Web/Components/Pages/Informe.razor.rz.scp.css */
.informes-page[b-ihvb9j7cyu] {
    padding: 20px 22px 24px;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.05), transparent 28%), linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: calc(100vh - 80px);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #1f2937;
}

.page-header[b-ihvb9j7cyu] {
    margin-bottom: 20px;
    padding: 0 2px;
}

    .page-header h1[b-ihvb9j7cyu] {
        margin: 0;
        font-size: 28px;
        font-weight: 800;
        line-height: 1.15;
        color: #0f172a;
        letter-spacing: -0.02em;
    }

    .page-header p[b-ihvb9j7cyu] {
        margin: 8px 0 0 0;
        font-size: 14px;
        font-weight: 400;
        color: #64748b;
        line-height: 1.55;
        max-width: 760px;
    }

.alert-box[b-ihvb9j7cyu] {
    margin-bottom: 20px;
    padding: 14px 16px;
    border: 1px solid #f7d7aa;
    background: linear-gradient(180deg, #fffaf3 0%, #fff7ed 100%);
    color: #9a3412;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.alert-box__title[b-ihvb9j7cyu] {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 6px;
}

.page-layout[b-ihvb9j7cyu] {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 340px;
    gap: 20px;
    align-items: start;
}

.main-column[b-ihvb9j7cyu],
.side-column[b-ihvb9j7cyu] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.td-panel[b-ihvb9j7cyu] {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    backdrop-filter: blur(10px);
}

.td-panel--compact[b-ihvb9j7cyu] {
    padding: 20px;
}

.td-panel--sticky[b-ihvb9j7cyu] {
    position: sticky;
    top: 18px;
}

.td-panel__header[b-ihvb9j7cyu] {
    margin-bottom: 20px;
}

.td-panel__header--split[b-ihvb9j7cyu] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
}

.td-panel__header h2[b-ihvb9j7cyu] {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.td-panel__header p[b-ihvb9j7cyu] {
    margin: 8px 0 0 0;
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.6;
}

.section-kicker[b-ihvb9j7cyu] {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2563eb;
}

.toolbar-actions[b-ihvb9j7cyu] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.idioma-switch[b-ihvb9j7cyu] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #eef2f7;
    border: 1px solid #dbe3ee;
    padding: 5px;
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.lang[b-ihvb9j7cyu] {
    min-width: 54px;
    height: 40px;
    border: 1px solid transparent;
    background: transparent;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    padding: 0 14px;
    border-radius: 10px;
    transition: all 0.18s ease;
}

    .lang:hover[b-ihvb9j7cyu] {
        background: rgba(255, 255, 255, 0.7);
    }

    .lang.active[b-ihvb9j7cyu] {
        background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
        border-color: #1d4ed8;
        color: #ffffff;
        box-shadow: 0 8px 18px rgba(29, 78, 216, 0.25);
    }

.report-type-grid[b-ihvb9j7cyu] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.report-card[b-ihvb9j7cyu] {
    min-height: 132px;
    padding: 16px 16px;
    border: 1px solid #dde5ee;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 18px;
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 9px;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

    .report-card:hover[b-ihvb9j7cyu] {
        border-color: #bfd0e5;
        background: linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%);
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
    }

.report-card--active[b-ihvb9j7cyu] {
    background: linear-gradient(180deg, #eff6ff 0%, #e0edff 100%);
    border-color: #7aa7e8;
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.10);
}

.report-card__title[b-ihvb9j7cyu] {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
}

.report-card__text[b-ihvb9j7cyu] {
    font-size: 13px;
    line-height: 1.55;
    color: #64748b;
}

.actions-grid[b-ihvb9j7cyu] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.action-btn[b-ihvb9j7cyu] {
    min-height: 46px;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.10);
}

    .action-btn:hover[b-ihvb9j7cyu] {
        opacity: 0.98;
        transform: translateY(-1px);
    }

    .action-btn:active[b-ihvb9j7cyu] {
        transform: translateY(0);
    }

    .action-btn:disabled[b-ihvb9j7cyu] {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }

.action-btn--primary[b-ihvb9j7cyu] {
    background: linear-gradient(135deg, #1e3a8a, #1f3b63);
}

.action-btn--dark[b-ihvb9j7cyu] {
    background: linear-gradient(135deg, #111827, #1f2937);
}

.action-btn--blue[b-ihvb9j7cyu] {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.action-btn--gray[b-ihvb9j7cyu] {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.preview-shell[b-ihvb9j7cyu] {
    padding: 12px;
    border: 1px solid #dde5ee;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.preview-frame[b-ihvb9j7cyu] {
    width: 100%;
    height: 1100px;
    border: 1px solid #dbe3ee;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.summary-list[b-ihvb9j7cyu] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row[b-ihvb9j7cyu] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 13px 14px;
    border: 1px solid #e5ebf2;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .summary-row:hover[b-ihvb9j7cyu] {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
    }

.summary-row__label[b-ihvb9j7cyu] {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
}

.summary-row__value[b-ihvb9j7cyu] {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    word-break: break-word;
    line-height: 1.4;
}

.summary-value-ok[b-ihvb9j7cyu] {
    color: #15803d;
}

.summary-value-warn[b-ihvb9j7cyu] {
    color: #b45309;
}

/* =========================
   FAB IA
   ========================= */

.ia-fab[b-ihvb9j7cyu] {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 72px;
    height: 72px;
    border: none;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.22), transparent 35%), linear-gradient(145deg, #2563eb, #0f172a);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    z-index: 1200;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

    .ia-fab:hover[b-ihvb9j7cyu] {
        transform: translateY(-2px) scale(1.04);
        box-shadow: 0 24px 50px rgba(15, 23, 42, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    .ia-fab:active[b-ihvb9j7cyu] {
        transform: scale(0.98);
    }

/* =========================
   MODAL IA
   ========================= */

.ia-modal-overlay[b-ihvb9j7cyu] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.50);
    backdrop-filter: blur(5px);
    z-index: 1250;
    animation: iaFadeIn-b-ihvb9j7cyu 0.18s ease;
}

.ia-modal-shell[b-ihvb9j7cyu] {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.ia-modal[b-ihvb9j7cyu] {
    width: min(980px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.24), 0 1px 0 rgba(255,255,255,0.65) inset;
    padding: 26px;
    animation: iaModalIn-b-ihvb9j7cyu 0.24s ease;
}

.ia-modal__header[b-ihvb9j7cyu] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e5e7eb;
}

.ia-modal__title-wrap h2[b-ihvb9j7cyu] {
    margin: 4px 0 8px 0;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.ia-modal__title-wrap p[b-ihvb9j7cyu] {
    margin: 0;
    max-width: 700px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.ia-modal__close[b-ihvb9j7cyu] {
    width: 44px;
    height: 44px;
    border: 1px solid #dbe3ee;
    border-radius: 14px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

    .ia-modal__close:hover[b-ihvb9j7cyu] {
        background: #f1f5f9;
        transform: scale(1.03);
        box-shadow: 0 8px 16px rgba(15, 23, 42, 0.06);
    }

.ia-modal__toolbar[b-ihvb9j7cyu] {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 18px;
}

.ia-modal__analyze-btn[b-ihvb9j7cyu] {
    min-width: 190px;
}

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

.ia-status[b-ihvb9j7cyu] {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: #374151;
    font-size: 14px;
    line-height: 1.55;
}

.ia-status--error[b-ihvb9j7cyu] {
    border-color: #f4c7c7;
    background: linear-gradient(180deg, #fff7f7 0%, #fff1f1 100%);
    color: #8b1e1e;
}

.ia-empty-state[b-ihvb9j7cyu] {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px;
    border: 1px dashed #d7dce3;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ia-empty-state__icon[b-ihvb9j7cyu] {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 20px;
    background: linear-gradient(145deg, #eff6ff, #dbeafe);
    color: #1d4ed8;
    font-size: 1.4rem;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.12);
}

.ia-empty-state h3[b-ihvb9j7cyu] {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}

.ia-empty-state p[b-ihvb9j7cyu] {
    margin: 0;
    max-width: 520px;
    color: #64748b;
    line-height: 1.65;
}

.ia-loading-box[b-ihvb9j7cyu] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid #dbe4f0;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.ia-loading-box__spinner[b-ihvb9j7cyu] {
    width: 42px;
    height: 42px;
    border: 4px solid rgba(37, 99, 235, 0.14);
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: iaSpin-b-ihvb9j7cyu 0.8s linear infinite;
    flex-shrink: 0;
}

.ia-loading-box__text h3[b-ihvb9j7cyu] {
    margin: 0 0 4px 0;
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
}

.ia-loading-box__text p[b-ihvb9j7cyu] {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

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

.ia-results[b-ihvb9j7cyu] {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ia-results__top[b-ihvb9j7cyu] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 16px;
}

.ia-summary-card[b-ihvb9j7cyu] {
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.ia-summary-card__label[b-ihvb9j7cyu] {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.ia-summary-card p[b-ihvb9j7cyu] {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #0f172a;
}

.ia-risk-card[b-ihvb9j7cyu] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.ia-risk-card__label[b-ihvb9j7cyu] {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.ia-risk-card strong[b-ihvb9j7cyu] {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 900;
}

.ia-risk-card--bajo[b-ihvb9j7cyu] {
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf3 100%);
    border-color: #ccebd9;
    color: #166534;
}

.ia-risk-card--medio[b-ihvb9j7cyu] {
    background: linear-gradient(180deg, #fffaf2 0%, #fff7ed 100%);
    border-color: #f5d7b4;
    color: #9a3412;
}

.ia-risk-card--alto[b-ihvb9j7cyu] {
    background: linear-gradient(180deg, #fff5f5 0%, #fef2f2 100%);
    border-color: #f4c7c7;
    color: #991b1b;
}

/* =========================
   HALLAZGOS IA
   ========================= */

.ia-finding-list[b-ihvb9j7cyu] {
    display: grid;
    gap: 14px;
}

.ia-finding-card[b-ihvb9j7cyu] {
    padding: 18px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

    .ia-finding-card:hover[b-ihvb9j7cyu] {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
    }

.ia-finding-card--error[b-ihvb9j7cyu] {
    border-left: 5px solid #dc2626;
}

.ia-finding-card--advertencia[b-ihvb9j7cyu] {
    border-left: 5px solid #f59e0b;
}

.ia-finding-card--sugerencia[b-ihvb9j7cyu] {
    border-left: 5px solid #2563eb;
}

.ia-finding-card--info[b-ihvb9j7cyu] {
    border-left: 5px solid #64748b;
}

.ia-finding-card__head[b-ihvb9j7cyu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.ia-finding-card h3[b-ihvb9j7cyu] {
    margin: 0 0 8px 0;
    font-size: 18px;
    line-height: 1.3;
    color: #0f172a;
    font-weight: 800;
}

.ia-finding-card p[b-ihvb9j7cyu] {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #334155;
}

.ia-finding-card__priority[b-ihvb9j7cyu] {
    font-size: 12px;
    font-weight: 800;
    color: #64748b;
    white-space: nowrap;
}

.ia-finding-card__field[b-ihvb9j7cyu] {
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
    color: #475569;
}

.ia-finding-card__recommendation[b-ihvb9j7cyu] {
    margin-top: 12px;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    font-size: 14px;
    line-height: 1.65;
    color: #334155;
}

.ia-chip[b-ihvb9j7cyu] {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: capitalize;
}

.ia-chip--error[b-ihvb9j7cyu] {
    background: #fef2f2;
    color: #991b1b;
}

.ia-chip--advertencia[b-ihvb9j7cyu] {
    background: #fff7ed;
    color: #9a3412;
}

.ia-chip--sugerencia[b-ihvb9j7cyu] {
    background: #eff6ff;
    color: #1d4ed8;
}

.ia-chip--info[b-ihvb9j7cyu] {
    background: #f1f5f9;
    color: #334155;
}

/* =========================
   ANIMACIONES
   ========================= */

@keyframes iaFadeIn-b-ihvb9j7cyu {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes iaModalIn-b-ihvb9j7cyu {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes iaSpin-b-ihvb9j7cyu {
    to {
        transform: rotate(360deg);
    }
}

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

@media (max-width: 1200px) {
    .page-layout[b-ihvb9j7cyu] {
        grid-template-columns: 1fr;
    }

    .actions-grid[b-ihvb9j7cyu] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .report-type-grid[b-ihvb9j7cyu] {
        grid-template-columns: 1fr;
    }

    .td-panel__header--split[b-ihvb9j7cyu] {
        flex-direction: column;
    }

    .ia-results__top[b-ihvb9j7cyu] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .informes-page[b-ihvb9j7cyu] {
        padding: 14px;
    }

    .page-header h1[b-ihvb9j7cyu] {
        font-size: 22px;
    }

    .actions-grid[b-ihvb9j7cyu] {
        grid-template-columns: 1fr;
    }

    .preview-frame[b-ihvb9j7cyu] {
        height: 900px;
    }

    .td-panel[b-ihvb9j7cyu] {
        padding: 18px;
        border-radius: 18px;
    }

    .ia-fab[b-ihvb9j7cyu] {
        right: 18px;
        bottom: 18px;
        width: 66px;
        height: 66px;
        font-size: 0.95rem;
    }

    .ia-modal-shell[b-ihvb9j7cyu] {
        padding: 12px;
        align-items: flex-end;
    }

    .ia-modal[b-ihvb9j7cyu] {
        width: 100%;
        max-height: 92vh;
        border-radius: 24px 24px 0 0;
        padding: 18px;
    }

    .ia-modal__header[b-ihvb9j7cyu] {
        gap: 14px;
    }

    .ia-modal__title-wrap h2[b-ihvb9j7cyu] {
        font-size: 22px;
    }

    .ia-modal__title-wrap p[b-ihvb9j7cyu] {
        font-size: 13px;
    }

    .ia-loading-box[b-ihvb9j7cyu] {
        align-items: flex-start;
    }

    .ia-finding-card__head[b-ihvb9j7cyu] {
        flex-direction: column;
        align-items: flex-start;
    }

    .ia-question-box[b-ihvb9j7cyu] {
        margin-top: 18px;
        padding: 18px;
        border: 1px solid #e5e7eb;
        border-radius: 20px;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    }

    .ia-question-box__header[b-ihvb9j7cyu] {
        margin-bottom: 12px;
    }

        .ia-question-box__header h3[b-ihvb9j7cyu] {
            margin: 0 0 6px 0;
            font-size: 18px;
            font-weight: 800;
            color: #0f172a;
        }

        .ia-question-box__header p[b-ihvb9j7cyu] {
            margin: 0;
            font-size: 14px;
            color: #64748b;
            line-height: 1.55;
        }

    .ia-question-box__textarea[b-ihvb9j7cyu] {
        width: 100%;
        min-height: 120px;
        resize: vertical;
        border: 1px solid #dbe3ee;
        border-radius: 14px;
        padding: 14px 16px;
        font-size: 14px;
        line-height: 1.6;
        color: #0f172a;
        background: #ffffff;
        outline: none;
        box-sizing: border-box;
        transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }

        .ia-question-box__textarea:focus[b-ihvb9j7cyu] {
            border-color: #2563eb;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
        }

    .ia-question-box__actions[b-ihvb9j7cyu] {
        margin-top: 12px;
        display: flex;
        justify-content: flex-start;
    }

    .ia-answer-box[b-ihvb9j7cyu] {
        margin-top: 16px;
        padding: 16px;
        border: 1px solid #dbe4f0;
        border-radius: 16px;
        background: linear-gradient(180deg, #f8fbff 0%, #f1f5f9 100%);
    }

    .ia-answer-box__label[b-ihvb9j7cyu] {
        margin-bottom: 8px;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: #2563eb;
    }

    .ia-answer-box p[b-ihvb9j7cyu] {
        margin: 0;
        font-size: 14px;
        line-height: 1.7;
        color: #0f172a;
        white-space: pre-line;
    }
}
/* _content/TankDesigner.Web/Components/Pages/Instalacion.razor.rz.scp.css */
.instalacion-page[b-wyb6vwjczn] {
    padding: 20px 22px 24px;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.05), transparent 28%), linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: calc(100vh - 80px);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #1f2937;
}

.page-header[b-wyb6vwjczn] {
    margin-bottom: 20px;
    padding: 0 2px;
}

    .page-header h1[b-wyb6vwjczn] {
        margin: 0;
        font-size: 28px;
        font-weight: 800;
        line-height: 1.15;
        color: #0f172a;
        letter-spacing: -0.02em;
    }

    .page-header p[b-wyb6vwjczn] {
        margin: 8px 0 0 0;
        font-size: 14px;
        font-weight: 400;
        color: #64748b;
        line-height: 1.55;
        max-width: 760px;
    }

.page-layout[b-wyb6vwjczn] {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 340px;
    gap: 20px;
    align-items: start;
}

.main-column[b-wyb6vwjczn],
.side-column[b-wyb6vwjczn] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.td-panel[b-wyb6vwjczn] {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    backdrop-filter: blur(10px);
}

.td-panel--compact[b-wyb6vwjczn] {
    padding: 20px;
}

.td-panel--sticky[b-wyb6vwjczn] {
    position: sticky;
    top: 18px;
}

.td-panel__header[b-wyb6vwjczn] {
    margin-bottom: 20px;
}

    .td-panel__header h2[b-wyb6vwjczn] {
        margin: 0;
        font-size: 20px;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.25;
        letter-spacing: -0.01em;
    }

    .td-panel__header p[b-wyb6vwjczn] {
        margin: 8px 0 0 0;
        font-size: 14px;
        font-weight: 400;
        color: #64748b;
        line-height: 1.6;
    }

.section-kicker[b-wyb6vwjczn] {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2563eb;
}

.form-grid[b-wyb6vwjczn] {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 18px 24px;
}

.field[b-wyb6vwjczn] {
    display: flex;
    flex-direction: column;
}

.field--full[b-wyb6vwjczn] {
    grid-column: 1 / -1;
}

.field label[b-wyb6vwjczn] {
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    line-height: 1.4;
}

.field small[b-wyb6vwjczn] {
    margin-top: 7px;
    font-size: 12px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.5;
}

/* IMPORTANTE: con ::deep sí entra en InputSelect / InputNumber */
[b-wyb6vwjczn] .td-input {
    display: block;
    width: 100%;
    height: 48px;
    min-height: 48px;
    padding: 10px 14px;
    box-sizing: border-box;
    border: 1px solid #dbe4ee;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    color: #0f172a;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    outline: none;
    box-shadow: none;
    transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

    [b-wyb6vwjczn] .td-input:hover {
        border-color: #bfd0e5;
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    }

    [b-wyb6vwjczn] .td-input:focus,
    [b-wyb6vwjczn] .td-input:focus-visible {
        outline: none;
        border-color: #2563eb;
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
        background: #ffffff;
    }

/* selects */
[b-wyb6vwjczn] select.td-input,
[b-wyb6vwjczn] .td-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 48px;
    min-height: 48px;
    line-height: 1.2;
    background-color: #ffffff;
    background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 13px) calc(50% - 3px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 34px;
    cursor: pointer;
}

    [b-wyb6vwjczn] select.td-input::-ms-expand {
        display: none;
    }

/* numéricos */
[b-wyb6vwjczn] input[type="number"].td-input {
    appearance: textfield;
    -moz-appearance: textfield;
    height: 48px;
    min-height: 48px;
}

    [b-wyb6vwjczn] input[type="number"].td-input::-webkit-outer-spin-button,
    [b-wyb6vwjczn] input[type="number"].td-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

/* por si Blazor añade valid/invalid */
[b-wyb6vwjczn] input.td-input,
[b-wyb6vwjczn] select.td-input,
[b-wyb6vwjczn] textarea.td-input {
    width: 100%;
    height: 48px;
    min-height: 48px;
    border: 1px solid #dbe4ee;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    color: #0f172a;
    padding: 10px 14px;
    box-sizing: border-box;
    font-size: 14px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: none;
}

[b-wyb6vwjczn] textarea.td-input {
    min-height: 110px;
    resize: vertical;
    line-height: 1.6;
}

.summary-list[b-wyb6vwjczn] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row[b-wyb6vwjczn] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 13px 14px;
    border: 1px solid #e5ebf2;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .summary-row:hover[b-wyb6vwjczn] {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
    }

.summary-row__label[b-wyb6vwjczn] {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
}

.summary-row__value[b-wyb6vwjczn] {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    word-break: break-word;
    line-height: 1.4;
}

.summary-value-ok[b-wyb6vwjczn] {
    color: #15803d;
}

.summary-value-warn[b-wyb6vwjczn] {
    color: #b45309;
}

@media (max-width: 1200px) {
    .page-layout[b-wyb6vwjczn] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .td-panel--sticky[b-wyb6vwjczn] {
        position: static;
    }
}

@media (max-width: 768px) {
    .instalacion-page[b-wyb6vwjczn] {
        padding: 14px;
    }

    .form-grid[b-wyb6vwjczn] {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .field--full[b-wyb6vwjczn] {
        grid-column: auto;
    }

    .td-panel[b-wyb6vwjczn] {
        padding: 18px;
        border-radius: 18px;
    }

    .page-header h1[b-wyb6vwjczn] {
        font-size: 22px;
    }

    [b-wyb6vwjczn] .td-input,
    [b-wyb6vwjczn] input.td-input,
    [b-wyb6vwjczn] select.td-input,
    [b-wyb6vwjczn] textarea.td-input {
        height: 44px;
        min-height: 44px;
    }
}
/* _content/TankDesigner.Web/Components/Pages/MisProyectos.razor.rz.scp.css */
.gestion-proyectos-page[b-q462z2wdk2] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gestion-hero[b-q462z2wdk2] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 30px;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 28%), linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
    border: 1px solid #e6ebf2;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.gestion-kicker[b-q462z2wdk2] {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 8px;
}

.gestion-hero h1[b-q462z2wdk2] {
    margin: 0 0 10px 0;
    font-size: 2.15rem;
    line-height: 1.05;
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.gestion-hero p[b-q462z2wdk2] {
    margin: 0;
    max-width: 760px;
    color: #526070;
    font-size: 1rem;
    line-height: 1.6;
}

.gestion-hero__actions[b-q462z2wdk2] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.gestion-alerta[b-q462z2wdk2] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #fde68a;
    background: linear-gradient(180deg, #fffdf2 0%, #fffbea 100%);
    color: #7c5a05;
    box-shadow: 0 10px 20px rgba(124, 90, 5, 0.05);
}

.gestion-tabs[b-q462z2wdk2] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tab-btn[b-q462z2wdk2] {
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 15px 16px;
    border-radius: 18px;
    border: 1px solid #dde4ee;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    color: #0f172a;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

    .tab-btn:hover[b-q462z2wdk2] {
        transform: translateY(-1px);
        border-color: #bfd2f5;
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    }

.tab-btn--active[b-q462z2wdk2] {
    background: linear-gradient(135deg, #0f172a 0%, #16284a 100%);
    border-color: #0f172a;
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
}

.tab-title[b-q462z2wdk2] {
    font-weight: 800;
    font-size: 0.98rem;
}

.tab-subtitle[b-q462z2wdk2] {
    font-size: 0.82rem;
    opacity: 0.78;
}

.gestion-bloque[b-q462z2wdk2] {
    padding: 26px 28px 28px;
    border-radius: 24px;
    border: 1px solid #e6ebf2;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.bloque-header[b-q462z2wdk2] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

    .bloque-header h2[b-q462z2wdk2] {
        margin: 0 0 8px 0;
        font-size: 1.7rem;
        color: #0f172a;
        font-weight: 800;
        letter-spacing: -0.01em;
    }

    .bloque-header p[b-q462z2wdk2] {
        margin: 0;
        color: #607084;
        line-height: 1.6;
    }

.bloque-meta[b-q462z2wdk2] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-toolbar[b-q462z2wdk2] {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.search-box[b-q462z2wdk2] {
    flex: 1 1 420px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid #d8e1ec;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

    .search-box:hover[b-q462z2wdk2] {
        border-color: #c4d2e2;
        background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    }

    .search-box:focus-within[b-q462z2wdk2] {
        border-color: #2563eb;
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
        background: #ffffff;
    }

.search-box__icon[b-q462z2wdk2] {
    color: #64748b;
    font-size: 1rem;
    line-height: 1;
}

.search-box__input[b-q462z2wdk2] {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #0f172a;
    font-size: 0.95rem;
}

    .search-box__input[b-q462z2wdk2]::placeholder {
        color: #94a3b8;
    }

.pill[b-q462z2wdk2] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.pill--soft[b-q462z2wdk2] {
    background: #eef4fb;
    color: #22406f;
    border: 1px solid #d6e2f0;
}

.pill--admin[b-q462z2wdk2] {
    background: #e7f8ec;
    color: #166534;
    border: 1px solid #b8e7c4;
}

.pill--user[b-q462z2wdk2] {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #dbe4ee;
}

.empty-state[b-q462z2wdk2] {
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 14px;
    padding: 26px;
    border-radius: 22px;
    border: 1px dashed #cfd8e3;
    background: linear-gradient(180deg, #fafcff 0%, #f6f9fc 100%);
}

.empty-state--small[b-q462z2wdk2] {
    min-height: 160px;
}

.empty-state h3[b-q462z2wdk2] {
    margin: 0;
    font-size: 1.35rem;
    color: #0f172a;
    font-weight: 800;
}

.empty-state p[b-q462z2wdk2] {
    margin: 0;
    max-width: 620px;
    color: #607084;
    line-height: 1.6;
}

.cards-grid[b-q462z2wdk2] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 18px;
}

.project-card[b-q462z2wdk2] {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
    border-radius: 22px;
    border: 1px solid #e5ebf2;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

    .project-card:hover[b-q462z2wdk2] {
        transform: translateY(-2px);
        border-color: #cfdcf1;
        box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
    }

.project-card__top[b-q462z2wdk2] {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

    .project-card__top h3[b-q462z2wdk2] {
        margin: 8px 0 0 0;
        font-size: 1.2rem;
        color: #0f172a;
        line-height: 1.3;
        font-weight: 800;
    }

.project-badge[b-q462z2wdk2] {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #edf4ff;
    color: #2557a7;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-card__date[b-q462z2wdk2] {
    font-size: 0.82rem;
    color: #64748b;
    text-align: right;
    white-space: nowrap;
}

.project-card__body[b-q462z2wdk2] {
    display: grid;
    gap: 10px;
}

.project-info[b-q462z2wdk2] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 12px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fbff 0%, #f4f8fd 100%);
    border: 1px solid #e6eef8;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

    .project-info:hover[b-q462z2wdk2] {
        transform: translateY(-1px);
        border-color: #d8e4f3;
        box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
    }

.project-info__label[b-q462z2wdk2] {
    font-size: 0.75rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-info__value[b-q462z2wdk2] {
    color: #0f172a;
    font-weight: 700;
    line-height: 1.4;
}

.project-card__actions[b-q462z2wdk2] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-pro[b-q462z2wdk2] {
    min-height: 44px;
    padding: 0 16px;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.94rem;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

    .btn-pro:hover[b-q462z2wdk2] {
        transform: translateY(-1px);
    }

.btn-pro--primary[b-q462z2wdk2] {
    background: linear-gradient(135deg, #0f172a 0%, #1d355d 100%);
    color: #ffffff;
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.18);
}

.btn-pro--dark[b-q462z2wdk2] {
    background: #111827;
    color: #ffffff;
}

.btn-pro--ghost[b-q462z2wdk2] {
    background: #f3f6fa;
    color: #334155;
    border: 1px solid #dbe4ee;
}

.table-shell[b-q462z2wdk2] {
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid #e6ebf2;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.pro-table[b-q462z2wdk2] {
    width: 100%;
    border-collapse: collapse;
    min-width: 980px;
}

    .pro-table thead th[b-q462z2wdk2] {
        padding: 16px 18px;
        text-align: left;
        font-size: 0.82rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #475569;
        background: #f7f9fc;
        border-bottom: 1px solid #e6ebf2;
    }

    .pro-table tbody td[b-q462z2wdk2] {
        padding: 16px 18px;
        border-bottom: 1px solid #eef2f7;
        color: #0f172a;
        vertical-align: middle;
    }

    .pro-table tbody tr:hover[b-q462z2wdk2] {
        background: #fbfdff;
    }

.table-main[b-q462z2wdk2] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.table-actions-col[b-q462z2wdk2] {
    width: 130px;
}

.table-actions[b-q462z2wdk2] {
    white-space: nowrap;
}

.btn-inline[b-q462z2wdk2] {
    min-height: 36px;
    padding: 0 12px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

    .btn-inline:hover[b-q462z2wdk2] {
        transform: translateY(-1px);
    }

.btn-inline--primary[b-q462z2wdk2] {
    background: #0f172a;
    color: #ffffff;
}

.btn-inline--neutral[b-q462z2wdk2] {
    background: #eef2f7;
    color: #1e293b;
    border: 1px solid #d9e1ea;
}

.btn-inline--danger[b-q462z2wdk2] {
    background: #fff1f2;
    color: #b42318;
    border: 1px solid #fecdd3;
}

@media (max-width: 900px) {
    .gestion-hero[b-q462z2wdk2],
    .bloque-header[b-q462z2wdk2] {
        flex-direction: column;
    }

    .gestion-hero__actions[b-q462z2wdk2],
    .bloque-meta[b-q462z2wdk2] {
        width: 100%;
        justify-content: flex-start;
    }

    .tab-btn[b-q462z2wdk2] {
        min-width: 100%;
    }

    .cards-grid[b-q462z2wdk2] {
        grid-template-columns: 1fr;
    }

    .search-toolbar[b-q462z2wdk2] {
        flex-direction: column;
        align-items: stretch;
    }
    .project-card__status-row[b-q462z2wdk2] {
        margin-top: 8px;
    }

    .project-status[b-q462z2wdk2] {
        display: inline-flex;
        align-items: center;
        min-height: 30px;
        padding: 0 10px;
        border-radius: 999px;
        font-size: 0.78rem;
        font-weight: 700;
        border: 1px solid transparent;
    }

    .project-status--draft[b-q462z2wdk2] {
        background: #f1f5f9;
        color: #475569;
        border-color: #dbe4ee;
    }

    .project-status--progress[b-q462z2wdk2] {
        background: #fff7ed;
        color: #b45309;
        border-color: #fed7aa;
    }

    .project-status--ok[b-q462z2wdk2] {
        background: #ecfdf5;
        color: #047857;
        border-color: #bbf7d0;
    }

    .btn-pro--primary-soft[b-q462z2wdk2] {
        background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
        color: #1d4ed8;
        border: 1px solid #bfdbfe;
    }

        .btn-pro--primary-soft:hover[b-q462z2wdk2] {
            background: linear-gradient(180deg, #dbeafe 0%, #bfdbfe 100%);
            border-color: #93c5fd;
        }
}
/* _content/TankDesigner.Web/Components/Pages/Proyecto.razor.rz.scp.css */
.project-page[b-mu70kaost6] {
	padding: 20px 22px 24px;
	background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.05), transparent 28%), linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
	min-height: calc(100vh - 80px);
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	color: #1f2937;
}

.page-header[b-mu70kaost6] {
	margin-bottom: 20px;
	padding: 0 2px;
}

	.page-header h1[b-mu70kaost6] {
		margin: 0;
		font-size: 28px;
		font-weight: 800;
		line-height: 1.15;
		color: #0f172a;
		letter-spacing: -0.02em;
	}

	.page-header p[b-mu70kaost6] {
		margin: 8px 0 0 0;
		font-size: 14px;
		font-weight: 400;
		color: #64748b;
		line-height: 1.55;
		max-width: 760px;
	}

.alert-box[b-mu70kaost6] {
	margin-bottom: 20px;
	padding: 14px 16px;
	border: 1px solid #f7d7aa;
	background: linear-gradient(180deg, #fffaf3 0%, #fff7ed 100%);
	color: #9a3412;
	border-radius: 16px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.alert-box__title[b-mu70kaost6] {
	font-size: 14px;
	font-weight: 800;
	margin-bottom: 6px;
}

.alert-box ul[b-mu70kaost6] {
	margin: 0;
	padding-left: 18px;
	font-size: 13px;
	line-height: 1.55;
}

.project-layout[b-mu70kaost6] {
	display: grid;
	grid-template-columns: minmax(0, 2fr) 340px;
	gap: 20px;
	align-items: start;
}

.main-column[b-mu70kaost6],
.side-column[b-mu70kaost6] {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.td-panel[b-mu70kaost6] {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: 22px;
	padding: 24px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
	backdrop-filter: blur(10px);
}

.td-panel--compact[b-mu70kaost6] {
	padding: 20px;
}

.td-panel--sticky[b-mu70kaost6] {
	position: sticky;
	top: 18px;
}

.td-panel__header[b-mu70kaost6] {
	margin-bottom: 20px;
}

	.td-panel__header h2[b-mu70kaost6] {
		margin: 0;
		font-size: 20px;
		font-weight: 800;
		color: #0f172a;
		line-height: 1.25;
		letter-spacing: -0.01em;
	}

	.td-panel__header p[b-mu70kaost6] {
		margin: 8px 0 0 0;
		font-size: 14px;
		font-weight: 400;
		color: #64748b;
		line-height: 1.6;
	}

.section-kicker[b-mu70kaost6] {
	display: inline-flex;
	align-items: center;
	margin-bottom: 8px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #2563eb;
}

.form-grid[b-mu70kaost6] {
	display: grid;
	grid-template-columns: repeat(2, minmax(240px, 1fr));
	gap: 18px 24px;
}

.field[b-mu70kaost6] {
	display: flex;
	flex-direction: column;
}

.field--full[b-mu70kaost6] {
	grid-column: 1 / -1;
}

.field label[b-mu70kaost6] {
	margin-bottom: 7px;
	font-size: 13px;
	font-weight: 700;
	color: #334155;
	line-height: 1.4;
}

.field small[b-mu70kaost6] {
	margin-top: 7px;
	font-size: 12px;
	font-weight: 400;
	color: #64748b;
	line-height: 1.5;
}

.td-input[b-mu70kaost6],
input.td-input[b-mu70kaost6],
select.td-input[b-mu70kaost6],
textarea.td-input[b-mu70kaost6] {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	box-sizing: border-box;
	border: 1px solid #dbe4ee;
	border-radius: 14px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	color: #0f172a;
	font-size: 14px;
	font-weight: 500;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	outline: none;
	box-shadow: none;
	transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

	.td-input:hover[b-mu70kaost6],
	input.td-input:hover[b-mu70kaost6],
	select.td-input:hover[b-mu70kaost6],
	textarea.td-input:hover[b-mu70kaost6] {
		border-color: #bfd0e5;
		background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	}

	.td-input:focus[b-mu70kaost6],
	.td-input:focus-visible[b-mu70kaost6],
	input.td-input:focus[b-mu70kaost6],
	input.td-input:focus-visible[b-mu70kaost6],
	select.td-input:focus[b-mu70kaost6],
	select.td-input:focus-visible[b-mu70kaost6],
	textarea.td-input:focus[b-mu70kaost6],
	textarea.td-input:focus-visible[b-mu70kaost6] {
		outline: none;
		border-color: #2563eb;
		box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
		background: #ffffff;
	}

select.td-input[b-mu70kaost6],
.td-select[b-mu70kaost6] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #ffffff;
	background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%);
	background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 13px) calc(50% - 3px);
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	padding-right: 34px;
	cursor: pointer;
}

	select.td-input[b-mu70kaost6]::-ms-expand {
		display: none;
	}

textarea.td-input[b-mu70kaost6] {
	min-height: 110px;
	resize: vertical;
	line-height: 1.6;
}

.summary-list[b-mu70kaost6] {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.summary-row[b-mu70kaost6] {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 13px 14px;
	border: 1px solid #e5ebf2;
	border-radius: 14px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

	.summary-row:hover[b-mu70kaost6] {
		transform: translateY(-1px);
		box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
	}

.summary-row__label[b-mu70kaost6] {
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #64748b;
}

.summary-row__value[b-mu70kaost6] {
	font-size: 15px;
	font-weight: 700;
	color: #0f172a;
	word-break: break-word;
	line-height: 1.4;
}

.summary-value-ok[b-mu70kaost6] {
	color: #15803d;
}

.summary-value-warn[b-mu70kaost6] {
	color: #b45309;
}

@media (max-width: 1200px) {
	.project-layout[b-mu70kaost6] {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 1100px) {
	.td-panel--sticky[b-mu70kaost6] {
		position: static;
	}
}

@media (max-width: 768px) {
	.project-page[b-mu70kaost6] {
		padding: 14px;
	}

	.form-grid[b-mu70kaost6] {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.field--full[b-mu70kaost6] {
		grid-column: auto;
	}

	.td-panel[b-mu70kaost6] {
		padding: 18px;
		border-radius: 18px;
	}

	.page-header h1[b-mu70kaost6] {
		font-size: 22px;
	}

	.td-input[b-mu70kaost6],
	input.td-input[b-mu70kaost6],
	select.td-input[b-mu70kaost6],
	textarea.td-input[b-mu70kaost6] {
		min-height: 44px;
	}
}
