@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* /Components/AddProjectModal/AddProjectModal.razor.rz.scp.css */
/* AddProjectModal.razor.css */
 
/* ─── Backdrop ──────────────────────────────────────────────── */
.modal-backdrop[b-hdbwimvt0c] {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.40);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: backdropIn-b-hdbwimvt0c 0.18s ease;
}
 
@keyframes backdropIn-b-hdbwimvt0c {
    from { opacity: 0; }
    to   { opacity: 1; }
}
 
/* ─── Container ─────────────────────────────────────────────── */
.modal-container[b-hdbwimvt0c] {
    width: 528px;
    max-width: calc(100vw - 32px);
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.16), 0 4px 16px rgba(0,0,0,0.08);
    animation: modalIn-b-hdbwimvt0c 0.22s cubic-bezier(0.34, 1.28, 0.64, 1);
    overflow: hidden;
}
 
@keyframes modalIn-b-hdbwimvt0c {
    from { opacity: 0; transform: translateY(-10px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0)     scale(1);    }
}
 
/* ─── Header ────────────────────────────────────────────────── */
.modal-header[b-hdbwimvt0c] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #E2E8F0;
    flex-shrink: 0;
}
 
.modal-title[b-hdbwimvt0c] {
    font-family: var(--ff-primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 19.6px;
    color: #111827;
}
 
.modal-close-btn[b-hdbwimvt0c] {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s ease;
}
 
.modal-close-btn:hover[b-hdbwimvt0c] { background: #F1F5F9; }
 
/* ─── Body ──────────────────────────────────────────────────── */
.modal-body[b-hdbwimvt0c] {
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    overflow-y: auto;
    max-height: calc(100vh - 180px);
}
 
/* ─── Field Group ───────────────────────────────────────────── */
.field-group[b-hdbwimvt0c] {
    width: 240px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
 
.field-group--full[b-hdbwimvt0c] {
    width: 100%;
}
 
/* ─── Label ─────────────────────────────────────────────────── */
.field-label[b-hdbwimvt0c] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 4px;
    font-family: var(--ff-primary);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #111827;
    cursor: default;
    user-select: none;
}
 
.required-star[b-hdbwimvt0c] {
    color: #DF342E;
    font-size: 12px;
    letter-spacing: 0.12px;
}
 
.optional-label[b-hdbwimvt0c] {
    color: #6B7280;
    font-size: 12px;
    letter-spacing: 0.12px;
}
 
.info-icon[b-hdbwimvt0c] {
    display: flex;
    align-items: center;
    cursor: help;
    opacity: 0.7;
    transition: opacity 0.15s;
}
 
.info-icon:hover[b-hdbwimvt0c] { opacity: 1; }
.info-wrap[b-hdbwimvt0c] {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.info-icon[b-hdbwimvt0c] {
    color: #9CA3AF;
    cursor: help;
    display: block;
}

.info-tooltip[b-hdbwimvt0c] {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background: #1F2937;
    color: #F9FAFB;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--ff-primary);
    line-height: 1.5;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    z-index: 300;
    pointer-events: none;
    white-space: normal;
}

.info-wrap:hover .info-tooltip[b-hdbwimvt0c] {
    display: block;
}

/* ─── Input ─────────────────────────────────────────────────── */
.field-input[b-hdbwimvt0c] {
    width: 100%;
    padding: 8px 14px;
    font-family: var(--ff-primary);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #111827;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
 
.field-input[b-hdbwimvt0c]::placeholder { color: #9CA3AF; }
 
.field-input:focus[b-hdbwimvt0c] {
    border-color: #004388;
    box-shadow: 0 0 0 3px rgba(0, 67, 136, 0.10);
}
 
.field-input.input-error[b-hdbwimvt0c] {
    border-color: #DF342E;
    box-shadow: 0 0 0 3px rgba(223, 52, 46, 0.10);
}
 
.field-input.input-error:focus[b-hdbwimvt0c] {
    border-color: #DF342E;
    box-shadow: 0 0 0 3px rgba(223, 52, 46, 0.15);
}
 
/* ─── Textarea ──────────────────────────────────────────────── */
.field-textarea[b-hdbwimvt0c] {
    width: 100%;
    height: 72px;
    padding: 8px 14px;
    font-family: var(--ff-primary);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #111827;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    outline: none;
    resize: vertical;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
 
.field-textarea[b-hdbwimvt0c]::placeholder { color: #9CA3AF; }
 
.field-textarea:focus[b-hdbwimvt0c] {
    border-color: #004388;
    box-shadow: 0 0 0 3px rgba(0, 67, 136, 0.10);
}
 
.field-textarea.input-error[b-hdbwimvt0c] {
    border-color: #DF342E;
    box-shadow: 0 0 0 3px rgba(223, 52, 46, 0.10);
}
 
/* ─── Field Footer (error + char count) ─────────────────────── */
.field-footer[b-hdbwimvt0c] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4px;
    padding: 0 4px;
    min-height: 16px;
}
 
.validation-message[b-hdbwimvt0c] {
    font-family: var(--ff-primary);
    font-size: 11px;
    line-height: 14px;
    color: #DF342E;
    flex: 1 1 0;
}
 
.char-count[b-hdbwimvt0c] {
    font-family: var(--ff-primary);
    font-size: 11px;
    line-height: 14px;
    color: #9CA3AF;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s ease;
}
 
.char-count--warn[b-hdbwimvt0c] { color: #D48E00; font-weight: 700; }
 
/* ─── Footer ────────────────────────────────────────────────── */
.modal-footer[b-hdbwimvt0c] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid #E8EBED;
    flex-shrink: 0;
}
 
/* ─── Buttons ───────────────────────────────────────────────── */
.btn[b-hdbwimvt0c] {
    min-width: 80px;
    padding: 8px 14px;
    font-family: var(--ff-primary);
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: opacity 0.15s ease, background 0.15s ease, transform 0.1s ease;
}
 
.btn:active[b-hdbwimvt0c] { transform: scale(0.97); }
 
.btn-cancel[b-hdbwimvt0c] {
    background: #F5F7FA;
    color: #212121;
}
 
.btn-cancel:hover[b-hdbwimvt0c] { background: #E8EAED; }
 
.btn-add[b-hdbwimvt0c] {
    background: #004388;
    color: #ffffff;
}
 
.btn-add:hover[b-hdbwimvt0c] { background: #003070; }
 
/* ─── Location Select Dropdown ──────────────────────────────── */
.field-select-wrap[b-hdbwimvt0c] {
    position: relative;
    width: 100%;
}

.field-select[b-hdbwimvt0c] {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 32px;
    cursor: pointer;
}

.field-select:disabled[b-hdbwimvt0c] {
    background-color: #F9FAFB;
    cursor: not-allowed;
    opacity: 0.7;
}

.field-select-arrow[b-hdbwimvt0c] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 560px) {
    .modal-container[b-hdbwimvt0c] { margin: 0 16px; }
    .field-group[b-hdbwimvt0c]      { width: 100%; }
}
/* /Components/AppSelect/AppSelect.razor.rz.scp.css */
.select-wrapper[b-v0mcgf7z2y] {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    width: 100%;
}

.select-trigger[b-v0mcgf7z2y] {
    width: 100%;
    padding: 10px 10px 10px 14px;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 1.5rem;
    color: #111827;
    font-size: 12px;
    font-family: var(--ff-primary);
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.15s ease;
}

.select-trigger:focus[b-v0mcgf7z2y],
.select-trigger:focus-visible[b-v0mcgf7z2y] {
    outline: none;
    border-color: #00A6E2;
    box-shadow: 0 0 0 2px rgba(0, 166, 226, 0.15);
}

.select-value[b-v0mcgf7z2y] {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chevron-icon[b-v0mcgf7z2y] {
    position: absolute;
    right: 12px;
    color: #111827;
    transition: transform 0.2s ease;
    pointer-events: none;
}

.chevron-icon.open[b-v0mcgf7z2y] {
    transform: rotate(180deg);
}

.select-overlay[b-v0mcgf7z2y] {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: transparent;
}

.options-panel[b-v0mcgf7z2y] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: white;
    z-index: 100;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    z-index: 100;
}

.option-row[b-v0mcgf7z2y] {
    padding: 12px 16px;
    font-size: 12px;
    font-family: var(--ff-primary);
    color: #111827;
    line-height: 1.4;
    cursor: pointer;
    transition: background 0.1s ease;
}


.option-row:hover[b-v0mcgf7z2y] {
    background: #F8FAFC;
}

/* /Components/CalculationRow/CalculationRow.razor.rz.scp.css */
/* CalculationRow.razor.css */
 
/* ─── Row Shell ─────────────────────────────────────────────── */
.calc-row[b-fiucn2kz74] {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    border-left: 6px solid var(--row-accent, #F7A600);
    display: flex;
    overflow: visible;
}
 
.calc-row-inner[b-fiucn2kz74] {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px 10px 16px;
    background: #ffffff;
    border-top:    1px solid #E2E8F0;
    border-right:  1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    border-radius: 0 12px 12px 0;
    transition: background 0.15s ease;
}
 
.calc-row:hover .calc-row-inner[b-fiucn2kz74] {
    background: #FAFBFC;
}
 
/* ─── Star / Favourite ──────────────────────────────────────── */
.row-star[b-fiucn2kz74] {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.15s;
}

.row-star:hover[b-fiucn2kz74] { background: #FEF9EC; }
.row-star--active svg path[b-fiucn2kz74] { stroke: #F7A600; }
 
/* ─── Columns — keep widths in sync with .calc-table-header ── */
.row-name[b-fiucn2kz74] {
    flex: 1 1 0;
    font-family: var(--ff-primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    color: #111827;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.row-name--link[b-fiucn2kz74] {
    cursor: pointer;
}

.row-name--link:hover[b-fiucn2kz74] {
    color: #256FD1;
    text-decoration: underline;
}
 
.row-date[b-fiucn2kz74],
.row-by[b-fiucn2kz74] {
    font-family: var(--ff-primary);
    font-size: 12px;
    font-weight: 400;
    line-height: 15.6px;
    letter-spacing: 0.12px;
    color: #374151;
    flex-shrink: 0;
}
 
.row-date[b-fiucn2kz74] { width: 200px; }
.row-by[b-fiucn2kz74]   { width: 240px; }
 
/* ─── Actions ───────────────────────────────────────────────── */
.row-actions[b-fiucn2kz74] {
    width: 263px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
 
/* Base button */
.row-btn[b-fiucn2kz74] {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 28px;
    padding: 0 12px 0 10px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    font-family: var(--ff-primary);
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease;
}
 
.row-btn:hover[b-fiucn2kz74]  { background: #F5F7FA; }
.row-btn:active[b-fiucn2kz74] { transform: scale(0.97); }
.row-btn:disabled[b-fiucn2kz74] { opacity: 0.4; cursor: not-allowed; }
 
/* Duplicate & Edit — blue text */
.btn-duplicate[b-fiucn2kz74] { color: #00A6E2; }
.btn-duplicate:hover[b-fiucn2kz74] { border-color: #00A6E2; }
 
/* Report — dark text */
.btn-report[b-fiucn2kz74] { color: #374151; }
 
/* Remark wrap — anchors the badge overlay */
.remark-wrap[b-fiucn2kz74] {
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
}

/* Remark icon-only circular button */
.btn-remark[b-fiucn2kz74] {
    width: 32px;
    height: 32px;
    padding: 0;
    justify-content: center;
    color: #374151;
}

/* Note count badge — absolute top-right overlay */
.note-badge[b-fiucn2kz74] {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 22px;
    height: 22px;
    padding: 0 5px;
    background: #007D4E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-primary);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    pointer-events: none;
    border: 2px solid #ffffff;
    box-sizing: border-box;
}
 
/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
    .row-date[b-fiucn2kz74],
    .row-by[b-fiucn2kz74] { display: none; }
 
    .row-actions[b-fiucn2kz74] { width: auto; }
}
 
/* /Components/CalculationsSection/CalculationsSection.razor.rz.scp.css */
* CalculationsSection.razor.css */
 
/* ─── Section Wrapper ───────────────────────────────────────── */
.calc-section[b-qcz1ues9ok] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    
}
 
/* ─── Toolbar ───────────────────────────────────────────────── */
.calc-toolbar[b-qcz1ues9ok] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    border-radius: 16px;
    gap: 12px;
    flex-wrap: wrap;
    margin: 1.25rem;
}
 
.calc-toolbar-left[b-qcz1ues9ok] {
    flex: 1 1 0;
    display: flex;
    align-items: center;
}
 
.calc-title[b-qcz1ues9ok] {
    margin: 0;
    font-family: var(--ff-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #111827;
}
 
.calc-toolbar-right[b-qcz1ues9ok] {
    display: flex;
    align-items: center;
    gap: 8px;
}
 
/* Search */
.calc-search[b-qcz1ues9ok] {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 200px;
    padding: 8px 14px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    box-sizing: border-box;
    transition: border-color 0.15s ease;
}
 
.calc-search:focus-within[b-qcz1ues9ok] {
    border-color: #004388;
    box-shadow: 0 0 0 3px rgba(0, 67, 136, 0.08);
}
 
.calc-search input[b-qcz1ues9ok] {
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--ff-primary);
    font-size: 12px;
    color: #111827;
    width: 100%;
}
 
.calc-search input[b-qcz1ues9ok]::placeholder {
    color: #6B7280;
}
 
/* New Calculation button */
.btn-new-calc[b-qcz1ues9ok] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px 8px 14px;
    background: #004388;
    border: none;
    border-radius: 24px;
    font-family: var(--ff-primary);
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease;
}
 
.btn-new-calc:hover[b-qcz1ues9ok]  { background: #003070; }
.btn-new-calc:active[b-qcz1ues9ok] { transform: scale(0.97); }
.btn-new-calc:disabled[b-qcz1ues9ok] { background: #9CA3AF; cursor: not-allowed; opacity: 0.6; }
 
/* ─── Table ─────────────────────────────────────────────────── */
.calc-table[b-qcz1ues9ok] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 1.25rem;
}
 
/* Header row */
.calc-table-header[b-qcz1ues9ok] {
    display: flex;
    align-items: center;
    padding: 0 16px 0 56px; /* 28px icon + 12px gap + 16px outer */
    gap: 12px;
}
 
.calc-table-header > div[b-qcz1ues9ok] {
    font-family: var(--ff-primary);
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.12px;
    color: #374151;
}
 
/* Column widths — keep in sync with CalculationRow */
.col-name[b-qcz1ues9ok]    { flex: 1 1 0; }
.col-date[b-qcz1ues9ok]    { width: 200px; flex-shrink: 0; }
.col-by[b-qcz1ues9ok]      { width: 240px; flex-shrink: 0; }
.col-actions[b-qcz1ues9ok] { width: 263px; flex-shrink: 0; text-align: center; }
 
/* Rows wrapper */
.calc-rows[b-qcz1ues9ok] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
 
/* ─── Empty State ────────────────────────────────────────── */
.calc-empty-state[b-qcz1ues9ok] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    gap: 12px;
    text-align: center;
}

.calc-empty-img[b-qcz1ues9ok] {
    width: 120px;
    height: auto;
    margin-bottom: 4px;
}

.calc-empty-title[b-qcz1ues9ok] {
    margin: 0;
    font-family: var(--ff-primary);
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.calc-empty-desc[b-qcz1ues9ok] {
    margin: 0;
    font-family: var(--ff-primary);
    font-size: 13px;
    font-weight: 400;
    color: #6B7280;
    line-height: 1.6;
}

/* ─── Loading State ──────────────────────────────────────── */
.calc-loading[b-qcz1ues9ok] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
}

.calc-spinner[b-qcz1ues9ok] {
    width: 32px;
    height: 32px;
    border: 3px solid #E2E8F0;
    border-top-color: #004388;
    border-radius: 50%;
    animation: calc-spin-b-qcz1ues9ok 0.7s linear infinite;
}

@keyframes calc-spin-b-qcz1ues9ok {
    to { transform: rotate(360deg); }
}

/* ─── Error State ────────────────────────────────────────── */
.calc-error-state[b-qcz1ues9ok] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.calc-error-text[b-qcz1ues9ok] {
    margin: 0;
    font-family: var(--ff-primary);
    font-size: 13px;
    color: #C0392B;
    text-align: center;
}
/* /Components/CardCollaborators/CardCollaborators.razor.rz.scp.css */
/* ── Wrapper (anchor for the popover) ───────────────────────────── */
.collab-wrap[b-3q42mv3qok] {
    position: relative;
    display: flex;
    align-items: center;
}

/* ── Trigger row ─────────────────────────────────────────────────── */
.collab-trigger[b-3q42mv3qok] {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: default;
    user-select: none;
}

.collab-trigger--empty[b-3q42mv3qok] {
    pointer-events: none;
}

/* ── Avatar stack ────────────────────────────────────────────────── */
.collab-avatar-stack[b-3q42mv3qok] {
    display: flex;
    align-items: center;
}

.collab-avatar-stack .collab-avatar + .collab-avatar[b-3q42mv3qok] {
    margin-left: -7px;
}

.collab-avatar[b-3q42mv3qok] {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: #F5F7FA !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280 !important;
    font-size: 9px;
    font-family: var(--ff-primary);
    font-weight: 700;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* ── "+N More" label ─────────────────────────────────────────────── */
.collab-more[b-3q42mv3qok] {
    color: #6B7280;
    font-size: 10px;
    font-family: var(--ff-primary);
    font-weight: 400;
    white-space: nowrap;
}

/* ── Popover panel — hidden by default ──────────────────────────── */
.collab-popover[b-3q42mv3qok] {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 300;
    width: 300px;
    background: #0F1D2E;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px) scale(0.98);
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

/* Arrow caret pointing up */
.collab-popover[b-3q42mv3qok]::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 22px;
    width: 14px;
    height: 14px;
    background: #0F1D2E;
    border-radius: 3px 0 0 0;
    transform: rotate(45deg);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* Show on hover over the wrapper */
.collab-wrap:hover .collab-popover[b-3q42mv3qok] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* ── Popover header ──────────────────────────────────────────────── */
.collab-popover__header[b-3q42mv3qok] {
    padding: 14px 16px 12px;
    font-family: var(--ff-primary);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

/* ── Contributor row ─────────────────────────────────────────────── */
.collab-popover__row[b-3q42mv3qok] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    transition: background 0.12s ease;
}

.collab-popover__row:hover[b-3q42mv3qok] {
    background: rgba(255, 255, 255, 0.05);
}

.collab-popover__avatar[b-3q42mv3qok] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-family: var(--ff-primary);
    font-weight: 700;
    flex-shrink: 0;
}

.collab-popover__name[b-3q42mv3qok] {
    flex: 1;
    color: #F1F5F9;
    font-size: 12px;
    font-family: var(--ff-primary);
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.collab-popover__time[b-3q42mv3qok] {
    color: #64748B;
    font-size: 11px;
    font-family: var(--ff-primary);
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Footer: remaining avatars + count ───────────────────────────── */
.collab-popover__footer[b-3q42mv3qok] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.collab-popover__footer-avatars[b-3q42mv3qok] {
    display: flex;
    align-items: center;
}

.collab-popover__avatar--sm[b-3q42mv3qok] {
    width: 22px;
    height: 22px;
    font-size: 7px;
    border: 2px solid #0F1D2E;
    box-sizing: border-box;
}

.collab-popover__footer-avatars .collab-popover__avatar--sm + .collab-popover__avatar--sm[b-3q42mv3qok] {
    margin-left: -6px;
}

.collab-popover__footer-more[b-3q42mv3qok] {
    color: #64748B;
    font-size: 11px;
    font-family: var(--ff-primary);
    font-weight: 400;
}
/* /Components/ConfirmPopup/ConfirmPopup.razor.rz.scp.css */
/* ConfirmPopup.razor.css */
 
/* ─── Backdrop ──────────────────────────────────────────────── */
.popup-backdrop[b-ofzf6keaef] {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.40);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popupBackdropIn-b-ofzf6keaef 0.18s ease;
}
 
@keyframes popupBackdropIn-b-ofzf6keaef {
    from { opacity: 0; }
    to   { opacity: 1; }
}
 
/* ─── Container ─────────────────────────────────────────────── */
.popup-container[b-ofzf6keaef] {
    width: 280px;
    padding: 40px 24px 24px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18), 0 4px 16px rgba(0, 0, 0, 0.08);
    animation: popupIn-b-ofzf6keaef 0.24s cubic-bezier(0.34, 1.28, 0.64, 1);
}
 
@keyframes popupIn-b-ofzf6keaef {
    from { opacity: 0; transform: scale(0.88) translateY(12px); }
    to   { opacity: 1; transform: scale(1)    translateY(0);    }
}
 
/* ─── Close button ───────────────────────────────────────────── */
.popup-close[b-ofzf6keaef] {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}
 
.popup-close:hover[b-ofzf6keaef] { background: #F1F5F9; }
 
/* ─── Illustration area ─────────────────────────────────────── */
.popup-illustration[b-ofzf6keaef] {
    display: flex;
    align-items: center;
    justify-content: center;
}
 
/* ─── Text content ───────────────────────────────────────────── */
.popup-content[b-ofzf6keaef] {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
 
.popup-texts[b-ofzf6keaef] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}
 
.popup-title[b-ofzf6keaef] {
    margin: 0;
    font-family: var(--ff-primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 19.6px;
    color: #111827;
}
 
.popup-message[b-ofzf6keaef] {
    margin: 0;
    font-family: var(--ff-primary);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #374151;
}
 
/* ─── Action buttons ────────────────────────────────────────── */
.popup-actions[b-ofzf6keaef] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
 
.popup-btn[b-ofzf6keaef] {
    min-width: 80px;
    padding: 8px 20px;
    border: none;
    border-radius: 24px;
    font-family: var(--ff-primary);
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    cursor: pointer;
    transition: opacity 0.15s ease, transform 0.1s ease, background 0.15s ease;
}
 
.popup-btn:active[b-ofzf6keaef] { transform: scale(0.96); }
 
/* Cancel */
.popup-btn--cancel[b-ofzf6keaef] {
    background: #F5F7FA;
    color: #111827;
}
.popup-btn--cancel:hover[b-ofzf6keaef] { background: #E8EAED; }
 
/* Danger — red (Delete) */
.popup-btn--danger[b-ofzf6keaef] {
    background: #DF342E;
    color: #ffffff;
}
.popup-btn--danger:hover[b-ofzf6keaef] { background: #C42B25; }
 
/* Warning — amber */
.popup-btn--warning[b-ofzf6keaef] {
    background: #F7A600;
    color: #ffffff;
}
.popup-btn--warning:hover[b-ofzf6keaef] { background: #D48E00; }
 
/* Success — green */
.popup-btn--success[b-ofzf6keaef] {
    background: #007D4E;
    color: #ffffff;
}
.popup-btn--success:hover[b-ofzf6keaef] { background: #006A42; }
 
/* Primary — brand blue */
.popup-btn--primary[b-ofzf6keaef] {
    background: #004388;
    color: #ffffff;
}
.popup-btn--primary:hover[b-ofzf6keaef] { background: #004388; }

/* Single-button layout — confirm stretches full width */
.popup-actions--single[b-ofzf6keaef] {
    width: 100%;
}
.popup-actions--single .popup-btn[b-ofzf6keaef] {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
}
/* /Components/FilterPanel/FilterPanel.razor.rz.scp.css */
/* FilterPanel.razor.css */

/* ─── Panel shell ─────────────────────────────────────────────── */
.filter-panel[b-i3rsja2izi] {
    width: 33rem;
    max-width: calc(100vw - 32px);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: visible;
}

/* ─── Header ──────────────────────────────────────────────────── */
.filter-header[b-i3rsja2izi] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #E2E8F0;
}

.filter-title[b-i3rsja2izi] {
    font-family: var(--ff-primary);
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.filter-close-btn[b-i3rsja2izi] {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s ease;
}

.filter-close-btn:hover[b-i3rsja2izi] { background: #F1F5F9; }

/* ─── Body — 2-column grid ────────────────────────────────────── */
.filter-body[b-i3rsja2izi] {
    padding: 24px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
}

/* ─── Single field ────────────────────────────────────────────── */
.filter-field[b-i3rsja2izi] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label[b-i3rsja2izi] {
    padding: 0 4px;
    font-family: var(--ff-primary);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #111827;
    cursor: default;
    user-select: none;
}

/* ─── Text search input ───────────────────────────────────────── */
.filter-text-wrap[b-i3rsja2izi] {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-text-icon[b-i3rsja2izi] {
    position: absolute;
    left: 14px;
    flex-shrink: 0;
    pointer-events: none;
}

.filter-text-input[b-i3rsja2izi] {
    width: 100%;
    padding: 9px 14px 9px 12px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    font-family: var(--ff-primary);
    font-size: 12px;
    font-weight: 400;
    color: #111827;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.filter-text-input[b-i3rsja2izi]::placeholder { color: #9CA3AF; }

.filter-text-input:focus[b-i3rsja2izi] {
    border-color: #004388;
    box-shadow: 0 0 0 3px rgba(0, 67, 136, 0.10);
}

/* ─── Radio group ─────────────────────────────────────────────── */
.filter-radio-group[b-i3rsja2izi] {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 9px 4px;
}

.filter-radio-label[b-i3rsja2izi] {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    user-select: none;
}

.filter-radio-input[b-i3rsja2izi] {
    width: 16px;
    height: 16px;
    accent-color: #004388;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
}

.filter-radio-text[b-i3rsja2izi] {
    font-family: var(--ff-primary);
    font-size: 12px;
    font-weight: 400;
    color: #374151;
}

/* ─── Dropdown trigger ────────────────────────────────────────── */
.filter-select[b-i3rsja2izi] {
    position: relative;
    display: flex;
    align-items: center;
    padding: 9px 14px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    cursor: pointer;
    gap: 8px;
    box-sizing: border-box;
    user-select: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.filter-select:hover[b-i3rsja2izi]               { border-color: #CBD5E1; }
.filter-select--open[b-i3rsja2izi]               { border-color: #004388; box-shadow: 0 0 0 3px rgba(0,67,136,0.10); }
.filter-select--disabled[b-i3rsja2izi]           { background: #F9FAFB; cursor: not-allowed; opacity: 0.7; }
.filter-select--disabled:hover[b-i3rsja2izi]     { border-color: #E2E8F0; }

.filter-placeholder[b-i3rsja2izi] {
    flex: 1 1 0;
    font-family: var(--ff-primary);
    font-size: 12px;
    color: #9CA3AF;
}

.filter-value[b-i3rsja2izi] {
    flex: 1 1 0;
    font-family: var(--ff-primary);
    font-size: 12px;
    color: #111827;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.filter-chevron[b-i3rsja2izi] { flex-shrink: 0; transition: transform 0.2s ease; }
.filter-chevron--up[b-i3rsja2izi] { transform: rotate(180deg); }

/* ─── Dropdown list ───────────────────────────────────────────── */
.filter-dropdown[b-i3rsja2izi] {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 200;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    animation: dropIn-b-i3rsja2izi 0.15s ease;
}

@keyframes dropIn-b-i3rsja2izi {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0);    }
}

.filter-dropdown-item[b-i3rsja2izi] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    font-family: var(--ff-primary);
    font-size: 12px;
    color: #374151;
    cursor: pointer;
    transition: background 0.12s ease;
}

.filter-dropdown-item:hover[b-i3rsja2izi]            { background: #F5F7FA; }
.filter-dropdown-item--active[b-i3rsja2izi]          { color: #004388; font-weight: 700; background: #EAF2FD; }
.filter-dropdown-item--active:hover[b-i3rsja2izi]    { background: #D6E8FA; }
.filter-dropdown-item--loading[b-i3rsja2izi]         { color: #9CA3AF; font-style: italic; cursor: default; }
.filter-dropdown-item--loading:hover[b-i3rsja2izi]   { background: transparent; }

/* ─── Overlay ─────────────────────────────────────────────────── */
.filter-overlay[b-i3rsja2izi] {
    position: fixed;
    inset: 0;
    z-index: 199;
    background: transparent;
}

/* ─── Footer ──────────────────────────────────────────────────── */
.filter-footer[b-i3rsja2izi] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 14px 20px;
    border-top: 1px solid #E8EBED;
}

/* ─── Buttons ─────────────────────────────────────────────────── */
.filter-btn[b-i3rsja2izi] {
    min-width: 100px;
    padding: 9px 20px;
    border: none;
    border-radius: 24px;
    font-family: var(--ff-primary);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
}

.filter-btn:active[b-i3rsja2izi] { transform: scale(0.97); }

.filter-btn--reset[b-i3rsja2izi] {
    background: #F5F7FA;
    color: #212121;
}
.filter-btn--reset:hover[b-i3rsja2izi] { background: #E8EAED; }

.filter-btn--apply[b-i3rsja2izi] {
    background: #004388;
    color: #ffffff;
}
.filter-btn--apply:hover[b-i3rsja2izi] { background: #1F2937; }

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 600px) {
    .filter-panel[b-i3rsja2izi] { width: 100%; }
    .filter-body[b-i3rsja2izi]  { grid-template-columns: 1fr; }
}
/* /Components/GlobalLoader/GlobalLoader.razor.rz.scp.css */
.global-loader-overlay[b-wg6ogzzn36] {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(255, 255, 255, 0.60);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(1px);
}

.global-loader-gif[b-wg6ogzzn36] {
    width: 80px;
    height: 80px;
}
/* /Components/Header/Header.razor.rz.scp.css */
/* WelcomeBanner.razor.css */

.welcome-banner[b-ebzktrwd5a] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ── Left section ── */
.welcome-banner__left[b-ebzktrwd5a] {
    display: flex;
    align-items: center;
    gap: 1rem; /* 16px */
    flex: 1 1 0;
    min-width: 0;
}

/* Illustration placeholder — replace with <img> or a real SVG */
.welcome-banner__illustration[b-ebzktrwd5a] {
    width: 5.625rem; /* 90px */
    height: 4rem; /* 64px */
    border-radius: 0.5rem; /* 8px */
    background: rgba(155, 193, 249, 0.10);
    flex-shrink: 0;
}

/* ── Greeting text ── */
.welcome-banner__greeting[b-ebzktrwd5a] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem; /* 2px */
    min-width: 0;
}

.welcome-banner__name[b-ebzktrwd5a] {
    margin: 0;
    color: #111827;
    font-size: 1.25rem; /* 20px */
    font-family: var(--ff-primary);
    font-weight: 700;
    line-height: 1.75rem; /* 28px */
}

.welcome-banner__subtitle[b-ebzktrwd5a] {
    margin: 0;
    color: #374151;
    font-size: 0.875rem; /* 14px */
    font-family: var(--ff-primary);
    font-weight: 400;
    line-height: 1.4;
}

/* ── Right section: stat cards row ── */
.welcome-banner__stats[b-ebzktrwd5a] {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* 12px */
    flex-shrink: 0;
    flex-wrap: wrap;
}
/* /Components/HeadItem/Headitem.razor.rz.scp.css */
/* StatCard.razor.css */

.stat-card[b-4kxh8w8upr] {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* 24px */
    padding: 0.625rem 1.5rem 0.625rem 1rem; /* 10px 24px 10px 16px */
    background: #ffffff;
    border-radius: 0.75rem; /* 12px */
    outline: 0.0625rem solid #E2E8F0; /* 1px */
    overflow: hidden;
}

/* ── Left section: icon + total ── */
.stat-card__primary[b-4kxh8w8upr] {
    display: flex;
    align-items: center;
    gap: 1rem; /* 16px */
}

.stat-card__icon-wrap[b-4kxh8w8upr] {
    width: 1.875rem; /* 30px */
    height: 1.875rem; /* 30px */
    border-radius: 0.375rem; /* 6px */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card__icon[b-4kxh8w8upr] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1rem; /* 16px */
    height: 1rem; /* 16px */
}

.stat-card__icon svg[b-4kxh8w8upr] {
    width: 1rem; /* 16px */
    height: 1rem; /* 16px */
}

.stat-card__figures[b-4kxh8w8upr] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem; /* 6px */
}

.stat-card__total-value[b-4kxh8w8upr] {
    color: #212121;
    font-size: 1.125rem; /* 18px */
    font-family: var(--ff-primary);
    font-weight: 700;
    line-height: 1;
}

.stat-card__total-label[b-4kxh8w8upr] {
    color: #6B7280;
    font-size: 0.75rem; /* 12px */
    font-family: var(--ff-primary);
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
}

/* ── Vertical divider ── */
.stat-card__divider[b-4kxh8w8upr] {
    width: 0.0625rem; /* 1px */
    height: 1.75rem; /* 28px */
    background: #E2E8F0;
    flex-shrink: 0;
}

/* ── Right section: your count ── */
.stat-card__secondary[b-4kxh8w8upr] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem; /* 6px */
}

.stat-card__your-value[b-4kxh8w8upr] {
    color: #212121;
    font-size: 1rem; /* 16px */
    font-family: var(--ff-primary);
    font-weight: 700;
    line-height: 1;
}

.stat-card__your-label[b-4kxh8w8upr] {
    color: #6B7280;
    font-size: 0.75rem; /* 12px */
    font-family: var(--ff-primary);
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
}
/* /Components/InputDetails_CoolingCapacity/InputDetails_CoolingCapacity.razor.rz.scp.css */
.dashboard-wrapper[b-44m26xi4pd] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
    padding: 1.25rem;
}
 
/* ── Card shell ───────────────────────────────────────────── */
.calc-card[b-44m26xi4pd] {
    background: #fff;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
 
/* ── Header ───────────────────────────────────────────────── */
.calc-header[b-44m26xi4pd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}
 
.calc-header-left[b-44m26xi4pd] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}
 
.calc-title[b-44m26xi4pd] {
    color: #111827;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}
 
.project-icon[b-44m26xi4pd] {
    width: 2rem;
    height: 2rem;
    border: 1px solid #E2E8F0;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
 
.project-icon:hover[b-44m26xi4pd] {
    background: #F5F7FA;
}
 
/* ── Labels ───────────────────────────────────────────────── */
.field-label[b-44m26xi4pd] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #111827;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1rem;
    padding: 0 0.25rem;
}
 
.required[b-44m26xi4pd] {
    color: #DF342E;
    font-size: 0.75rem;
}
 
.info-icon[b-44m26xi4pd] {
    color: #111827;
    opacity: 0.6;
    cursor: help;
}
 
/* ── Top 3-column row ─────────────────────────────────────── */
.fields-row[b-44m26xi4pd] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
}
 
.fields-row > .field-group[b-44m26xi4pd] {
  
}
 
/* ── 2-column row ─────────────────────────────────────────── */
.fields-row-2col[b-44m26xi4pd] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
 

 
/* ── Field group ──────────────────────────────────────────── */
.field-group[b-44m26xi4pd] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
 
/* ── Base input / select ──────────────────────────────────── */
.field-input[b-44m26xi4pd],
.field-select[b-44m26xi4pd] {
    width: 100%;
    padding: 0.5rem 0.875rem;
    border-radius: 1.5rem;
    border: 1px solid #E2E8F0;
    background: #fff;
    color: #111827;
    font-size: 0.75rem;
    line-height: 1rem;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
 
.field-input[b-44m26xi4pd]::placeholder {
    color: #9CA3AF;
}
 
.field-input:focus[b-44m26xi4pd],
.field-select:focus[b-44m26xi4pd] {
    border-color: #004388;
    box-shadow: 0 0 0 2px rgba(0, 67, 136, 0.1);
}
 
/* ── Select wrapper (adds chevron) ────────────────────────── */
.select-wrapper[b-44m26xi4pd] {
    position: relative;
    display: flex;
    align-items: center;
}
 
.select-wrapper .field-select[b-44m26xi4pd] {
    padding-right: 2rem;
}
 
.chevron-icon[b-44m26xi4pd] {
    position: absolute;
    right: 0.75rem;
    color: #6B7280;
    pointer-events: none;
}
 
/* ── Input with unit badge ────────────────────────────────── */
.input-with-unit[b-44m26xi4pd] {
    display: flex;
    width: 28rem;
    align-items: center;
    border: 1px solid #E2E8F0;
    border-radius: 1.5rem;
    background: #fff;
    padding: 0.125rem 0.125rem 0.125rem 0.875rem;
    gap: 0.5rem;
}
 
.unit-input[b-44m26xi4pd] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #111827;
    font-size: 0.75rem;
    line-height: 1rem;
    min-width: 0;
}

.unit-select-wrap[b-44m26xi4pd] {
    flex-shrink: 0;
}

.unit-select-wrap[b-44m26xi4pd]  .select-wrapper {
    width: auto;
    display: inline-flex;
}

.unit-select-wrap[b-44m26xi4pd]  .select-trigger {
    padding: 0.375rem 1.75rem 0.375rem 0.75rem !important;
    font-size: 0.75rem;
    line-height: 1rem;
    border: none;
    background: #E2E8F0;
    border-radius: 1.5rem;
    color: #374151;
    white-space: nowrap;
    min-height: unset !important;
    height: 1.75rem;
    box-sizing: border-box;
    width: auto;
}

.unit-select-wrap[b-44m26xi4pd]  .chevron-icon {
    right: 8px;
    color: #374151;
}

.unit-select-wrap[b-44m26xi4pd]  .options-panel {
    min-width: 100%;
}
 
.unit-input[b-44m26xi4pd]::placeholder {
    color: #9CA3AF;
}
 
.unit-input:disabled[b-44m26xi4pd] {
    color: #9CA3AF;
    cursor: not-allowed;
}
 
.input-with-unit:focus-within[b-44m26xi4pd] {
    border-color: #004388;
    box-shadow: 0 0 0 2px rgba(0, 67, 136, 0.1);
}
 
.unit-badge[b-44m26xi4pd] {
    width: 70px;
    flex-shrink: 0;
    padding: 0.375rem 1.5rem;
    background: #E2E8F0;
    border-radius: 1.5rem;
    color: #374151;
    font-size: 0.75rem;
    line-height: 1rem;
    white-space: nowrap;
    height: 1.75rem;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
}
 
/* Unit badge with embedded select ────────────────────────── */
.unit-select-wrap[b-44m26xi4pd] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
 
.unit-select[b-44m26xi4pd] {
    border: none;
    background: transparent;
    color: #374151;
    font-size: 0.75rem;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
 
.chevron-mini[b-44m26xi4pd] {
    color: #374151;
    pointer-events: none;
    flex-shrink: 0;
}
 
/* ── Input Details panel ──────────────────────────────────── */
.section-group[b-44m26xi4pd] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
 
.input-details-panel[b-44m26xi4pd] {
    background: rgba(245, 247, 250, 0.60);
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
 
.subsection[b-44m26xi4pd] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
 
.divider[b-44m26xi4pd] {
    border-top: 1px solid #E8EBED;
    margin: 0;
}
 
/* ── File Upload ──────────────────────────────────────────── */
.upload-label-row[b-44m26xi4pd] {
    width: 28rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
 
.download-link[b-44m26xi4pd] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #111827;
    font-size: 0.625rem;
    text-decoration: underline;
    cursor: pointer;
}
 
.upload-row[b-44m26xi4pd] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex-wrap: wrap;
}
 
.upload-zone[b-44m26xi4pd] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 28rem;
    padding: 1.5rem 1.25rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
    cursor: pointer;
    min-width: 320px;
}
 
.upload-zone:hover[b-44m26xi4pd],
.upload-zone.drop-active[b-44m26xi4pd] {
    border-color: #004388;
    background: #F0F5FA;
}

.upload-file-input[b-44m26xi4pd] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
 
.upload-icon[b-44m26xi4pd] {
    color: #374151;
    flex-shrink: 0;
}
 
.upload-text[b-44m26xi4pd] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
}
 
.upload-main[b-44m26xi4pd] {
    color: #374151;
    font-size: 0.75rem;
    line-height: 1rem;
}
 
.upload-sub[b-44m26xi4pd] {
    color: #374151;
    font-size: 0.625rem;
    line-height: 1rem;
}
 
.upload-limit[b-44m26xi4pd] {
    color: #DF342E;
}
 
.btn-select-file[b-44m26xi4pd] {
    flex-shrink: 0;
    padding: 0.375rem 0.875rem;
    background: #F5F7FA;
    border: none;
    border-radius: 1.5rem;
    color: #111827;
    font-size: 0.625rem;
    cursor: pointer;
    line-height: 1rem;
}
 
.btn-select-file:hover[b-44m26xi4pd] {
    background: #E2E8F0;
}
 
.file-errors[b-44m26xi4pd] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.125rem 0;
}
 
.file-error-line[b-44m26xi4pd] {
    color: #DF342E;
    font-size: 0.625rem;
    font-family: var(--ff-primary);
    line-height: 0.875rem;
}

.input-error[b-44m26xi4pd] {
    border-color: #DF342E !important;
}

.field-error-msg[b-44m26xi4pd] {
    display: block;
    color: #DF342E;
    font-size: 11px;
    font-family: var(--ff-primary);
    margin-top: 4px;
}

/* ── File card (shown when a file is already selected/loaded) ─ */
.file-card[b-44m26xi4pd] {
    display: flex;
    align-items: center;
    width: 28rem;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
}

.file-card-icon[b-44m26xi4pd] { flex-shrink: 0; }

.file-card-info[b-44m26xi4pd] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.file-card-name[b-44m26xi4pd] {
    font-size: 12px;
    font-weight: 600;
    color: #111827;
    font-family: var(--ff-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-card-size[b-44m26xi4pd] {
    font-size: 11px;
    color: #6B7280;
    font-family: var(--ff-primary);
}

.file-card-actions[b-44m26xi4pd] {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.file-card-btn[b-44m26xi4pd] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #F5F7FA;
    border: 1px solid #E2E8F0;
    color: #374151;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}

.file-card-btn:hover[b-44m26xi4pd] { background: #E2E8F0; }

/* ── Radio buttons ────────────────────────────────────────── */
.radio-group[b-44m26xi4pd] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 0.25rem;
    height: 2rem;
}
 
.radio-label[b-44m26xi4pd] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #0F172A;
    font-size: 0.75rem;
    line-height: 1rem;
    user-select: none;
}
 
.radio-label input[type="radio"][b-44m26xi4pd] {
    display: none;
}
 
.radio-custom[b-44m26xi4pd] {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 1.5px solid #CBD5E1;
    background: #fff;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    vertical-align: middle;
    transition: border-color 0.15s;
}

.radio-custom[b-44m26xi4pd]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: transparent;
    transition: background 0.15s;
}
 
.radio-custom.checked[b-44m26xi4pd] {
    border-color: #004388;
}
 
.radio-custom.checked[b-44m26xi4pd]::after {
    background: #004388;
}
 
/* ── Disabled section ─────────────────────────────────────── */
.fields-disabled[b-44m26xi4pd] {
    opacity: 0.6;
    pointer-events: none;
}
 
/* ── Footer buttons ───────────────────────────────────────── */
.calc-footer[b-44m26xi4pd] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}
 
.btn-cancel[b-44m26xi4pd] {
    padding: 0.5rem 0.875rem;
    min-width: 5rem;
    background: #F5F7FA;
    border: none;
    border-radius: 1.5rem;
    color: #212121;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1rem;
}
 
.btn-cancel:hover[b-44m26xi4pd] {
    background: #E2E8F0;
}
 
.btn-calculate[b-44m26xi4pd] {
    padding: 0.5rem 0.875rem;
    min-width: 6.25rem;
    background: #004388;
    border: none;
    border-radius: 1.5rem;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1rem;
}
 
.btn-calculate:hover[b-44m26xi4pd] {
    background: #003070;
}
/* /Components/InputDetails_HeatLoad/InputDetails_HeatLoad.razor.rz.scp.css */
.dashboard-wrapper[b-11b16znuuh] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
    padding: 1.25rem;
}
 
/* ── Card shell ───────────────────────────────────────────── */
.calc-card[b-11b16znuuh] {
    background: #fff;

    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
 
/* ── Header ───────────────────────────────────────────────── */
.calc-header[b-11b16znuuh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}
 
.calc-header-left[b-11b16znuuh] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}
 
.calc-title[b-11b16znuuh] {
    color: #111827;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}
 
.project-icon[b-11b16znuuh] {
    width: 2rem;
    height: 2rem;
    border: 1px solid #E2E8F0;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
 
.project-icon:hover[b-11b16znuuh] {
    background: #F5F7FA;
}
 
/* ── Labels ───────────────────────────────────────────────── */
.field-label[b-11b16znuuh] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #111827;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1rem;
    padding: 0 0.25rem;
}
 
.required[b-11b16znuuh] {
    color: #DF342E;
    font-size: 0.75rem;
}
 
.info-icon[b-11b16znuuh] {
    color: #111827;
    opacity: 0.6;
    cursor: help;
}
 
/* ── Top 3-column row ─────────────────────────────────────── */
.fields-row[b-11b16znuuh] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
}
 

 
/* ── 2-column row ─────────────────────────────────────────── */
.fields-row-2col[b-11b16znuuh] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
 

 
/* ── Field group ──────────────────────────────────────────── */
.field-group[b-11b16znuuh] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
 
/* ── Base input / select ──────────────────────────────────── */
.field-input[b-11b16znuuh],
.field-select[b-11b16znuuh] {
    width: 100%;
    padding: 0.5rem 0.875rem;
    border-radius: 1.5rem;
    border: 1px solid #E2E8F0;
    background: #fff;
    color: #111827;
    font-size: 0.75rem;
    line-height: 1rem;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
 
.field-input[b-11b16znuuh]::placeholder {
    color: #9CA3AF;
}
 
.field-input:focus[b-11b16znuuh],
.field-select:focus[b-11b16znuuh] {
    border-color: #004388;
    box-shadow: 0 0 0 2px rgba(0, 67, 136, 0.1);
}
 
/* ── Select wrapper (adds chevron) ────────────────────────── */
.select-wrapper[b-11b16znuuh] {
    position: relative;
    display: flex;
    align-items: center;
}
 
.select-wrapper .field-select[b-11b16znuuh] {
    padding-right: 2rem;
}
 
.chevron-icon[b-11b16znuuh] {
    position: absolute;
    right: 0.75rem;
    color: #6B7280;
    pointer-events: none;
}
 
/* ── Input with unit badge ────────────────────────────────── */
.input-with-unit[b-11b16znuuh] {
    display: flex;
    width:28rem;
    align-items: center;
    border: 1px solid #E2E8F0;
    border-radius: 1.5rem;
    background: #fff;
    padding: 0.125rem 0.125rem 0.125rem 0.875rem;
    gap: 0.5rem;
}
 
.unit-input[b-11b16znuuh] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #111827;
    font-size: 0.75rem;
    line-height: 1rem;
    min-width: 0;
}

.unit-select-wrap[b-11b16znuuh] {
    flex-shrink: 0;
}

.unit-select-wrap[b-11b16znuuh]  .select-wrapper {
    width: auto;
    display: inline-flex;
}

.unit-select-wrap[b-11b16znuuh]  .select-trigger {
    padding: 0.375rem 1.75rem 0.375rem 0.75rem !important;
    font-size: 0.75rem;
    line-height: 1rem;
    border: none;
    background: #E2E8F0;
    border-radius: 1.5rem;
    color: #374151;
    white-space: nowrap;
    min-height: unset !important;
    height: 1.75rem;
    box-sizing: border-box;
    width: auto;
}

.unit-select-wrap[b-11b16znuuh]  .chevron-icon {
    right: 8px;
    color: #374151;
}

.unit-select-wrap[b-11b16znuuh]  .options-panel {
    min-width: 100%;
}
 
.unit-input[b-11b16znuuh]::placeholder {
    color: #9CA3AF;
}
 
.unit-input:disabled[b-11b16znuuh] {
    color: #9CA3AF;
    cursor: not-allowed;
}
 
.input-with-unit:focus-within[b-11b16znuuh] {
    border-color: #004388;
    box-shadow: 0 0 0 2px rgba(0, 67, 136, 0.1);
}
 
.unit-badge[b-11b16znuuh] {
    width: 70px;
    flex-shrink: 0;
    padding: 0.375rem 1.5rem;
    background: #E2E8F0;
    border-radius: 1.5rem;
    color: #374151;
    font-size: 0.75rem;
    line-height: 1rem;
    white-space: nowrap;
    height: 1.75rem;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
 
/* Unit badge with embedded select ────────────────────────── */
.unit-select-wrap[b-11b16znuuh] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
 
.unit-select[b-11b16znuuh] {
    border: none;
    background: transparent;
    color: #374151;
    font-size: 0.75rem;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
 
.chevron-mini[b-11b16znuuh] {
    color: #374151;
    pointer-events: none;
    flex-shrink: 0;
}
 
/* ── Input Details panel ──────────────────────────────────── */
.section-group[b-11b16znuuh] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
 
.input-details-panel[b-11b16znuuh] {
    background: rgba(245, 247, 250, 0.60);
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
 
.subsection[b-11b16znuuh] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
 
.divider[b-11b16znuuh] {
    border-top: 1px solid #E8EBED;
    margin: 0;
}
 
/* ── File Upload ──────────────────────────────────────────── */
.upload-label-row[b-11b16znuuh] {
    width: 28rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
 
.download-link[b-11b16znuuh] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #111827;
    font-size: 0.625rem;
    text-decoration: underline;
    cursor: pointer;
}
 
.upload-row[b-11b16znuuh] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex-wrap: wrap;
}
 
.upload-zone[b-11b16znuuh] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 28rem;
    padding: 1.5rem 1.25rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
    cursor: pointer;
    min-width: 320px;
}
 
.upload-zone:hover[b-11b16znuuh],
.upload-zone.drop-active[b-11b16znuuh] {
    border-color: #004388;
    background: #F0F5FA;
}

.upload-file-input[b-11b16znuuh] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
 
.upload-icon[b-11b16znuuh] {
    color: #374151;
    flex-shrink: 0;
}
 
.upload-text[b-11b16znuuh] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
}
 
.upload-main[b-11b16znuuh] {
    color: #374151;
    font-size: 0.75rem;
    line-height: 1rem;
}
 
.upload-sub[b-11b16znuuh] {
    color: #374151;
    font-size: 0.625rem;
    line-height: 1rem;
}
 
.upload-limit[b-11b16znuuh] {
    color: #DF342E;
}
 
.btn-select-file[b-11b16znuuh] {
    flex-shrink: 0;
    padding: 0.375rem 0.875rem;
    background: #F5F7FA;
    border: none;
    border-radius: 1.5rem;
    color: #111827;
    font-size: 0.625rem;
    cursor: pointer;
    line-height: 1rem;
}
 
.btn-select-file:hover[b-11b16znuuh] {
    background: #E2E8F0;
}
 
.file-errors[b-11b16znuuh] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.125rem 0;
}

.file-error-line[b-11b16znuuh] {
    color: #DF342E;
    font-size: 0.625rem;
    font-family: var(--ff-primary);
    line-height: 0.875rem;
}

/* ── File card (existing / selected file) ─────────────────── */
.file-card[b-11b16znuuh] {
    display: flex;
    align-items: center;
    width: 28rem;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
}

.file-card-icon[b-11b16znuuh] { flex-shrink: 0; }

.file-card-info[b-11b16znuuh] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.file-card-name[b-11b16znuuh] {
    font-size: 12px;
    font-weight: 600;
    color: #111827;
    font-family: var(--ff-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-card-size[b-11b16znuuh] {
    font-size: 11px;
    color: #6B7280;
    font-family: var(--ff-primary);
}

.file-card-actions[b-11b16znuuh] {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.file-card-btn[b-11b16znuuh] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #F5F7FA;
    border: 1px solid #E2E8F0;
    color: #374151;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}

.file-card-btn:hover[b-11b16znuuh] { background: #E2E8F0; }

.input-error[b-11b16znuuh] {
    border-color: #DF342E !important;
}

.field-error-msg[b-11b16znuuh] {
    display: block;
    color: #DF342E;
    font-size: 11px;
    font-family: var(--ff-primary);
    margin-top: 4px;
}

/* ── Radio buttons ────────────────────────────────────────── */
.radio-group[b-11b16znuuh] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 0.25rem;
    height: 2rem;
}
 
.radio-label[b-11b16znuuh] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #0F172A;
    font-size: 0.75rem;
    line-height: 1rem;
    user-select: none;
}
 
.radio-label input[type="radio"][b-11b16znuuh] {
    display: none;
}
 
.radio-custom[b-11b16znuuh] {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 1.5px solid #CBD5E1;
    background: #fff;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    vertical-align: middle;
    transition: border-color 0.15s;
}

.radio-custom[b-11b16znuuh]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: transparent;
    transition: background 0.15s;
}
 
.radio-custom.checked[b-11b16znuuh] {
    border-color: #004388;
}
 
.radio-custom.checked[b-11b16znuuh]::after {
    background: #004388;
}
 
/* ── Disabled section ─────────────────────────────────────── */
.fields-disabled[b-11b16znuuh] {
    opacity: 0.6;
    pointer-events: none;
}
 
/* ── Footer buttons ───────────────────────────────────────── */
.calc-footer[b-11b16znuuh] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}
 
.btn-cancel[b-11b16znuuh] {
    padding: 0.5rem 0.875rem;
    min-width: 5rem;
    background: #F5F7FA;
    border: none;
    border-radius: 1.5rem;
    color: #212121;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1rem;
}
 
.btn-cancel:hover[b-11b16znuuh] {
    background: #E2E8F0;
}
 
.btn-calculate[b-11b16znuuh] {
    padding: 0.5rem 0.875rem;
    min-width: 6.25rem;
    background: #004388;
    border: none;
    border-radius: 1.5rem;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1rem;
}
 
.btn-calculate:hover[b-11b16znuuh] {
    background: #003070;
}

.upload-file-input[b-11b16znuuh]{
    flex-shrink: 0;
    padding: 0.375rem 0.875rem;
    background: #F5F7FA;
    border: none;
    border-radius: 1.5rem;
    color: #111827;
    font-size: 0.625rem;
    cursor: pointer;
    line-height: 1rem;
}
/* /Components/InputPanel/InputPanel.razor.rz.scp.css */
/* InputPanel.razor.css — Blazor CSS isolation file */

.input-panel[b-qobb38i3pk] {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px 16px 16px;
    background: #FFFFFF;
    border-radius: 12px;
    outline: 1px solid #E2E8F0;
    outline-offset: -1px;
    font-family: inherit;
}

/* ---------- Header ---------- */

.input-panel__header[b-qobb38i3pk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.input-panel__title[b-qobb38i3pk] {
    color: #111827;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.input-panel__chevron[b-qobb38i3pk] {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.input-panel__chevron.is-collapsed[b-qobb38i3pk] {
    transform: rotate(180deg);
}

/* ---------- Content rows ---------- */

.input-panel__content[b-qobb38i3pk] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-panel__row[b-qobb38i3pk] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* Align bottom row under the value columns, not under the file chip */
.input-panel__row--bottom[b-qobb38i3pk] {
    padding-left: calc(185px + 16px);
}

/* ---------- Excel file chip ---------- */

.file-chip[b-qobb38i3pk] {
    width: 185px;
    min-width: 185px;
    padding: 6px 8px;
    background: #F5F7FA;
    border-radius: 8px;
    outline: 1px solid #E2E8F0;
    outline-offset: -1px;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}

.file-chip__icon[b-qobb38i3pk] {
    width: 24px;
    height: 24px;
    background: #E6F3ED;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.file-chip__info[b-qobb38i3pk] {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.file-chip__name[b-qobb38i3pk] {
    color: #111827;
    font-size: 10px;
    font-weight: 500;
    line-height: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-chip__size[b-qobb38i3pk] {
    color: #6B7280;
    font-size: 9px;
    line-height: 12px;
}

/* ---------- Value / label pairs ---------- */

.input-item[b-qobb38i3pk] {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.input-item__value[b-qobb38i3pk] {
    color: #111827;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.input-item__label[b-qobb38i3pk] {
    color: #9CA3AF;
    font-size: 11px;
    font-weight: 400;
    line-height: 15px;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-hy6sgt4y5a]{
    height: 100%;
    display: flex;
}
main[b-hy6sgt4y5a] {
    width: 100%;
    height: 100%;
    overflow: auto;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-xuzm67y93y] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

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

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

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

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/MainCard/MainCard.razor.rz.scp.css */
.menu-container[b-80sdn3wgaq] {
    position: relative;
    display: inline-block;
}

/* ── Meta row tooltip ─────────────────────────────────────── */
.mc-tip[b-80sdn3wgaq] {
    position: relative;
    cursor: default;
}

.mc-tip[b-80sdn3wgaq]::before {
    content: attr(data-tooltip);
    position: absolute;
    top: calc(100% + 6px);
    left: 110px;
    background: #111827;
    color: #ffffff;
    font-family: var(--ff-primary);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 200;
}


.mc-tip:hover[b-80sdn3wgaq]::before,
.mc-tip:hover[b-80sdn3wgaq]::after {
    opacity: 1;
}

.action-menu[b-80sdn3wgaq] {
    position: absolute;
    top: 100%;
    right: 0;
    width: 150px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.menu-item[b-80sdn3wgaq] {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-align: left;

    color: #374151;
    font-size: 10px;
    font-weight: 400;
    line-height: 14px;
}

.menu-item:hover[b-80sdn3wgaq] {
    opacity: 0.8;
}

.dots-btn[b-80sdn3wgaq] {
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown-overlay[b-80sdn3wgaq] {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: transparent;
}

/* ── Outer card ── */
.project-card[b-80sdn3wgaq] {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    max-width: 460px;
    padding: 2px;
    background: #F5F7FA;
    border-radius: 12px;
    outline: 1px solid #E2E8F0;
    box-sizing: border-box;
    cursor: pointer;
}
 
/* ── Active badge ── */
/* .project-card__badge {
    position: absolute;
    top: 0;
    left: 19px;
    height: 26px;
    padding: 0 10px;
    background: #007D4E;
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 12px;
    font-family: var(--ff-primary);
    font-weight: 400;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
} */
.project-card__badge[b-80sdn3wgaq]{
    --r: 10px;

    position: absolute;
    top: 0;
    left: 19px;
    height: 26px;
    padding: 0 10px;
    background: #007D4E;
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-family: var(--ff-primary);
    font-weight: 400;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    width: 80px;
    transform: rotate(180deg);

    clip-path: shape(
      from 0 100%,
      arc by var(--r) calc(-1*var(--r)) of var(--r),
      vline to var(--r),
      arc by var(--r) calc(-1*var(--r)) of var(--r) cw,
      hline to calc(100% - 2*var(--r)),
      arc by var(--r) var(--r) of var(--r) cw,
      vline to calc(100% - var(--r)),
      arc by var(--r) var(--r) of var(--r)
    );
}
.project-card__badge_pending[b-80sdn3wgaq]{
    --r: 10px;

    position: absolute;
    top: 0;
    left: 19px;
    height: 26px;
    padding: 0 10px;
    background: #F78400;
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-family: var(--ff-primary);
    font-weight: 400;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    width: 80px;
    transform: rotate(180deg);

    clip-path: shape(
      from 0 100%,
      arc by var(--r) calc(-1*var(--r)) of var(--r),
      vline to var(--r),
      arc by var(--r) calc(-1*var(--r)) of var(--r) cw,
      hline to calc(100% - 2*var(--r)),
      arc by var(--r) var(--r) of var(--r) cw,
      vline to calc(100% - var(--r)),
      arc by var(--r) var(--r) of var(--r)
    );
}

.project-card__badge_in[b-80sdn3wgaq]{
    transform: rotate(180deg);
    display: flex;
}
/* background: #F5F7FA;
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    color: #111827; */

.project-card__badge_Comp[b-80sdn3wgaq]{
     --r: 10px;

    position: absolute;
    top: 0;
    left: 19px;
    height: 26px;
    padding: 0 10px;
    background: #E2E8F0;
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 12px;
    font-family: var(--ff-primary);
    font-weight: 400;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    width: 100px;
    transform: rotate(180deg);

    clip-path: shape(
      from 0 100%,
      arc by var(--r) calc(-1*var(--r)) of var(--r),
      vline to var(--r),
      arc by var(--r) calc(-1*var(--r)) of var(--r) cw,
      hline to calc(100% - 2*var(--r)),
      arc by var(--r) var(--r) of var(--r) cw,
      vline to calc(100% - var(--r)),
      arc by var(--r) var(--r) of var(--r)
    );
}
/* ── Top action bar ── */
.project-card__topbar[b-80sdn3wgaq] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    padding: 6px;
}
 

 
.project-card__action-btn--text svg[b-80sdn3wgaq] {
    flex-shrink: 0;
}
 
/* Icon-only button: ⋮ menu */
.project-card__action-btn--icon[b-80sdn3wgaq] {
    width: 28px;
    height: 28px;
    justify-content: center;
    padding: 0;
}
 
/* ── Body ── */
.project-card__body[b-80sdn3wgaq] {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 10px;
    outline: 1px solid #E2E8F0;
    height:100%
}
 
/* ── Title ── */
.project-card__title[b-80sdn3wgaq] {
    margin: 0;
    color: #111827;
    font-size: 14px;
    font-family: var(--ff-primary);
    font-weight: 700;
    line-height: 16px;
}
 
/* ── Meta grid: rows on left, avatars on right ── */
.project-card__meta-grid[b-80sdn3wgaq] {
    display: flex;
    align-items: flex-end;
    gap: 16px;
}
 
.project-card__meta-rows[b-80sdn3wgaq] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
 
/* ── Single meta row ── */
.project-card__meta-row[b-80sdn3wgaq] {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
}
 
.project-card__meta-row svg[b-80sdn3wgaq] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}
 
.project-card__meta-row span[b-80sdn3wgaq] {
    color: #374151;
    font-size: 12px;
    font-family: var(--ff-primary);
    font-weight: 400;
    line-height: 1.4;
}
 
/* ── Collaborators ── */
.project-card__collaborators[b-80sdn3wgaq] {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
 
.project-card__avatar-stack[b-80sdn3wgaq] {
    display: flex;
    align-items: center;
}
 
/* Avatar circles overlap slightly */
.project-card__avatar-stack .project-card__avatar + .project-card__avatar[b-80sdn3wgaq] {
    margin-left: -6px;
}
 
/* ── Avatar ── */
.project-card__avatar[b-80sdn3wgaq] {
    width: 24px;
    height: 24px;
    background: #F5F7FA;
    border-radius: 50%;
    outline: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    font-size: 10px;
    font-family: var(--ff-primary);
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
}
 
/* Small avatar used inside meta row (created-by) */
.project-card__avatar--sm[b-80sdn3wgaq] {
    width: 16px;
    height: 16px;
    background: #E2E8F0;
    border-radius: 6px;
    font-size: 6px;
    color: #111827;
    outline: none;
}
 
/* ── "+N More" label ── */
.project-card__more[b-80sdn3wgaq] {
    color: #6B7280;
    font-size: 10px;
    font-family: var(--ff-primary);
    font-weight: 400;
    line-height: 12px;
    white-space: nowrap;
}
.calc-add-btn[b-80sdn3wgaq] {
    height: 28px;
    padding: 0 12px 0 10px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--ff-primary);
    font-size: 12px;
    font-weight: 400;
    line-height: 16.8px;
    color: #00A6E2;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.calc-add-btn iconify-icon[b-80sdn3wgaq] {
    color: #00A6E2;
    flex-shrink: 0;
}

.calc-add-btn:hover[b-80sdn3wgaq] {
    background: #F0F9FF;
    
}

.calc-add-btn:active[b-80sdn3wgaq] { transform: scale(0.97); }

.calc-add-btn:disabled[b-80sdn3wgaq] {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}
.dots-btn[b-80sdn3wgaq] {
    width: 28px;
    height: 28px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #111827;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.15s ease, border-color 0.15s ease;
}
/* /Components/MainContainers/MainContainers.razor.rz.scp.css */
.contain[b-vmn37m71h5]{
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    border: 1px solid #E2E8F0;
    overflow: auto;
    background: #fff;
}
/* /Components/Outputpanel/OutputsPanel.razor.rz.scp.css */
/* OutputsPanel.razor.css — Blazor CSS isolation file */

.outputs-panel[b-j2f3av03eg] {
    flex: 1 1 0;
    align-self: stretch;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px 16px 16px;
    background: #FFFFFF;
    border-radius: 12px;
    outline: 1px solid #E2E8F0;
    outline-offset: -1px;
    container-type: inline-size;
    container-name: outputs;
}

/* ---------- Header ---------- */

.outputs-panel__header[b-j2f3av03eg] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 4px;
    min-width: 0;
}

.outputs-panel__left[b-j2f3av03eg] {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    overflow: hidden;
}

.outputs-panel__title[b-j2f3av03eg] {
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    white-space: nowrap;
}

/* Segmented tab switcher */
.tab-switch[b-j2f3av03eg] {
    display: flex;
    align-items: center;
    padding: 2px;
    background: #FFFFFF;
    border-radius: 24px;
    outline: 1px solid #E2E8F0;
    outline-offset: -1px;
}

.tab-switch__tab[b-j2f3av03eg] {
    padding: 6px 10px;
    background: #FFFFFF;
    border: none;
    border-radius: 24px;
    color: #9CA3AF;
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.tab-switch__tab.is-active[b-j2f3av03eg] {
    background: #004388;
    color: #FFFFFF;
}

.tab-switch__tab:not(.is-active):hover[b-j2f3av03eg] {
    color: #6B7280;
}

/* ---------- Recommended coverage ---------- */

.coverage[b-j2f3av03eg] {
    display: flex;
    align-items: center;
    gap: 4.26px;
    flex-shrink: 0;
}

.coverage__label[b-j2f3av03eg] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 2.84px;
    color: #111827;
    font-size: 12px;
    line-height: 11.37px;
    white-space: nowrap;
}

.coverage__control[b-j2f3av03eg] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 2px 2px 2px 16px;
    background: #FFFFFF;
    border-radius: 24px;
    outline: 1px solid #E8EBED;
    outline-offset: -1px;
    min-width: 0;
}

.coverage__input-wrap[b-j2f3av03eg] {
    position: relative;
}
.info-wrap[b-j2f3av03eg] {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.info-icon[b-j2f3av03eg] {
    color: #9CA3AF;
    cursor: help;
    display: block;
}

.info-tooltip[b-j2f3av03eg] {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    background: #1F2937;
    color: #F9FAFB;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--ff-primary);
    line-height: 1.5;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    z-index: 300;
    pointer-events: none;
    white-space: normal;
}

.info-wrap:hover .info-tooltip[b-j2f3av03eg] {
    display: block;
}
.coverage__input[b-j2f3av03eg] {
    min-width: 52px;
    width: 5.5ch;
    max-width: 72px;
    padding: 0 4px;
    border: none;
    outline: none;
    background: transparent;
    color: #111827;
    font-size: 12px;
    font-family: inherit;
    line-height: 11.37px;
    text-align: right;
    cursor: text;
}

.coverage__input:focus[b-j2f3av03eg] {
    outline: none;
    color: #004388;
}

.coverage__input--error[b-j2f3av03eg] {
    color: #EF4444;
}

.coverage__error[b-j2f3av03eg] {
    position: absolute;
    top: calc(100% + 3px);
    left: 50%;
    transform: translateX(-50%);
    color: #EF4444;
    font-size: 9px;
    white-space: nowrap;
    pointer-events: none;
}

.coverage__chip[b-j2f3av03eg] {
    padding: 8px 12px;
    background: #E2E8F0;
    border: none;
    border-radius: 24px;
    color: #374151;
    font-family: inherit;
    font-size: 10px;
    line-height: 11.37px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
    transition: background-color 0.15s ease;
}

.coverage__chip:hover[b-j2f3av03eg] {
    background: #CBD5E1;
}

/* ---------- Responsive header (panel-width based, no wrapping) ----------
   Scales tab/coverage text and paddings down only when the panel itself is
   too narrow to fit everything on one line, so the "Recommended Coverage"
   control is never crushed into (and overlapping) the tab switcher. */
@container outputs (max-width: 760px) {
    .outputs-panel__header[b-j2f3av03eg] { gap: 6px; }
    .outputs-panel__left[b-j2f3av03eg]   { gap: 6px; }
    .outputs-panel__title[b-j2f3av03eg]  { font-size: 12px; }

    .tab-switch__tab[b-j2f3av03eg] { font-size: 9px; padding: 5px 8px; }

    .coverage[b-j2f3av03eg]           { gap: 3px; }
    .coverage__label[b-j2f3av03eg]     { font-size: 10px; }
    .coverage__control[b-j2f3av03eg]   { gap: 8px; padding: 2px 2px 2px 10px; }
    .coverage__input[b-j2f3av03eg]     { width: 30px; font-size: 10px; }
    .coverage__chip[b-j2f3av03eg]      { font-size: 9px; padding: 6px 8px; max-width: 120px; }
}

@container outputs (max-width: 620px) {
    .coverage__label span:first-child[b-j2f3av03eg] {
        display: inline-block;
        max-width: 90px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: middle;
    }
    .coverage__chip[b-j2f3av03eg] { max-width: 90px; }
}

/* ---------- Divider & download ---------- */

.outputs-panel__divider[b-j2f3av03eg] {
    width: 1px;
    height: 16px;
    background: #E2E8F0;
    flex-shrink: 0;
}

.outputs-panel__download[b-j2f3av03eg] {
    width: 32px;
    height: 32px;
    background: #FFFFFF;
    border: none;
    border-radius: 24px;
    outline: 1px solid #E2E8F0;
    outline-offset: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.15s ease;
}

.outputs-panel__download:hover[b-j2f3av03eg] {
    background: #F0F5FA;
}

/* ---------- Chart area ---------- */

.outputs-panel__chart[b-j2f3av03eg] {
    position: relative;
    flex: 1 1 0;
    min-height: 0;
    background: #FFFFFF;
    border-radius: 8px;
    outline: 1px solid #E2E8F0;
    outline-offset: -1px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 8px 12px 10px 12px;
}

.chart-legend[b-j2f3av03eg] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 2px 0 4px 0;
    flex-shrink: 0;
}

.chart-legend__item[b-j2f3av03eg] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #374151;
    font-size: 10px;
    line-height: 16px;
}

.chart-legend__dot[b-j2f3av03eg] {
    width: 9px;
    height: 9px;
    border-radius: 9999px;
    display: inline-block;
}

/* Plot area — legacy-style Y-axis caption + flex chart slot */
.chart-plot-area[b-j2f3av03eg] {
    position: relative;
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.chart-plot[b-j2f3av03eg] {
    width: 100%;
    flex: 1 1 0;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chart-plot > div[b-j2f3av03eg],
.chart-plot .js-plotly-plot[b-j2f3av03eg],
.chart-plot .js-plotly-plot .plot-container[b-j2f3av03eg],
.chart-plot .js-plotly-plot .svg-container[b-j2f3av03eg] {
    flex: 1 1 0;
    width: 100% !important;
    height: 100% !important;
    min-height: 0;
}

.chart-note[b-j2f3av03eg] {
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 6px 4px 0;
    color: #6B7280;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
}

.chart-placeholder[b-j2f3av03eg] {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-size: 12px;
    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 33px,
            #E2E8F0 33px,
            #E2E8F0 34px
        );
}

/* Axis titles — legacy SVG used 9px bold Arial */
.chart-axis[b-j2f3av03eg] {
    color: #374151;
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    line-height: 12px;
}

.chart-axis--x[b-j2f3av03eg] {
    text-align: center;
    padding-top: 8px;
}

.chart-axis--y[b-j2f3av03eg] {
    position: absolute;
    left: 0;
    top: 42%;
    transform: rotate(-90deg) translateX(-50%);
    transform-origin: left center;
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
}

.chart-axis--y-right[b-j2f3av03eg] {
    position: absolute;
    right: 0;
    top: 42%;
    transform: rotate(90deg) translateX(50%);
    transform-origin: right center;
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
}
/* /Components/Pages/AuditLogs.razor.rz.scp.css */
.dashborad-wrapper[b-v95b61eh59]{
        display: flex;
    flex-direction: column;
    gap:1.25rem;
    height: 100%;
    padding: 1.25rem;
    background: #CCD9E714;
}

/* ── Page wrapper ─────────────────────────────────────────── */
.al-wrapper[b-v95b61eh59] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    box-sizing: border-box;
}

/* ── Header ───────────────────────────────────────────────── */
.al-header[b-v95b61eh59] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.al-header-left[b-v95b61eh59] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.back-btn[b-v95b61eh59] {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #111827;
    transition: background 0.15s;
    flex-shrink: 0;
}

.back-btn:hover[b-v95b61eh59] { background: #F1F5F9; }

.al-title[b-v95b61eh59] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    font-family: var(--ff-primary);
}

/* ── Controls row ─────────────────────────────────────────── */
.al-controls[b-v95b61eh59] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Search pill */
.ctrl-search[b-v95b61eh59] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.875rem;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    background: #fff;
    min-width: 180px;
}

.ctrl-search:focus-within[b-v95b61eh59] { border-color: #004388; }

.search-icon[b-v95b61eh59]  { color: #9CA3AF; flex-shrink: 0; }

.search-input[b-v95b61eh59] {
    border: none;
    outline: none;
    font-size: 12px;
    font-family: var(--ff-primary);
    color: #374151;
    background: transparent;
    width: 100%;
}

.search-input[b-v95b61eh59]::placeholder { color: #9CA3AF; }

/* Filter / date pills */
.ctrl-pill[b-v95b61eh59] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    background: #fff;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    transition: border-color 0.15s;
}

.ctrl-pill:hover[b-v95b61eh59],
.ctrl-pill.open[b-v95b61eh59] { border-color: #004388; }

.pill-label[b-v95b61eh59] {
    font-size: 12px;
    color: #6B7280;
    font-family: var(--ff-primary);
}

.pill-value[b-v95b61eh59] {
    font-size: 12px;
    font-weight: 600;
    color: #111827;
    font-family: var(--ff-primary);
    min-width: 80px;
}

.pill-chevron[b-v95b61eh59] { color: #374151; flex-shrink: 0; }

/* Transparent backdrop — closes the project dropdown on outside click */
.al-drop-overlay[b-v95b61eh59] {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: transparent;
}

/* Project dropdown */
.pill-dropdown[b-v95b61eh59] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 100;
    overflow: hidden;
}

.pill-opt[b-v95b61eh59] {
    padding: 0.6rem 1rem;
    font-size: 12px;
    font-family: var(--ff-primary);
    color: #374151;
    cursor: pointer;
    transition: background 0.1s;
}

.pill-opt:hover[b-v95b61eh59]  { background: #F5F7FA; }
.pill-opt.active[b-v95b61eh59] { background: #EEF4FF; color: #004388; font-weight: 600; }

/* Date pill */
.date-pill[b-v95b61eh59] { gap: 0.375rem; }

/* Formatted date label shown inside the pill */
.pill-date-display[b-v95b61eh59] {
    font-size: 12px;
    font-weight: 600;
    color: #111827;
    font-family: var(--ff-primary);
    min-width: 90px;
    white-space: nowrap;
}

.pill-date-placeholder[b-v95b61eh59] {
    color: #9CA3AF;
    font-weight: 400;
}

/* Kept in the DOM so showPicker() works — display:none or zero-size blocks the picker.
   1px size, opacity 0, pointer-events none so it is invisible and non-interactive. */
.date-input-hidden[b-v95b61eh59] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    border: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.date-dash[b-v95b61eh59] {
    font-size: 13px;
    color: #9CA3AF;
    padding: 0 2px;
}

/* Export button */
.btn-export[b-v95b61eh59] {
    padding: 0.45rem 1.25rem;
    background: #004388;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--ff-primary);
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}

.btn-export:hover[b-v95b61eh59]                  { background: #003370; }
.btn-export:disabled[b-v95b61eh59]               { background: #E2E8F0; color: #9CA3AF; cursor: not-allowed; }
.btn-export:disabled:hover[b-v95b61eh59]         { background: #E2E8F0; }

/* ── Table wrapper ────────────────────────────────────────── */
.al-table-wrap[b-v95b61eh59] {
    flex: 1;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: auto;
}

/* ── Table ────────────────────────────────────────────────── */
.al-table[b-v95b61eh59] {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-family: var(--ff-primary);
}

/* Fixed column widths — prevents any layout shift while searching */
.th-check[b-v95b61eh59], .td-check[b-v95b61eh59] { width: 48px; }
.th-project[b-v95b61eh59]           { width: 22%; }
.th-by[b-v95b61eh59]                { width: 15%; }
.th-log[b-v95b61eh59]               { width: auto; }

/* Header */
.al-table thead tr[b-v95b61eh59] {
    background: #F5F7FA;
    border-bottom: 2px solid #E2E8F0;
}

.al-table th[b-v95b61eh59] {
    padding: 0.75rem 1rem;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    text-align: left;
    vertical-align: top;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    border-right: 1px solid #E2E8F0;
}

.al-table th:last-child[b-v95b61eh59] { border-right: none; }

.al-table th div + div[b-v95b61eh59] {
    font-weight: 700;
}

/* Checkbox columns */
.th-check[b-v95b61eh59], .td-check[b-v95b61eh59] {
    text-align: center;
    vertical-align: middle;
}

/* Body rows */
.al-table tbody tr[b-v95b61eh59] { transition: background 0.1s; }

.al-table tbody tr:hover[b-v95b61eh59]    { background: #FAFAFA; }
.al-table tbody tr.tr-selected[b-v95b61eh59] { background: #EEF4FF; }

/* Border on td — more reliable than tr border-bottom with border-collapse:collapse */
.al-table tbody td[b-v95b61eh59] {
    border-bottom: 1px solid #E2E8F0;
    border-right: 1px solid #E2E8F0;
    padding: 0.875rem 1rem;
    font-size: 13px;
    color: #374151;
    vertical-align: top;
    overflow: hidden;
}

.al-table tbody tr:last-child td[b-v95b61eh59]  { border-bottom: none; }
.al-table tbody td:last-child[b-v95b61eh59]      { border-right: none; }

.td-check[b-v95b61eh59] { vertical-align: middle; }

/* Cell content */
.cell-main[b-v95b61eh59] {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
}

.cell-sub[b-v95b61eh59] {
    font-size: 12px;
    color: #6B7280;
    margin-top: 2px;
    line-height: 1.4;
}

/* Log lines */
.log-line[b-v95b61eh59] {
    font-size: 12px;
    color: #374151;
    line-height: 1.55;
    padding: 1px 0;
}

/* ── Checkbox style ───────────────────────────────────────── */
.row-cb[b-v95b61eh59] {
    width: 15px;
    height: 15px;
    cursor: pointer;
    accent-color: #004388;
}

/* ── State cells ──────────────────────────────────────────── */
.td-state[b-v95b61eh59] {
    text-align: center;
    padding: 3rem 1rem;
    color: #9CA3AF;
}

.td-empty[b-v95b61eh59] {
    font-size: 13px;
    font-family: var(--ff-primary);
}
/* /Components/Pages/Calculation.razor.rz.scp.css */
.dashboard-wrapper[b-g887oywm7m] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
    padding: 1.25rem;
}
 
/* ── Card shell ───────────────────────────────────────────── */
.calc-card[b-g887oywm7m] {
    background: #fff;

    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
 
/* ── Header ───────────────────────────────────────────────── */
.calc-header[b-g887oywm7m] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}
 
.calc-header-left[b-g887oywm7m] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}
 
.calc-title[b-g887oywm7m] {
    color: #111827;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}
 
.project-icon[b-g887oywm7m] {
    width: 2rem;
    height: 2rem;
    border: 1px solid #E2E8F0;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
 
.project-icon:hover[b-g887oywm7m] {
    background: #F5F7FA;
}
 .info-wrap[b-g887oywm7m] {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.info-icon[b-g887oywm7m] {
    color: #9CA3AF;
    cursor: help;
    display: block;
}

.info-tooltip[b-g887oywm7m] {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    background: #1F2937;
    color: #F9FAFB;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--ff-primary);
    line-height: 1.5;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    z-index: 300;
    pointer-events: none;
    white-space: normal;
}

.info-wrap:hover .info-tooltip[b-g887oywm7m] {
    display: block;
}

.calc-type-tooltip[b-g887oywm7m] {
    width: 280px;
}

.calc-type-tooltip strong[b-g887oywm7m] {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #F9FAFB;
}

.calc-type-tooltip ul[b-g887oywm7m] {
    margin: 0;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.calc-type-tooltip ul li[b-g887oywm7m] {
    color: #F9FAFB;
    font-size: 12px;
    line-height: 1.5;
}

.calc-type-tooltip ul li strong[b-g887oywm7m] {
    display: inline;
    margin-bottom: 0;
}

/* ── Labels ───────────────────────────────────────────────── */
.field-label[b-g887oywm7m] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #111827;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1rem;
    padding: 0 0.25rem;
    cursor: pointer;
    user-select: none;
}
 
.required[b-g887oywm7m] {
    color: #DF342E;
    font-size: 0.75rem;
}
 
.info-icon[b-g887oywm7m] {
    color: #111827;
    opacity: 0.6;
    cursor: help;
}
 
/* ── Top 3-column row ─────────────────────────────────────── */
.fields-row[b-g887oywm7m] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
}
 
.fields-row > .field-group[b-g887oywm7m] {
    flex: 1 1 0;
    min-width: 200px;
}


 
/* ── 2-column row ─────────────────────────────────────────── */
.fields-row-2col[b-g887oywm7m] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
 
.fields-row-2col > .field-group[b-g887oywm7m] {
    flex: 1 1 0;
    min-width: 0;
}
 
/* ── Field group ──────────────────────────────────────────── */
.field-group[b-g887oywm7m] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
 
/* ── Base input / select ──────────────────────────────────── */
.field-input[b-g887oywm7m],
.field-select[b-g887oywm7m] {
    width: 100%;
    height: 2.2rem;
    padding: 0.5rem 0.875rem;
    border-radius: 1.5rem;
    border: 1px solid #E2E8F0;
    background: #fff;
    color: #111827;
    font-size: 0.75rem;
    line-height: 1rem;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
 
.field-input[b-g887oywm7m]::placeholder {
    color: #9CA3AF;
}
 
.field-input:focus[b-g887oywm7m],
.field-select:focus[b-g887oywm7m] {
    border-color: #004388;
    box-shadow: 0 0 0 2px rgba(0, 67, 136, 0.1);
}



.field-error-msg[b-g887oywm7m] {
    display: block;
    color: #DF342E;
    font-size: 11px;
    font-family: var(--ff-primary);
    margin-top: 4px;
}

.api-error-msg[b-g887oywm7m] {
    color: #DF342E;
    font-size: 12px;
    font-family: var(--ff-primary);
    text-align: center;
    padding: 8px 0 4px;
}

/* ── Select wrapper (adds chevron) ────────────────────────── */
.select-wrapper[b-g887oywm7m] {
    position: relative;
    display: flex;
    align-items: center;
}
 
.select-wrapper .field-select[b-g887oywm7m] {
    padding-right: 2rem;
}
 
.chevron-icon[b-g887oywm7m] {
    position: absolute;
    right: 0.75rem;
    color: #6B7280;
    pointer-events: none;
}
 
/* ── Input with unit badge ────────────────────────────────── */
.input-with-unit[b-g887oywm7m] {
    display: flex;
    align-items: center;
    border: 1px solid #E2E8F0;
    border-radius: 1.5rem;
    background: #fff;
    padding: 0.125rem 0.125rem 0.125rem 0.875rem;
    gap: 0.5rem;
}
 
.unit-input[b-g887oywm7m] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #111827;
    font-size: 0.75rem;
    line-height: 1rem;
    min-width: 0;
}
 
.unit-input[b-g887oywm7m]::placeholder {
    color: #9CA3AF;
}
 
.unit-input:disabled[b-g887oywm7m] {
    color: #9CA3AF;
    cursor: not-allowed;
}
 
.input-with-unit:focus-within[b-g887oywm7m] {
    border-color: #004388;
    box-shadow: 0 0 0 2px rgba(0, 67, 136, 0.1);
}
 
.unit-badge[b-g887oywm7m] {
    width: 70px;
    flex-shrink: 0;
    padding: 0.375rem 1.5rem;
    background: #E2E8F0;
    border-radius: 1.5rem;
    color: #374151;
    font-size: 0.75rem;
    line-height: 1rem;
    white-space: nowrap;
}
 
/* Unit badge with embedded select ────────────────────────── */
.unit-select-wrap[b-g887oywm7m] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
   
}
 
.unit-select[b-g887oywm7m] {
    border: none;
    background: transparent;
    color: #374151;
    font-size: 0.75rem;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
 
.chevron-mini[b-g887oywm7m] {
    color: #374151;
    pointer-events: none;
    flex-shrink: 0;
}
 
/* ── Input Details panel ──────────────────────────────────── */
.section-group[b-g887oywm7m] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
 
.input-details-panel[b-g887oywm7m] {
    background: rgba(245, 247, 250, 0.60);
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
 
.subsection[b-g887oywm7m] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
 
.divider[b-g887oywm7m] {
    border-top: 1px solid #E8EBED;
    margin: 0;
}
 
/* ── File Upload ──────────────────────────────────────────── */
.upload-label-row[b-g887oywm7m] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
 
.download-link[b-g887oywm7m] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #111827;
    font-size: 0.625rem;
    text-decoration: underline;
    cursor: pointer;
}
 
.upload-row[b-g887oywm7m] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex-wrap: wrap;
}
 
.upload-zone[b-g887oywm7m] {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 28rem;
    padding: 1.5rem 1.25rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
    cursor: pointer;
    min-width: 320px;
}
 
.upload-zone:hover[b-g887oywm7m] {
    border-color: #004388;
}
 
.upload-icon[b-g887oywm7m] {
    color: #374151;
    flex-shrink: 0;
}
 
.upload-text[b-g887oywm7m] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
}
 
.upload-main[b-g887oywm7m] {
    color: #374151;
    font-size: 0.75rem;
    line-height: 1rem;
}
 
.upload-sub[b-g887oywm7m] {
    color: #374151;
    font-size: 0.625rem;
    line-height: 1rem;
}
 
.upload-limit[b-g887oywm7m] {
    color: #DF342E;
}
 
.btn-select-file[b-g887oywm7m] {
    flex-shrink: 0;
    padding: 0.375rem 0.875rem;
    background: #F5F7FA;
    border: none;
    border-radius: 1.5rem;
    color: #111827;
    font-size: 0.625rem;
    cursor: pointer;
    line-height: 1rem;
}
 
.btn-select-file:hover[b-g887oywm7m] {
    background: #E2E8F0;
}
 
.file-errors[b-g887oywm7m] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.125rem 0;
}
 
.file-error-line[b-g887oywm7m] {
    color: #DF342E;
    font-size: 0.625rem;
    font-family: var(--ff-primary);
    line-height: 0.875rem;
}
 
/* ── Radio buttons ────────────────────────────────────────── */
.radio-group[b-g887oywm7m] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 0.25rem;
    height: 2rem;
}
 
.radio-label[b-g887oywm7m] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #0F172A;
    font-size: 0.75rem;
    line-height: 1rem;
    user-select: none;
}
 
.radio-label input[type="radio"][b-g887oywm7m] {
    display: none;
}
 
.radio-custom[b-g887oywm7m] {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 1px solid #CBD5E1;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.15s;
}
 
.radio-custom[b-g887oywm7m]::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: transparent;
    transition: background 0.15s;
}
 
.radio-custom.checked[b-g887oywm7m] {
    border-color: #004388;
}
 
.radio-custom.checked[b-g887oywm7m]::after {
    background: #004388;
}
 
/* ── Disabled section ─────────────────────────────────────── */
.fields-disabled[b-g887oywm7m] {
    opacity: 0.6;
    pointer-events: none;
}
 
/* ── Footer buttons ───────────────────────────────────────── */
.calc-footer[b-g887oywm7m] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}
 
.btn-cancel[b-g887oywm7m] {
    padding: 0.5rem 0.875rem;
    min-width: 5rem;
    background: #F5F7FA;
    border: none;
    border-radius: 1.5rem;
    color: #212121;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1rem;
}
 
.btn-cancel:hover[b-g887oywm7m] {
    background: #E2E8F0;
}
 
.btn-calculate[b-g887oywm7m] {
    padding: 0.5rem 0.875rem;
    min-width: 6.25rem;
    background: #004388;
    border: none;
    border-radius: 1.5rem;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1rem;
}
 
.btn-calculate:hover[b-g887oywm7m] {
    background: #003070;
}

.btn-calculate:disabled[b-g887oywm7m] {
    background: #9CA3AF;
    cursor: not-allowed;
}

.btn-calculate:disabled:hover[b-g887oywm7m] {
    background: #9CA3AF;
}
.proj-card[b-g887oywm7m] {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #E8EBED;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
    width: 382px;
    overflow: hidden;
}

/* ── Search input row ── */
.proj-search[b-g887oywm7m] {
    padding: 8px 14px;
    border-bottom: 1px solid #E8EBED;
    background: #ffffff;
}

.proj-search input[b-g887oywm7m] {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 12px;
    color: #111827;
    font-family: var(--ff-primary);
    line-height: 16px;
}

.proj-search input[b-g887oywm7m]::placeholder {
    color: #9CA3AF;
}

/* ── Project list ── */
.proj-list[b-g887oywm7m] {
    padding: 12px 12px 0 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 220px;
    overflow-y: auto;
}

.proj-item[b-g887oywm7m] {
    font-size: 12px;
    color: #111827;
    font-family: var(--ff-primary);
    line-height: 16px;
    padding: 4px 4px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.12s;
}

.proj-item:hover[b-g887oywm7m] {
    background: #F5F7FA;
}

.proj-item.selected[b-g887oywm7m] {
    background: #E6F1FB;
    color: #004388;
    font-weight: 600;
}

.no-result[b-g887oywm7m] {
    font-size: 12px;
    color: #9CA3AF;
    padding: 4px;
}

/* ── Add project area ── */
.proj-add-row[b-g887oywm7m] {
    padding: 12px;
}

.proj-add-btn[b-g887oywm7m] {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding: 8px 14px;
    background: #F5F7FA;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    color: #004388;
    font-size: 12px;
    font-family: var(--ff-primary);
    line-height: 16px;
    transition: background 0.12s;
}

.proj-add-btn:hover[b-g887oywm7m] {
    background: #e0e8f5;
}

/* ── Inline add input row ── */
.new-proj-row[b-g887oywm7m] {
    display: flex;
    gap: 6px;
    align-items: center;
}

.new-proj-row input[b-g887oywm7m] {
    flex: 1;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 12px;
    color: #111827;
    font-family: var(--ff-primary);
    outline: none;
    transition: border-color 0.12s, box-shadow 0.12s;
}

.new-proj-row input:focus[b-g887oywm7m] {
    border-color: #378ADD;
    box-shadow: 0 0 0 2px rgba(55, 138, 221, 0.15);
}

.btn-add[b-g887oywm7m] {
    padding: 6px 12px;
    background: #004388;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-family: var(--ff-primary);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.12s;
}

.btn-add:hover[b-g887oywm7m] {
    background: #003170;
}

.btn-cancel[b-g887oywm7m] {
    padding: 6px 8px;
    background: transparent;
    color: #6B7280;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.12s;
}

.btn-cancel:hover[b-g887oywm7m] {
    background: #F5F7FA;
}.proj-card[b-g887oywm7m] {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #E8EBED;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
    width: 382px;
    overflow: hidden;
}

/* ── Search input row ── */
.proj-search[b-g887oywm7m] {
    padding: 8px 14px;
    border-bottom: 1px solid #E8EBED;
    background: #ffffff;
}

.proj-search input[b-g887oywm7m] {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 12px;
    color: #111827;
    font-family: var(--ff-primary);
    line-height: 16px;
}

.proj-search input[b-g887oywm7m]::placeholder {
    color: #9CA3AF;
}

/* ── Project list ── */
.proj-list[b-g887oywm7m] {
    padding: 12px 12px 0 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 220px;
    overflow-y: auto;
}

.proj-item[b-g887oywm7m] {
    font-size: 12px;
    color: #111827;
    font-family: var(--ff-primary);
    line-height: 16px;
    padding: 4px 4px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.12s;
}

.proj-item:hover[b-g887oywm7m] {
    background: #F5F7FA;
}

.proj-item.selected[b-g887oywm7m] {
    background: #E6F1FB;
    color: #004388;
    font-weight: 600;
}

.no-result[b-g887oywm7m] {
    font-size: 12px;
    color: #9CA3AF;
    padding: 4px;
}

/* ── Add project area ── */
.proj-add-row[b-g887oywm7m] {
    padding: 12px;
}

.proj-add-btn[b-g887oywm7m] {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding: 8px 14px;
    background: #F5F7FA;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    color: #004388;
    font-size: 12px;
    font-family: var(--ff-primary);
    line-height: 16px;
    transition: background 0.12s;
}

.proj-add-btn:hover[b-g887oywm7m] {
    background: #e0e8f5;
}

/* ── Inline add input row ── */
.new-proj-row[b-g887oywm7m] {
    display: flex;
    gap: 6px;
    align-items: center;
}

.new-proj-row input[b-g887oywm7m] {
    flex: 1;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 12px;
    color: #111827;
    font-family: var(--ff-primary);
    outline: none;
    transition: border-color 0.12s, box-shadow 0.12s;
}

.new-proj-row input:focus[b-g887oywm7m] {
    border-color: #378ADD;
    box-shadow: 0 0 0 2px rgba(55, 138, 221, 0.15);
}

.btn-add[b-g887oywm7m] {
    padding: 6px 12px;
    background: #004388;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-family: var(--ff-primary);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.12s;
}

.btn-add:hover[b-g887oywm7m] {
    background: #003170;
}

.btn-cancel[b-g887oywm7m] {
    padding: 6px 8px;
    background: transparent;
    color: #6B7280;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.12s;
}

.btn-cancel:hover[b-g887oywm7m] {
    background: #F5F7FA;
}.proj-card[b-g887oywm7m] {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #E8EBED;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
    width: 382px;
    overflow: hidden;
}

/* ── Search input row ── */
.proj-search[b-g887oywm7m] {
    padding: 8px 14px;
    border-bottom: 1px solid #E8EBED;
    background: #ffffff;
}

.proj-search input[b-g887oywm7m] {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 12px;
    color: #111827;
    font-family: var(--ff-primary);
    line-height: 16px;
}

.proj-search input[b-g887oywm7m]::placeholder {
    color: #9CA3AF;
}

/* ── Project list ── */
.proj-list[b-g887oywm7m] {
    padding: 12px 12px 0 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 220px;
    overflow-y: auto;
}

.proj-item[b-g887oywm7m] {
    font-size: 12px;
    color: #111827;
    font-family: var(--ff-primary);
    line-height: 16px;
    padding: 4px 4px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.12s;
}

.proj-item:hover[b-g887oywm7m] {
    background: #F5F7FA;
}

.proj-item.selected[b-g887oywm7m] {
    background: #E6F1FB;
    color: #004388;
    font-weight: 600;
}

.no-result[b-g887oywm7m] {
    font-size: 12px;
    color: #9CA3AF;
    padding: 4px;
}

/* ── Add project area ── */
.proj-add-row[b-g887oywm7m] {
    padding: 12px;
}

.proj-add-btn[b-g887oywm7m] {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding: 8px 14px;
    background: #F5F7FA;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    color: #004388;
    font-size: 12px;
    font-family: var(--ff-primary);
    line-height: 16px;
    transition: background 0.12s;
}

.proj-add-btn:hover[b-g887oywm7m] {
    background: #e0e8f5;
}

/* ── Inline add input row ── */
.new-proj-row[b-g887oywm7m] {
    display: flex;
    gap: 6px;
    align-items: center;
}

.new-proj-row input[b-g887oywm7m] {
    flex: 1;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 12px;
    color: #111827;
    font-family: var(--ff-primary);
    outline: none;
    transition: border-color 0.12s, box-shadow 0.12s;
}

.new-proj-row input:focus[b-g887oywm7m] {
    border-color: #378ADD;
    box-shadow: 0 0 0 2px rgba(55, 138, 221, 0.15);
}

.btn-add[b-g887oywm7m] {
    padding: 6px 12px;
    background: #004388;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-family: var(--ff-primary);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.12s;
}

.btn-add:hover[b-g887oywm7m] {
    background: #003170;
}

.btn-cancel[b-g887oywm7m] {
    padding: 6px 8px;
    background: transparent;
    color: #6B7280;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.12s;
}

.btn-cancel:hover[b-g887oywm7m] {
    background: #F5F7FA;
}
/* /Components/Pages/CalculationEdit.razor.rz.scp.css */
.dashboard-wrapper[b-em52rs0wj3] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
    padding: 1.25rem;
}

/* ── Card shell ───────────────────────────────────────────── */
.calc-card[b-em52rs0wj3] {
    background: #fff;

    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ── Header ───────────────────────────────────────────────── */
.calc-header[b-em52rs0wj3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.calc-header-left[b-em52rs0wj3] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.calc-title[b-em52rs0wj3] {
    color: #111827;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.project-icon[b-em52rs0wj3] {
    width: 2rem;
    height: 2rem;
    border: 1px solid #E2E8F0;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.project-icon:hover[b-em52rs0wj3] {
    background: #F5F7FA;
}

/* ── Info tooltips ────────────────────────────────────────── */
.info-wrap[b-em52rs0wj3] {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.info-icon[b-em52rs0wj3] {
    color: #9CA3AF;
    cursor: help;
    display: block;
}

.info-tooltip[b-em52rs0wj3] {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    background: #1F2937;
    color: #F9FAFB;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--ff-primary);
    line-height: 1.5;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    z-index: 300;
    pointer-events: none;
    white-space: normal;
}

.info-wrap:hover .info-tooltip[b-em52rs0wj3] {
    display: block;
}

.calc-type-tooltip[b-em52rs0wj3] {
    width: 280px;
}

.calc-type-tooltip strong[b-em52rs0wj3] {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #F9FAFB;
}

.calc-type-tooltip ul[b-em52rs0wj3] {
    margin: 0;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.calc-type-tooltip ul li[b-em52rs0wj3] {
    color: #F9FAFB;
    font-size: 12px;
    line-height: 1.5;
}

.calc-type-tooltip ul li strong[b-em52rs0wj3] {
    display: inline;
    margin-bottom: 0;
}

/* ── Labels ───────────────────────────────────────────────── */
.field-label[b-em52rs0wj3] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #111827;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1rem;
    padding: 0 0.25rem;
    cursor: pointer;
    user-select: none;
}
.field-error-msg[b-em52rs0wj3] {
    display: block;
    color: #DF342E;
    font-size: 11px;
    font-family: var(--ff-primary);
    margin-top: 4px;
}
.required[b-em52rs0wj3] {
    color: #DF342E;
    font-size: 0.75rem;
}

.info-icon[b-em52rs0wj3] {
    color: #111827;
    opacity: 0.6;
    cursor: help;
}

/* ── Top 3-column row ─────────────────────────────────────── */
.fields-row[b-em52rs0wj3] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.fields-row > .field-group[b-em52rs0wj3] {
    flex: 1 1 0;
    min-width: 200px;
}

/* ── 2-column row ─────────────────────────────────────────── */
.fields-row-2col[b-em52rs0wj3] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.fields-row-2col > .field-group[b-em52rs0wj3] {
    flex: 1 1 0;
    min-width: 200px;
}

/* ── Field group ──────────────────────────────────────────── */
.field-group[b-em52rs0wj3] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

/* ── Base input / select ──────────────────────────────────── */
.field-input[b-em52rs0wj3],
.field-select[b-em52rs0wj3] {
    width: 100%;
    height: 2.2rem;
    padding: 0.5rem 0.875rem;
    border-radius: 1.5rem;
    border: 1px solid #E2E8F0;
    background: #fff;
    color: #111827;
    font-size: 0.75rem;
    line-height: 1rem;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.field-input[b-em52rs0wj3]::placeholder {
    color: #9CA3AF;
}

.field-input:focus[b-em52rs0wj3],
.field-select:focus[b-em52rs0wj3] {
    border-color: #004388;
    box-shadow: 0 0 0 2px rgba(0, 67, 136, 0.1);
}

/* ── Select wrapper (adds chevron) ────────────────────────── */
.select-wrapper[b-em52rs0wj3] {
    position: relative;
    display: flex;
    align-items: center;
}

.select-wrapper .field-select[b-em52rs0wj3] {
    padding-right: 2rem;
}

.chevron-icon[b-em52rs0wj3] {
    position: absolute;
    right: 0.75rem;
    color: #6B7280;
    pointer-events: none;
}

/* ── Input with unit badge ────────────────────────────────── */
.input-with-unit[b-em52rs0wj3] {
    display: flex;
    align-items: center;
    border: 1px solid #E2E8F0;
    border-radius: 1.5rem;
    background: #fff;
    padding: 0.125rem 0.125rem 0.125rem 0.875rem;
    gap: 0.5rem;
}

.unit-input[b-em52rs0wj3] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #111827;
    font-size: 0.75rem;
    line-height: 1rem;
    min-width: 0;
}

.unit-input[b-em52rs0wj3]::placeholder {
    color: #9CA3AF;
}

.unit-input:disabled[b-em52rs0wj3] {
    color: #9CA3AF;
    cursor: not-allowed;
}

.input-with-unit:focus-within[b-em52rs0wj3] {
    border-color: #004388;
    box-shadow: 0 0 0 2px rgba(0, 67, 136, 0.1);
}

.unit-badge[b-em52rs0wj3] {
    width: 70px;
    flex-shrink: 0;
    padding: 0.375rem 1.5rem;
    background: #E2E8F0;
    border-radius: 1.5rem;
    color: #374151;
    font-size: 0.75rem;
    line-height: 1rem;
    white-space: nowrap;
}

/* Unit badge with embedded select ────────────────────────── */
.unit-select-wrap[b-em52rs0wj3] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.unit-select[b-em52rs0wj3] {
    border: none;
    background: transparent;
    color: #374151;
    font-size: 0.75rem;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.chevron-mini[b-em52rs0wj3] {
    color: #374151;
    pointer-events: none;
    flex-shrink: 0;
}

/* ── Input Details panel ──────────────────────────────────── */
.section-group[b-em52rs0wj3] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-details-panel[b-em52rs0wj3] {
    background: rgba(245, 247, 250, 0.60);
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.subsection[b-em52rs0wj3] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.divider[b-em52rs0wj3] {
    border-top: 1px solid #E8EBED;
    margin: 0;
}

/* ── File Upload ──────────────────────────────────────────── */
.upload-label-row[b-em52rs0wj3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.download-link[b-em52rs0wj3] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #111827;
    font-size: 0.625rem;
    text-decoration: underline;
    cursor: pointer;
}

.upload-row[b-em52rs0wj3] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.upload-zone[b-em52rs0wj3] {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 28rem;
    padding: 1.5rem 1.25rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
    cursor: pointer;
    min-width: 320px;
}

.upload-zone:hover[b-em52rs0wj3] {
    border-color: #004388;
}

.upload-icon[b-em52rs0wj3] {
    color: #374151;
    flex-shrink: 0;
}

.upload-text[b-em52rs0wj3] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
}

.upload-main[b-em52rs0wj3] {
    color: #374151;
    font-size: 0.75rem;
    line-height: 1rem;
}

.upload-sub[b-em52rs0wj3] {
    color: #374151;
    font-size: 0.625rem;
    line-height: 1rem;
}

.upload-limit[b-em52rs0wj3] {
    color: #DF342E;
}

.btn-select-file[b-em52rs0wj3] {
    flex-shrink: 0;
    padding: 0.375rem 0.875rem;
    background: #F5F7FA;
    border: none;
    border-radius: 1.5rem;
    color: #111827;
    font-size: 0.625rem;
    cursor: pointer;
    line-height: 1rem;
}

.btn-select-file:hover[b-em52rs0wj3] {
    background: #E2E8F0;
}

.file-errors[b-em52rs0wj3] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.125rem 0;
}

.file-error-line[b-em52rs0wj3] {
    color: #DF342E;
    font-size: 0.625rem;
    font-family: var(--ff-primary);
    line-height: 0.875rem;
}

/* ── Radio buttons ────────────────────────────────────────── */
.radio-group[b-em52rs0wj3] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 0.25rem;
    height: 2rem;
}

.radio-label[b-em52rs0wj3] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #0F172A;
    font-size: 0.75rem;
    line-height: 1rem;
    user-select: none;
}

.radio-label input[type="radio"][b-em52rs0wj3] {
    display: none;
}

.radio-custom[b-em52rs0wj3] {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 1px solid #CBD5E1;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.15s;
}

.radio-custom[b-em52rs0wj3]::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: transparent;
    transition: background 0.15s;
}

.radio-custom.checked[b-em52rs0wj3] {
    border-color: #004388;
}

.radio-custom.checked[b-em52rs0wj3]::after {
    background: #004388;
}

/* ── Disabled section ─────────────────────────────────────── */
.fields-disabled[b-em52rs0wj3] {
    opacity: 0.6;
    pointer-events: none;
}

/* ── Footer buttons ───────────────────────────────────────── */
.calc-footer[b-em52rs0wj3] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}

.btn-cancel[b-em52rs0wj3] {
    padding: 0.5rem 0.875rem;
    min-width: 5rem;
    background: #F5F7FA;
    border: none;
    border-radius: 1.5rem;
    color: #212121;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1rem;
}

.btn-cancel:hover[b-em52rs0wj3] {
    background: #E2E8F0;
}

.btn-calculate[b-em52rs0wj3] {
    padding: 0.5rem 0.875rem;
    min-width: 6.25rem;
    background: #004388;
    border: none;
    border-radius: 1.5rem;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1rem;
}

.btn-calculate:hover[b-em52rs0wj3] {
    background: #003070;
}

.proj-card[b-em52rs0wj3] {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #E8EBED;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
    width: 382px;
    overflow: hidden;
}

/* ── Search input row ── */
.proj-search[b-em52rs0wj3] {
    padding: 8px 14px;
    border-bottom: 1px solid #E8EBED;
    background: #ffffff;
}

.proj-search input[b-em52rs0wj3] {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 12px;
    color: #111827;
    font-family: var(--ff-primary);
    line-height: 16px;
}

.proj-search input[b-em52rs0wj3]::placeholder {
    color: #9CA3AF;
}

/* ── Project list ── */
.proj-list[b-em52rs0wj3] {
    padding: 12px 12px 0 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 220px;
    overflow-y: auto;
}

.proj-item[b-em52rs0wj3] {
    font-size: 12px;
    color: #111827;
    font-family: var(--ff-primary);
    line-height: 16px;
    padding: 4px 4px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.12s;
}

.proj-item:hover[b-em52rs0wj3] {
    background: #F5F7FA;
}

.proj-item.selected[b-em52rs0wj3] {
    background: #E6F1FB;
    color: #004388;
    font-weight: 600;
}

.no-result[b-em52rs0wj3] {
    font-size: 12px;
    color: #9CA3AF;
    padding: 4px;
}

/* ── Add project area ── */
.proj-add-row[b-em52rs0wj3] {
    padding: 12px;
}

.proj-add-btn[b-em52rs0wj3] {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding: 8px 14px;
    background: #F5F7FA;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    color: #004388;
    font-size: 12px;
    font-family: var(--ff-primary);
    line-height: 16px;
    transition: background 0.12s;
}

.proj-add-btn:hover[b-em52rs0wj3] {
    background: #e0e8f5;
}

/* ── Inline add input row ── */
.new-proj-row[b-em52rs0wj3] {
    display: flex;
    gap: 6px;
    align-items: center;
}

.new-proj-row input[b-em52rs0wj3] {
    flex: 1;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 12px;
    color: #111827;
    font-family: var(--ff-primary);
    outline: none;
    transition: border-color 0.12s, box-shadow 0.12s;
}

.new-proj-row input:focus[b-em52rs0wj3] {
    border-color: #378ADD;
    box-shadow: 0 0 0 2px rgba(55, 138, 221, 0.15);
}

.btn-add[b-em52rs0wj3] {
    padding: 6px 12px;
    background: #004388;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-family: var(--ff-primary);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.12s;
}

.btn-add:hover[b-em52rs0wj3] {
    background: #003170;
}

.btn-cancel[b-em52rs0wj3] {
    padding: 6px 8px;
    background: transparent;
    color: #6B7280;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.12s;
}

.btn-cancel:hover[b-em52rs0wj3] {
    background: #F5F7FA;
}
/* /Components/Pages/CalculationOutput.razor.rz.scp.css */
.dashboard-wrapper[b-ffep97dfbc] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
    padding: 1.25rem;
}
/* CalculationHeader.razor.css — Blazor CSS isolation file.
   Place next to CalculationHeader.razor; styles apply only to this component. */

.calc-header[b-ffep97dfbc] {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 16px;
    padding: 1.25rem;
    
}

/* ---------- Left section ---------- */

.calc-header__left[b-ffep97dfbc] {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0; /* allow title/meta to truncate on small widths */
}

.calc-header__title[b-ffep97dfbc] {
    color: #111827;
    font-size: 16px;
    font-weight: 700;
    line-height: 22.4px;
    white-space: nowrap;
}

.calc-header__divider[b-ffep97dfbc] {
    width: 1px;
    height: 16px;
    background: #CBD5E1;
    flex-shrink: 0;
}

.calc-header__meta[b-ffep97dfbc] {
    color: #212121;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---------- Right section ---------- */

.calc-header__actions[b-ffep97dfbc] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Shared base for all buttons */
.calc-header button[b-ffep97dfbc] {
    border: none;
    margin: 0;
    cursor: pointer;
    font-family: inherit;
}

/* Round 32x32 icon-only button (info, star, delete) */
.icon-btn[b-ffep97dfbc] {
    width: 32px;
    height: 32px;
    background: #FFFFFF;
    border-radius: 24px;
    outline: 1px solid #E2E8F0;
    outline-offset: -1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease;
}
.delete-btn[b-ffep97dfbc] {
    color: #DF342E;
}

.icon-btn:hover[b-ffep97dfbc] {
    background: #F8FAFC;
}

.icon-btn--danger:hover[b-ffep97dfbc] {
    background: #FEF2F2;
}

/* Pill button with icon + label (Excel, Edit) */
.pill-btn[b-ffep97dfbc] {
    height: 32px;
    padding: 8px 16px 8px 14px;
    background: #FFFFFF;
    border-radius: 24px;
    outline: 1px solid #E2E8F0;
    outline-offset: -1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #004388;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    transition: background-color 0.15s ease;
}

.pill-btn:hover[b-ffep97dfbc] {
    background: #F0F5FA;
}

.pill-btn:disabled[b-ffep97dfbc] {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* PDF split button: main action + dropdown toggle */
.split-btn[b-ffep97dfbc] {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding-right: 2px;
    background: #FFFFFF;
    border-radius: 24px;
    outline: 1px solid #E2E8F0;
    outline-offset: -1px;
    overflow: hidden;
}

.split-btn__main[b-ffep97dfbc] {
    height: 100%;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #fff;
    color: #004388;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    transition: background-color 0.15s ease;
}

.split-btn__main:hover[b-ffep97dfbc] {
    background: #F0F5FA;
}

.split-btn__toggle[b-ffep97dfbc] {
    width: 28px;
    height: 28px;
    background: rgba(204, 217, 231, 0.30);
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease;
}

.split-btn__toggle:hover[b-ffep97dfbc] {
    background: rgba(204, 217, 231, 0.55);
}

/* Keyboard focus visibility */
.calc-header button:focus-visible[b-ffep97dfbc] {
    outline: 2px solid #004388;
    outline-offset: 1px;
}
.page__body[b-ffep97dfbc] {
     display: flex;
    height: 90%;
    align-items: flex-start;
}
.page__main[b-ffep97dfbc] {
    height: 96%;
    flex: 1 1 0;
    margin: 1rem;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
}

/* Flex container: left Y-axis (fixed) + right scrollable chart */
.chart-outer[b-ffep97dfbc] {
    display: flex;
    align-items: stretch;   /* both SVGs share the same rendered height */
    width: 100%;
    background: #FFFFFF;
    box-sizing: border-box;
}

/* Fixed Y-axis — never scrolls */
.chart-yaxis-svg[b-ffep97dfbc] {
    display: block;
    flex-shrink: 0;
    width: 80px;
    /* preserveAspectRatio="none" (set on element) lets this SVG stretch
       vertically to match the chart SVG height, keeping label positions
       proportionally aligned at every container width */
}

/* Wrapper that owns the horizontal scrollbar */
.chart-scroll-area[b-ffep97dfbc] {
    flex: 1 1 0;
    overflow-x: auto;
    min-width: 0;
}

/* Scrollable chart SVG; min-width is set via inline style by Blazor */
.chart-content-svg[b-ffep97dfbc] {
    display: block;
    width: 100%;
    height: auto;
}

/* Fixed right Y-axis (Wet Bulb only) — mirrors .chart-yaxis-svg */
.chart-yaxis-right-svg[b-ffep97dfbc] {
    display: block;
    flex-shrink: 0;
    width: 80px;
}

.chart-placeholder[b-ffep97dfbc] {
    padding: 3rem;
    color: #6B7280;
    text-align: center;
}

.chart-loading-placeholder[b-ffep97dfbc] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    width: 100%;
}

.chart-loading-gif[b-ffep97dfbc] {
    width: 60px;
    height: 60px;
}

.chart-labels[b-ffep97dfbc] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 2px;
    padding-top: 12px;
    font-size: 10px;
    color: #6B7280;
}

.chart-labels span[b-ffep97dfbc] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Remarks Panel */
.page__body > :last-child[b-ffep97dfbc] {
    width: 20rem;
    flex-shrink: 0;
}

/* ── Chart window / pan slider ── */
.chart-window-bar[b-ffep97dfbc] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 16px 6px;
    border-top: 1px solid #E8EDF2;
    background: #FAFBFC;
}

.chart-window-info[b-ffep97dfbc] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #6B7280;
    font-weight: 500;
}

.chart-window-slider[b-ffep97dfbc] {
    width: 100%;
    accent-color: #00A6E2;
    cursor: pointer;
    height: 4px;
}

.chart-window-ends[b-ffep97dfbc] {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #9CA3AF;
}

.fft-panel-plotly-host[b-ffep97dfbc] {
    width: 100%;
    height: 100%;
    min-height: 0;
    flex: 1 1 0;
}
/* /Components/Pages/Configurations.razor.rz.scp.css */
/* ── Page wrapper ──────────────────────────────────────────── */
.config-wrapper[b-wkomd9rjdx] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    height: 100%;
    box-sizing: border-box;
    background: #F8F9FB;
}

/* ── Header ────────────────────────────────────────────────── */
.config-header[b-wkomd9rjdx] {
    display: flex;
    align-items: center;
}

.config-header-left[b-wkomd9rjdx] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.back-btn[b-wkomd9rjdx] {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    transition: background 0.15s;
    flex-shrink: 0;
}

.back-btn:hover[b-wkomd9rjdx] {
    background: #F5F7FA;
}

.config-title[b-wkomd9rjdx] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    font-family: var(--ff-primary);
}

/* ── Card ──────────────────────────────────────────────────── */
.config-card[b-wkomd9rjdx] {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1.5rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ── Field ─────────────────────────────────────────────────── */
.config-field[b-wkomd9rjdx] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.config-label[b-wkomd9rjdx] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    font-family: var(--ff-primary);
}

.info-wrap[b-wkomd9rjdx] {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.info-icon[b-wkomd9rjdx] {
    color: #9CA3AF;
    cursor: help;
    display: block;
}

.info-tooltip[b-wkomd9rjdx] {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 190px;
    background: #1F2937;
    color: #F9FAFB;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--ff-primary);
    line-height: 1.5;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    z-index: 300;
    pointer-events: none;
    white-space: normal;
}

/* Arrow pointing up */
.info-tooltip[b-wkomd9rjdx]::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: #1F2937;
}

.info-wrap:hover .info-tooltip[b-wkomd9rjdx] {
    display: block;
}

.config-textarea[b-wkomd9rjdx] {
    width: 100%;
    min-height: 120px;
    padding: 0.75rem 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 13px;
    font-family: var(--ff-primary);
    color: #374151;
    background: #fff;
    resize: vertical;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s;
    line-height: 1.6;
}

.config-textarea[b-wkomd9rjdx]::placeholder {
    color: #9CA3AF;
}

.config-textarea.loading[b-wkomd9rjdx] {
    background: #F9FAFB;
    color: #9CA3AF;
}

.config-textarea:focus[b-wkomd9rjdx] {
    border-color: #004388;
    box-shadow: 0 0 0 3px rgba(0, 67, 136, 0.10);
}

.config-textarea--over[b-wkomd9rjdx] {
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.10);
}

.char-count[b-wkomd9rjdx] {
    align-self: flex-end;
    font-size: 11px;
    color: #9CA3AF;
    font-family: var(--ff-primary);
    margin-top: 4px;
}

.char-count--over[b-wkomd9rjdx] { color: #DC2626; font-weight: 600; }


/* ── Footer / Save button ──────────────────────────────────── */
.config-footer[b-wkomd9rjdx] {
    display: flex;
    justify-content: flex-end;
}

.btn-save[b-wkomd9rjdx] {
    padding: 0.5rem 1.75rem;
    background: #004388;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--ff-primary);
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.15s, opacity 0.15s;
}

.btn-save:hover:not(:disabled)[b-wkomd9rjdx] {
    background: #003370;
}

.btn-save:disabled[b-wkomd9rjdx],
.btn-save.saving[b-wkomd9rjdx] {
    opacity: 0.65;
    cursor: not-allowed;
}
/* /Components/Pages/Faqs.razor.rz.scp.css */
/* ── Page wrapper ─────────────────────────────────────────── */
.faqs-wrapper[b-vjbnaaljuh] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    box-sizing: border-box;
    height: 100%;
    background: #F8F9FB;
}

/* ── Header ───────────────────────────────────────────────── */
.faqs-header[b-vjbnaaljuh] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faqs-header-left[b-vjbnaaljuh] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.back-btn[b-vjbnaaljuh] {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #111827;
    transition: background 0.15s;
    flex-shrink: 0;
}

.back-btn:hover[b-vjbnaaljuh] { background: #F1F5F9; }

.faqs-title[b-vjbnaaljuh] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    font-family: var(--ff-primary);
}

/* ── Search bar ───────────────────────────────────────────── */
.faqs-search[b-vjbnaaljuh] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    background: #fff;
    min-width: 220px;
}

.faqs-search:focus-within[b-vjbnaaljuh] { border-color: #004388; }

.search-icon[b-vjbnaaljuh] { color: #9CA3AF; flex-shrink: 0; }

.search-input[b-vjbnaaljuh] {
    border: none;
    outline: none;
    font-size: 13px;
    font-family: var(--ff-primary);
    color: #374151;
    background: transparent;
    width: 100%;
}

.search-input[b-vjbnaaljuh]::placeholder { color: #9CA3AF; }

/* ── Section heading with right-extending rule ────────────── */
.section-heading[b-vjbnaaljuh] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.section-heading-text[b-vjbnaaljuh] {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #374151;
    font-family: var(--ff-primary);
    white-space: nowrap;
}

.section-heading-line[b-vjbnaaljuh] {
    flex: 1;
    height: 1px;
    background: #E2E8F0;
}

/* ── FAQ card ─────────────────────────────────────────────── */
.faqs-card[b-vjbnaaljuh] {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
}

/* Question list scrolls within its own area — header and Contact Details
   stay on screen instead of the whole page scrolling past them. */
.faq-list[b-vjbnaaljuh] {
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
}

/* ── Divider between items ────────────────────────────────── */
.faq-divider[b-vjbnaaljuh] {
    height: 1px;
    background: #E2E8F0;
    margin: 0;
}

/* ── Individual FAQ item ──────────────────────────────────── */
.faq-item[b-vjbnaaljuh] {
    padding: 1.125rem 1.5rem;
    cursor: pointer;
    transition: background 0.12s;
    user-select: none;
}

.faq-item.open[b-vjbnaaljuh] {
    background: #F8F9FB;
}

.faq-item:hover:not(.open)[b-vjbnaaljuh] {
    background: #FAFAFA;
}

/* ── Question row ─────────────────────────────────────────── */
.faq-row[b-vjbnaaljuh] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.faq-chevron[b-vjbnaaljuh] {
    color: #004388;
    flex-shrink: 0;
}

.faq-question[b-vjbnaaljuh] {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    font-family: var(--ff-primary);
    line-height: 1.4;
}

/* ── Answer — indented to align with question text ────────── */
.faq-answer[b-vjbnaaljuh] {
    margin: 0.75rem 0 0.25rem calc(20px + 0.625rem);
    font-size: 13px;
    color: #6B7280;
    font-family: var(--ff-primary);
    line-height: 1.7;
}

/* ── Contact card ─────────────────────────────────────────── */
.contact-card[b-vjbnaaljuh] {
    padding: 1.125rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-name[b-vjbnaaljuh] {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    font-family: var(--ff-primary);
}

.contact-email[b-vjbnaaljuh] {
    font-size: 13px;
    color: #6B7280;
    font-family: var(--ff-primary);
    text-decoration: none;
}

.contact-email:hover[b-vjbnaaljuh] { color: #004388; text-decoration: underline; }

/* ── Empty search state ───────────────────────────────────── */
.no-results[b-vjbnaaljuh] {
    padding: 1.5rem;
    font-size: 13px;
    color: #9CA3AF;
    font-family: var(--ff-primary);
    font-style: italic;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.dashborad-wrapper[b-oerkzg5e5y]{
        display: flex;
    flex-direction: column;
    gap:1.25rem;
    height: 100%;
    padding: 1.25rem;
    background: #CCD9E714;
}

.toolbar[b-oerkzg5e5y] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px;
    padding: 1.25rem;
}

/* ── Tab toggle ── */
.tab-toggle[b-oerkzg5e5y] {
    display: flex;
    align-items: center;
    padding: 2px;
    background: #fff;
    border-radius: 24px;
    outline: 1px solid #E2E8F0;
}

.tab-btn[b-oerkzg5e5y] {
    width: 108px;
    padding: 6px 10px 6px 12px;
    border: none;
    border-radius: 24px;
    background: transparent;
    color: #9CA3AF;
    font-size: 12px;
    font-family: var(--ff-primary);
    font-weight: 700;
    line-height: 16px;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
}

.tab-btn--active[b-oerkzg5e5y] {
    background: #004388;
    color: #fff;
}

/* ── Actions row ── */
.toolbar__actions[b-oerkzg5e5y] {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Shared pill ── */
.pill[b-oerkzg5e5y] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px 8px 14px;
    background: #fff;
    border-radius: 24px;
    outline: 1px solid #E2E8F0;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

/* Search pill wraps an <input> */
.pill--input[b-oerkzg5e5y] {
    gap: 8px;
    padding: 8px 20px 8px 14px;
}

.pill--input input[b-oerkzg5e5y] {
    border: none;
    outline: none;
    font-size: 12px;
    font-family: var(--ff-primary);
    color: #374151;
    background: transparent;
    width: 180px;
}

.pill--input input[b-oerkzg5e5y]::placeholder { color: #9CA3AF; }

/* Outlined blue (New Project) */
.pill--outline-blue[b-oerkzg5e5y] {
    gap: 6px;
    padding: 8px 16px 8px 14px;
}

/* Solid blue (New Calculation) */
.pill--solid-blue[b-oerkzg5e5y] {
    gap: 6px;
    padding: 8px 16px 8px 14px;
    background: #004388;
    outline: none;
}

/* ── Labels ── */
.pill__label[b-oerkzg5e5y] {
    font-size: 12px;
    font-family: var(--ff-primary);
    font-weight: 700;
    line-height: 16px;
}

.pill__label--dark[b-oerkzg5e5y]  { color: #374151; }
.pill__label--blue[b-oerkzg5e5y]  { color: #004388; }
.pill__label--white[b-oerkzg5e5y] { color: #ffffff; }





/* ── Toggle pill ── */
.toggle-pill[b-oerkzg5e5y] {
    height: 32px;
    padding: 8px 6px 8px 14px;
    background: #F5F7FA;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
}

.toggle-pill__label[b-oerkzg5e5y] {
    color: #374151;
    font-size: 12px;
    font-family: var(--ff-primary);
    font-weight: 400;
    line-height: 16px;
    white-space: nowrap;
}

/* ── Switch track ── */
.toggle-pill__switch[b-oerkzg5e5y] {
    position: relative;
    width: 34px;
    height: 20px;
    padding: 0.67px;
    background: rgba(120, 120, 128, 0.16);
    border-radius: 66px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.22s ease;
    flex-shrink: 0;
}

.toggle-pill__switch--on[b-oerkzg5e5y] {
    background: #004388;
}

/* ── Thumb ── */
.toggle-pill__thumb[b-oerkzg5e5y] {
    position: absolute;
    left: 0.67px;
    width: 18.67px;
    height: 18.67px;
    background: white;
    border-radius: 50%;
    box-shadow: 0px 0.67px 1.33px rgba(0,0,0,0.20),
                0px 0.07px 0.20px rgba(0,0,0,0.10);
    outline: 0.33px solid rgba(0,0,0,0.04);
    transition: left 0.22s ease;
}

.toggle-pill__switch--on .toggle-pill__thumb[b-oerkzg5e5y] {
    left: calc(100% - 19.33px);
}
.projects-grid[b-oerkzg5e5y] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    align-content: start;
    gap: 16px;
    padding: 0 1.25rem 0 1.25rem;
    min-height: 600px;
}
/* ── Field wrapper ───────────────────────────────────────────────────────── */
 
.ap-field[b-oerkzg5e5y] {
    width: 240px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
 
/* Full-width field (Additional Details) */
.ap-field--full[b-oerkzg5e5y] {
    width: 100%;
}
 
/* ── Label row ───────────────────────────────────────────────────────────── */
 
.ap-label[b-oerkzg5e5y] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 4px;
}
 
.ap-label__text[b-oerkzg5e5y] {
    color: #111827;
    font-size: 12px;
    font-family: var(--ff-primary);
    font-weight: 400;
    line-height: 1.33;
}
 
.ap-label__required[b-oerkzg5e5y] {
    color: #DF342E;
    font-size: 12px;
    font-family: var(--ff-primary);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.12px;
}
 
.ap-label__optional[b-oerkzg5e5y] {
    color: #6B7280;
    font-size: 12px;
    font-family: var(--ff-primary);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.12px;
}
 
.ap-label__icon[b-oerkzg5e5y] {
    display: flex;
    align-items: center;
    cursor: help;
    opacity: 0.7;
    transition: opacity 0.15s;
}
 
.ap-label__icon:hover[b-oerkzg5e5y] {
    opacity: 1;
}
 
/* ── Text input ──────────────────────────────────────────────────────────── */
 
.ap-input[b-oerkzg5e5y] {
    width: 100%;
    padding: 8px 14px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    color: #111827;
    font-size: 12px;
    font-family: var(--ff-primary);
    font-weight: 400;
    line-height: 1.33;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s;
}
 
.ap-input[b-oerkzg5e5y]::placeholder {
    color: #9CA3AF;
}
 
.ap-input:focus[b-oerkzg5e5y] {
    border-color: #004388;
    box-shadow: 0 0 0 3px rgba(0, 67, 136, 0.12);
}
 
/* ── Textarea ────────────────────────────────────────────────────────────── */
 
.ap-textarea[b-oerkzg5e5y] {
    width: 100%;
    height: 72px;
    padding: 8px 14px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    color: #111827;
    font-size: 12px;
    font-family: var(--ff-primary);
    font-weight: 400;
    line-height: 1.33;
    outline: none;
    resize: vertical;
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s;
}
 
.ap-textarea[b-oerkzg5e5y]::placeholder {
    color: #9CA3AF;
}
 
.ap-textarea:focus[b-oerkzg5e5y] {
    border-color: #004388;
    box-shadow: 0 0 0 3px rgba(0, 67, 136, 0.12);
}
 
.fm-field[b-oerkzg5e5y] {
    width: 240px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
 
/* ── Label ───────────────────────────────────────────────────────────────── */
 
.fm-label[b-oerkzg5e5y] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 4px;
}
 
.fm-label__text[b-oerkzg5e5y] {
    color: #111827;
    font-size: 12px;
    font-family: var(--ff-primary);
    font-weight: 400;
    line-height: 1.33;
}
 
/* ── Select wrapper (positions chevron over native select) ───────────────── */
 
.fm-select-wrapper[b-oerkzg5e5y] {
    position: relative;
    display: flex;
    align-items: center;
}
 
.fm-select[b-oerkzg5e5y] {
    width: 100%;
    padding: 8px 36px 8px 14px;   /* right padding leaves room for chevron */
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    color: #111827;
    font-size: 12px;
    font-family: var(--ff-primary);
    font-weight: 400;
    line-height: 1.33;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s;
}
 
/* Placeholder-like colour when nothing is selected */
.fm-select:invalid[b-oerkzg5e5y],
.fm-select option[value=""][b-oerkzg5e5y] {
    color: #9CA3AF;
}
 
.fm-select:focus[b-oerkzg5e5y] {
    border-color: #004388;
    box-shadow: 0 0 0 3px rgba(0, 67, 136, 0.12);
}
 
/* Custom chevron icon */
.fm-chevron[b-oerkzg5e5y] {
    position: absolute;
    right: 12px;
    pointer-events: none;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
 
.fm-select-wrapper:focus-within .fm-chevron[b-oerkzg5e5y] {
    transform: rotate(180deg);
}


.filter-modal-backdrop[b-oerkzg5e5y] {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.40);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: backdropIn-b-oerkzg5e5y 0.18s ease;
}

@keyframes backdropIn-b-oerkzg5e5y {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.filter-modal-box[b-oerkzg5e5y] {
    animation: modalIn-b-oerkzg5e5y 0.22s cubic-bezier(0.34, 1.28, 0.64, 1);
}

@keyframes modalIn-b-oerkzg5e5y {
    from { opacity: 0; transform: translateY(-10px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.loader-wrapper[b-oerkzg5e5y] {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    width: 100%;
}

.loader-gif[b-oerkzg5e5y] {
    width: 80px;
    height: 80px;
}

.no-project-state[b-oerkzg5e5y] {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    gap: 0.75rem;
    text-align: center;
}

.no-project-img[b-oerkzg5e5y] {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.no-project-title[b-oerkzg5e5y] {
    color: #111827;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.no-project-desc[b-oerkzg5e5y] {
    color: #6B7280;
    font-size: 0.75rem;
    line-height: 1.5;
    max-width: 320px;
    margin: 0;
}
/* /Components/Pages/Login.razor.rz.scp.css */
/* ── Page ──────────────────────────────────────────────── */
.login-page[b-g0nrrhr5lm] {
    width: 100vw;
    height: 100vh;
    background: #ECF0F6;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

/* ── Card ──────────────────────────────────────────────── */
.login-card[b-g0nrrhr5lm] {
    width: 420px;
    padding: 44px 40px 40px;
    background: #ffffff;
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    box-sizing: border-box;
}

/* ── Logo ──────────────────────────────────────────────── */
.thermo-logo[b-g0nrrhr5lm] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 28px;
}

/* ── Content ───────────────────────────────────────────── */
.content-section[b-g0nrrhr5lm] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.login-heading[b-g0nrrhr5lm] {
    margin: 0 0 10px 0;
    text-align: center;
    color: #111827;
    font-family: var(--ff-primary);
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
}

.login-text[b-g0nrrhr5lm] {
    margin: 0;
    text-align: center;
    color: #6B7280;
    font-family: var(--ff-primary);
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    padding: 0 4px;
}

/* ── Button ────────────────────────────────────────────── */
.button-wrapper[b-g0nrrhr5lm] {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.microsoft-btn[b-g0nrrhr5lm] {
    display: inline-block;
    padding: 10px 32px;
    background: #004388;
    border: none;
    border-radius: 24px;
    color: #ffffff;
    font-family: var(--ff-primary);
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.microsoft-btn:hover[b-g0nrrhr5lm] {
    background: #003370;
    color: #ffffff;
    text-decoration: none;
}

/* ── Login loader overlay ──────────────────────────────── */
.login-loader-overlay[b-g0nrrhr5lm] {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.60);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(1px);
}

.login-loader-gif[b-g0nrrhr5lm] {
    width: 80px;
    height: 80px;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 480px) {
    .login-card[b-g0nrrhr5lm] {
        width: 100%;
        max-width: 420px;
        padding: 32px 24px 28px;
    }
}
/* /Components/Pages/ProjectDetails.razor.rz.scp.css */
.proj-loader-wrapper[b-rv5kwjm5wg] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    width: 100%;
}

.proj-loader-gif[b-rv5kwjm5wg] {
    width: 80px;
    height: 80px;
}

.dashborad-wrapper[b-rv5kwjm5wg]{
        display: flex;
    flex-direction: column;
    gap:1.25rem;
    height: 100%;
    padding: 1.25rem;
}
.project-header[b-rv5kwjm5wg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    border-radius: 1rem;
    padding :1.25rem;
}

.project-header-left[b-rv5kwjm5wg] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.project-icon[b-rv5kwjm5wg] {
    width: 2rem;
    height: 2rem;
    border: 1px solid #E2E8F0;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon i[b-rv5kwjm5wg] {
    font-size: 0.875rem;
    color: #111827;
}

.project-title[b-rv5kwjm5wg] {
    margin: 0;
    color: #111827;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.project-actions[b-rv5kwjm5wg] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn[b-rv5kwjm5wg] {
    height: 2rem;
    padding: 0 1rem;
    background: #fff;
    border-radius: 1.5rem;
    border: 1px solid #E2E8F0;

    display: flex;
    align-items: center;
    gap: 0.5rem;

    color: #004388;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
}

.edit-btn[b-rv5kwjm5wg] {
    border-color: #CCD9E7;
}

.active-btn[b-rv5kwjm5wg] {
    border-color: #CCD9E7;
    color: #007D4E;
}

.icon-btn[b-rv5kwjm5wg] {
    width: 2rem;
    height: 2rem;

    border: 1px solid #E2E8F0;
    border-radius: 50%;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.delete-btn[b-rv5kwjm5wg] {
    color: #DF342E;
}

.action-btn:hover[b-rv5kwjm5wg],
.icon-btn:hover[b-rv5kwjm5wg] {
    opacity: 0.9;
}
/* /Components/Pages/Users.razor.rz.scp.css */
/* ── Page wrapper ───────────────────────────────────────── */
.um-wrapper[b-lefpnulpk2] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    box-sizing: border-box;
    background: #F8F9FB;
}

/* ── Header ─────────────────────────────────────────────── */
.um-header[b-lefpnulpk2] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.um-header-left[b-lefpnulpk2] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.um-back-btn[b-lefpnulpk2] {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #111827;
    transition: background 0.15s;
    flex-shrink: 0;
}

.um-back-btn:hover[b-lefpnulpk2] { background: #F1F5F9; }

.um-title[b-lefpnulpk2] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    font-family: var(--ff-primary);
}

/* ── Table card ─────────────────────────────────────────── */
.um-card[b-lefpnulpk2] {
    flex: 1;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: auto;
}

/* ── Table ──────────────────────────────────────────────── */
.um-table[b-lefpnulpk2] {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--ff-primary);
}

/* Header */
.um-table thead tr[b-lefpnulpk2] {
    background: #F5F7FA;
    border-bottom: 1px solid #E2E8F0;
}

.um-th[b-lefpnulpk2] {
    padding: 0.875rem 1.25rem;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    text-align: left;
    white-space: nowrap;
    user-select: none;
}

.um-th:hover[b-lefpnulpk2] { background: #EEF2F7; }

.um-th-inner[b-lefpnulpk2] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Rows */
.um-row[b-lefpnulpk2] {
    border-bottom: 1px solid #E2E8F0;
    transition: background 0.1s;
}

.um-row:last-child[b-lefpnulpk2] { border-bottom: none; }
.um-row:hover[b-lefpnulpk2] { background: #FAFAFA; }

.um-td[b-lefpnulpk2] {
    padding: 0.9375rem 1.25rem;
    font-size: 13px;
    color: #374151;
    font-family: var(--ff-primary);
    vertical-align: middle;
}

/* State cells */
.um-td-state[b-lefpnulpk2] {
    text-align: center;
    padding: 0;
    color: #9CA3AF;
    font-size: 13px;
    font-family: var(--ff-primary);
}

.um-loader-center[b-lefpnulpk2] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}
/* /Components/Pagination/Pagination.razor.rz.scp.css */
.pagination-container[b-hn4p3248if] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    padding: 0.875rem 1.25rem;
}

/* Classic "Showing X–Y of Z" label (Home page) */
.pg-info[b-hn4p3248if] {
    margin: 0;
    font-size: 12px;
    color: #6B7280;
    font-family: var(--ff-primary);
}

/* ── Rows per page ──────────────────────────────────────── */
.pg-rows-wrap[b-hn4p3248if] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pg-rows-label[b-hn4p3248if] {
    font-size: 13px;
    color: #6B7280;
    font-family: var(--ff-primary);
    white-space: nowrap;
}

.pg-rows-select[b-hn4p3248if] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    font-family: var(--ff-primary);
    color: #111827;
    user-select: none;
    transition: border-color 0.15s;
}

.pg-rows-select:hover[b-hn4p3248if],
.pg-rows-select.open[b-hn4p3248if] { border-color: #004388; }

.pg-size-drop[b-hn4p3248if] {
    position: absolute;
    bottom: calc(100% + 4px);
    left: 0;
    min-width: 100%;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    overflow: hidden;
    z-index: 200;
}

.pg-size-opt[b-hn4p3248if] {
    padding: 7px 14px;
    font-size: 13px;
    font-family: var(--ff-primary);
    color: #374151;
    cursor: pointer;
    transition: background 0.1s;
}

.pg-size-opt:hover[b-hn4p3248if]  { background: #F5F7FA; }
.pg-size-opt.active[b-hn4p3248if] { background: #EEF4FF; color: #004388; font-weight: 600; }

/* ── Page buttons ───────────────────────────────────────── */
.pagination-wrap[b-hn4p3248if] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pg-btn[b-hn4p3248if] {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid #E8EBED;
    background: #ffffff;
    color: #111827;
    font-size: 13px;
    font-family: var(--ff-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.12s, border-color 0.12s;
}

.pg-btn:hover:not(:disabled)[b-hn4p3248if] {
    background: #F5F7FA;
    border-color: #D1D5DB;
}

.pg-btn:disabled[b-hn4p3248if] {
    color: #C4CACC;
    border-color: #F0F2F4;
    cursor: not-allowed;
}

.pg-btn.active[b-hn4p3248if] {
    background: #004388;
    color: #ffffff;
    border-color: #004388;
    font-weight: 600;
}

.pg-arrow[b-hn4p3248if] { padding: 0; width: 34px; }

.pg-dots[b-hn4p3248if] {
    min-width: 28px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-size: 13px;
}
/* /Components/ProjectContributors/ProjectContributors.razor.rz.scp.css */
/* ── Wrapper ──────────────────────────────────────────────────────── */
.pc-wrap[b-tc37iub3ra] {
    position: relative;
    display: flex;
    align-items: center;
}

/* ── Trigger ─────────────────────────────────────────────────────── */
.pc-trigger[b-tc37iub3ra] {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
}

.pc-trigger--empty[b-tc37iub3ra] {
    pointer-events: none;
    cursor: default;
}

/* ── Avatar stack ─────────────────────────────────────────────────── */
.pc-avatar-stack[b-tc37iub3ra] {
    display: flex;
    align-items: center;
}

.pc-avatar-stack .pc-avatar + .pc-avatar[b-tc37iub3ra] {
    margin-left: -4px;
}

.pc-avatar[b-tc37iub3ra] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: #F5F7FA !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280 !important;
    font-size: 9px;
    font-family: var(--ff-primary);
    font-weight: 700;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* ── "+N More" label ─────────────────────────────────────────────── */
.pc-more[b-tc37iub3ra] {
    color: #6B7280;
    font-size: 10px;
    font-family: var(--ff-primary);
    font-weight: 400;
    white-space: nowrap;
}

/* ── Full-screen overlay to capture outside clicks ───────────────── */
.pc-overlay[b-tc37iub3ra] {
    position: fixed;
    inset: 0;
    z-index: 399;
    background: transparent;
}

/* ── Popover panel ────────────────────────────────────────────────── */
.pc-popover[b-tc37iub3ra] {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 400;
    width: 300px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* Arrow caret pointing up */
.pc-popover[b-tc37iub3ra]::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 14px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-left: 1px solid #E2E8F0;
    border-top: 1px solid #E2E8F0;
    border-radius: 2px 0 0 0;
    transform: rotate(45deg);
}

/* ── Popover header ──────────────────────────────────────────────── */
.pc-popover__header[b-tc37iub3ra] {
    padding: 12px 16px 10px;
    font-family: var(--ff-primary);
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    border-bottom: 1px solid #F1F5F9;
}

/* ── Scrollable list ──────────────────────────────────────────────── */
.pc-popover__list[b-tc37iub3ra] {
    max-height: 240px;
    overflow-y: auto;
    overflow-x: hidden;
}

.pc-popover__list[b-tc37iub3ra]::-webkit-scrollbar {
    width: 4px;
}

.pc-popover__list[b-tc37iub3ra]::-webkit-scrollbar-track {
    background: transparent;
}

.pc-popover__list[b-tc37iub3ra]::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}

/* ── Contributor row ─────────────────────────────────────────────── */
.pc-popover__row[b-tc37iub3ra] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    transition: background 0.1s ease;
}

.pc-popover__row:hover[b-tc37iub3ra] {
    background: #F8FAFC;
}

/* ── Row avatar ──────────────────────────────────────────────────── */
.pc-popover__avatar[b-tc37iub3ra] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-family: var(--ff-primary);
    font-weight: 700;
    flex-shrink: 0;
}

/* ── Name ────────────────────────────────────────────────────────── */
.pc-popover__name[b-tc37iub3ra] {
    flex: 1;
    color: #111827;
    font-size: 12px;
    font-family: var(--ff-primary);
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── Relative time ───────────────────────────────────────────────── */
.pc-popover__time[b-tc37iub3ra] {
    color: #6B7280;
    font-size: 11px;
    font-family: var(--ff-primary);
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
}
/* /Components/ProjectDropdown/ProjectDropdown.razor.rz.scp.css */
.proj-select-wrapper[b-agtpf903x3] {
    display: inline-flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    
}

.proj-overlay[b-agtpf903x3] {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: transparent;
}

.proj-select-trigger[b-agtpf903x3] {
        width: 100%;
    padding: 10px 10px 10px 14px;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 1.5rem;

    font-size: 12px;
    font-family: var(--ff-primary);
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.15s ease;
}

.proj-select-trigger:hover[b-agtpf903x3] {
    border-color: #004388;
}

.proj-select-label[b-agtpf903x3] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.proj-chevron[b-agtpf903x3] {
    color: #6B7280;
}

.proj-card[b-agtpf903x3] {
    position: absolute;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #E8EBED;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    overflow: hidden;
    z-index: 100;
}

/* ── Search input row ── */
.proj-search[b-agtpf903x3] {
    padding: 8px 14px;
    border-bottom: 1px solid #E8EBED;
    background: #ffffff;
}

.proj-search input[b-agtpf903x3] {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 12px;
    color: #111827;
    font-family: var(--ff-primary);
    line-height: 16px;
}

.proj-search input[b-agtpf903x3]::placeholder {
    color: #9CA3AF;
}

/* ── Project list ── */
.proj-list[b-agtpf903x3] {
    padding: 12px 12px 0 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 220px;
    overflow-y: auto;
}

.proj-item[b-agtpf903x3] {
    font-size: 12px;
    color: #111827;
    font-family: var(--ff-primary);
    line-height: 16px;
    padding: 4px 4px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.12s;
}

.proj-item:hover[b-agtpf903x3] {
    background: #F5F7FA;
}

.proj-item.selected[b-agtpf903x3] {
    background: #E6F1FB;
    color: #004388;
    font-weight: 600;
}

.no-result[b-agtpf903x3] {
    font-size: 12px;
    color: #9CA3AF;
    padding: 4px;
}

/* ── Add project area ── */
.proj-add-row[b-agtpf903x3] {
    padding: 12px;
}

.proj-add-btn[b-agtpf903x3] {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding: 8px 14px;
    background: #F5F7FA;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    color: #004388;
    font-size: 12px;
    font-family: var(--ff-primary);
    line-height: 16px;
    transition: background 0.12s;
}

.proj-add-btn:hover[b-agtpf903x3] {
    background: #e0e8f5;
}

/* ── Inline add input row ── */
.new-proj-row[b-agtpf903x3] {
    display: flex;
    gap: 6px;
    align-items: center;
}

.new-proj-row input[b-agtpf903x3] {
    flex: 1;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 12px;
    color: #111827;
    font-family: var(--ff-primary);
    outline: none;
    transition: border-color 0.12s, box-shadow 0.12s;
}

.new-proj-row input:focus[b-agtpf903x3] {
    border-color: #378ADD;
    box-shadow: 0 0 0 2px rgba(55, 138, 221, 0.15);
}

.btn-add[b-agtpf903x3] {
    padding: 6px 12px;
    background: #004388;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-family: var(--ff-primary);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.12s;
}

.btn-add:hover[b-agtpf903x3] {
    background: #003170;
}

.btn-cancel[b-agtpf903x3] {
    padding: 6px 8px;
    background: transparent;
    color: #6B7280;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.12s;
}

.btn-cancel:hover[b-agtpf903x3] {
    background: #F5F7FA;
}
/* /Components/ProjectHeaderCard/ProjectHeaderCard.razor.rz.scp.css */
/* ProjectCard.razor.css */
 
/* ─── Card Shell ────────────────────────────────────────────── */
.project-card[b-e08m1bgkih] {
    background: #ffffff;
    border-radius: 12px;
    outline: 1px solid #E8EBED;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    box-sizing: border-box;
    transition: box-shadow 0.18s ease;
    margin :1.25rem;
}
 

 
/* ─── Top Section ───────────────────────────────────────────── */
.card-top[b-e08m1bgkih] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
 
.accent-bar[b-e08m1bgkih] {
    width: 4px;
    align-self: stretch;
    border-radius: 6px;
    flex-shrink: 0;
}
 
.card-info[b-e08m1bgkih] {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 2px 0;
    min-width: 0;
}
 
.card-title-row[b-e08m1bgkih] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
 
.project-name[b-e08m1bgkih] {
    font-family: var(--ff-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #111827;
    white-space: nowrap;
}
 
.divider-v[b-e08m1bgkih] {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: #CBD5E1;
    flex-shrink: 0;
}
 
.project-meta[b-e08m1bgkih] {
    font-family: var(--ff-primary);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #212121;
}
 
.project-description[b-e08m1bgkih] {
    margin: 0;
    font-family: var(--ff-primary);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #6A7885;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
 
/* ─── Status Badge ──────────────────────────────────────────── */
.status-badge[b-e08m1bgkih] {
    flex-shrink: 0;
    height: 24px;
    padding: 0 10px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-primary);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #ffffff;
    white-space: nowrap;
}
 
/* ─── Dividers ──────────────────────────────────────────────── */
.divider-h[b-e08m1bgkih] {
    height: 1px;
    background: #E8EBED;
    align-self: stretch;
}
 
.sep[b-e08m1bgkih] {
    width: 1px;
    height: 16px;
    background: #E2E8F0;
    flex-shrink: 0;
}
 
/* ─── Bottom Section ────────────────────────────────────────── */
.card-bottom[b-e08m1bgkih] {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
 
/* ─── Meta Groups & Items ───────────────────────────────────── */
.meta-group[b-e08m1bgkih] {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
 
.meta-item[b-e08m1bgkih] {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
}
 
.meta-item--flex[b-e08m1bgkih] {
    flex: 1 1 0;
    min-width: 160px;
}
 
.meta-icon[b-e08m1bgkih] {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
 
.meta-label[b-e08m1bgkih] {
    font-family: var(--ff-primary);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #212121;
    white-space: nowrap;
}

.meta-label--truncate[b-e08m1bgkih] {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.desc-tip-wrap[b-e08m1bgkih] {
    display: block;
}

/* ─── Custom tooltip ────────────────────────────────────────── */
.meta-tip[b-e08m1bgkih] {
    position: relative;
}

.meta-tip[b-e08m1bgkih]::before {
    content: attr(data-tooltip);
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #111827;
    color: #ffffff;
    font-family: var(--ff-primary);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 200;
}

.meta-tip[b-e08m1bgkih]::after {
    content: '';
    position: absolute;
    top: calc(100% + 3px);
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: #111827;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 200;
}

.meta-tip:hover[b-e08m1bgkih]::before,
.meta-tip:hover[b-e08m1bgkih]::after {
    opacity: 1;
}

.desc-tip-wrap.meta-tip[b-e08m1bgkih]::before {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 360px;
    width: max-content;
    text-align: left;
    left: 0;
    transform: none;
    line-height: 1.6;
    padding: 8px 12px;
    font-size: 12px;
}

.desc-tip-wrap.meta-tip[b-e08m1bgkih]::after {
    left: 16px;
    transform: none;
}
 
/* ─── Avatar Group ──────────────────────────────────────────── */
.avatar-group[b-e08m1bgkih] {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
 
.avatars[b-e08m1bgkih] {
    display: flex;
    align-items: center;
}
 
.avatar[b-e08m1bgkih] {
    width: 24px;
    height: 24px;
    background: #F5F7FA;
    border-radius: 50%;
    outline: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-primary);
    font-size: 10px;
    font-weight: 400;
    line-height: 12px;
    color: #6B7280;
    margin-left: -4px;
}
 
.avatars .avatar:first-child[b-e08m1bgkih] {
    margin-left: 0;
}
 
.avatar-more[b-e08m1bgkih] {
    font-family: var(--ff-primary);
    font-size: 10px;
    font-weight: 400;
    line-height: 12px;
    color: #6B7280;
    white-space: nowrap;
}
 
/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .card-bottom[b-e08m1bgkih] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
 
    .sep[b-e08m1bgkih] {
        display: none;
    }
 
    .meta-item--flex[b-e08m1bgkih] {
        min-width: unset;
    }
}
/* /Components/RemarkPanel/RemarksPanel.razor.rz.scp.css */
/* RemarksPanel.razor.css — Blazor CSS isolation file */

.remarks-panel[b-1t0s68au1x] {
    width: 277px;
    height: 98%;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 12px;
    outline: 1px solid #E2E8F0;
    outline-offset: -1px;
    overflow: hidden;
    margin:1rem;
}

/* ---------- Body (title + scrollable list) ---------- */

.remarks-panel__body[b-1t0s68au1x] {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 12px 8px 12px;
    min-height: 0;
}

.remarks-panel__title[b-1t0s68au1x] {
    padding-left: 4px;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.remarks-panel__list[b-1t0s68au1x] {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    min-height: 0;
}

/* ---------- Remark card ---------- */

.remark-card[b-1t0s68au1x] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: #FFFFFF;
    border-radius: 8px;
    outline: 1px solid #E8EBED;
    outline-offset: -1px;
}

.remark-card__header[b-1t0s68au1x] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.remark-card__user[b-1t0s68au1x] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remark-card__avatar[b-1t0s68au1x] {
    width: 20px;
    height: 20px;
    background: #E6F3ED;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #006A42;
    font-size: 9px;
    line-height: 10.8px;
}

.remark-card__user-info[b-1t0s68au1x] {
    display: flex;
    flex-direction: column;
}

.remark-card__name[b-1t0s68au1x] {
    color: #111827;
    font-size: 10px;
    line-height: 14px;
}

.remark-card__date[b-1t0s68au1x] {
    color: #9CA3AF;
    font-size: 7px;
    line-height: 12px;
}

.remark-card__actions[b-1t0s68au1x] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.remark-card__action[b-1t0s68au1x] {
    width: 24px;
    height: 24px;
    background: #F5F7FA;
    border: none;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.15s ease;
}

.remark-card__action:hover[b-1t0s68au1x] {
    background: #E8EBED;
}

.remark-card__text[b-1t0s68au1x] {
    margin: 0;
    color: #6B7280;
    font-size: 10px;
    line-height: 14px;
    word-wrap: break-word;
}

/* ---------- Footer (input + add/save button) ---------- */

.remarks-panel__footer[b-1t0s68au1x] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    background: #FFFFFF;
    border-top: 1px solid #E2E8F0;
    box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.08);
}

.remarks-panel__input-wrap[b-1t0s68au1x] {
    position: relative;
}

.remarks-panel__textarea[b-1t0s68au1x] {
    width: 100%;
    height: 72px;
    box-sizing: border-box;
    padding: 8px 14px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    resize: vertical;
    font-family: inherit;
    font-size: 12px;
    line-height: 16px;
    color: #111827;
    outline: none;
}

.remarks-panel__textarea[b-1t0s68au1x]::placeholder {
    color: #9CA3AF;
}

.remarks-panel__textarea:focus[b-1t0s68au1x] {
    border-color: #004388;
}

.remarks-panel__char-count[b-1t0s68au1x] {
    display: block;
    text-align: right;
    font-size: 10px;
    color: #9CA3AF;
    margin-top: 3px;
}

.remarks-panel__char-count--warn[b-1t0s68au1x] {
    color: #DF342E;
}

.remarks-panel__add-btn[b-1t0s68au1x] {
    width: 100%;
    padding: 8px 14px;
    background: #F5F7FA;
    border: none;
    border-radius: 24px;
    color: #6B7280;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    cursor: not-allowed;
    transition: background-color 0.15s ease, color 0.15s ease;
}

/* Enabled state once text is entered */
.remarks-panel__add-btn.is-active[b-1t0s68au1x] {
    background: #004388;
    color: #FFFFFF;
    cursor: pointer;
}

.remarks-panel__add-btn.is-active:hover[b-1t0s68au1x] {
    background: #00345f;
}
/* /Components/SearchBar/SearchBar.razor.rz.scp.css */
.pill[b-jes0e1pyz3] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px 8px 14px;
    background: #fff;
    border-radius: 24px;
    outline: 1px solid #E2E8F0;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
/* Search pill wraps an <input> */
.pill--input[b-jes0e1pyz3] {
    gap: 8px;
    padding: 8px 20px 8px 14px;
}

.pill--input input[b-jes0e1pyz3] {
    border: none;
    outline: none;
    font-size: 12px;
    font-family: var(--ff-primary);
    color: #374151;
    background: transparent;
    width: 100%;
}

.pill--input input[b-jes0e1pyz3]::placeholder { color: #9CA3AF; }
/* /Components/Shared/BrandLogo.razor.rz.scp.css */
.brand-logo[b-4y0ivyrqxq] {
    display: block;
    width: 100%;
    height: auto;
    flex-shrink: 0;
}

.brand-logo--login[b-4y0ivyrqxq] {
    width: 250px;
    max-width: 100%;
}
/* /Components/SideBar/SideBar.razor.rz.scp.css */
.sidebar[b-wq6hyrxsmb] {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3.5rem; /* 56px */
    width: 11.25rem; /* 180px */
    min-height: 100vh;
    padding: 1.5rem 0.75rem; /* 24px 12px */
    background: #fff;
    border-right: 0.0625rem solid #E2E8F0; /* 1px */
    box-sizing: border-box;
    overflow: hidden;
}

.sidebar-highlight-bg[b-wq6hyrxsmb] {
    position: absolute;
    left: 0;
    width: 11.25rem;
    height: 2rem; /* 32px */
    background: rgba(204, 217, 231, 0.30);
    transition: top 0.22s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
    z-index: 0;
}

.sidebar-logo[b-wq6hyrxsmb] {
    align-self: stretch;
    width: 100%;
    flex-shrink: 0;
}

.sidebar-nav[b-wq6hyrxsmb] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.625rem; /* 10px */
    align-self: stretch;
}

.nav-item[b-wq6hyrxsmb] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem; /* 8px */
    height: 2rem; /* 32px */
    padding: 0 0.75rem; /* 12px */
    border-radius: 0.5rem; /* 8px */
    text-decoration: none;
    cursor: pointer;
    color: #6B7280;
    transition: all 0.2s ease;
    outline: none;
}

.nav-item.active[b-wq6hyrxsmb] {
    color: #004388;
    font-weight: 700;
}

.nav-item:hover:not(.active)[b-wq6hyrxsmb] {
    color: #374151;
}

.nav-icon[b-wq6hyrxsmb] {
    width: 1rem; /* 16px */
    height: 1rem; /* 16px */
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon svg[b-wq6hyrxsmb],
.nav-icon iconify-icon[b-wq6hyrxsmb] {
    width: 1rem; /* 16px */
    height: 1rem; /* 16px */
}

.nav-label[b-wq6hyrxsmb] {
    font-size: 0.75rem; /* 12px */
    font-family: var(--ff-primary);
    font-weight: 700;
    white-space: nowrap;
}

.sidebar-footer[b-wq6hyrxsmb] {
    align-self: stretch;
}

.nav-item.logout[b-wq6hyrxsmb] {
    color: #6B7280;
}

.nav-item.logout:hover[b-wq6hyrxsmb] {
    color: #374151;
}
