/* /Src/Layouts/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-1thhwl60tg],
.components-reconnect-repeated-attempt-visible[b-1thhwl60tg],
.components-reconnect-failed-visible[b-1thhwl60tg],
.components-pause-visible[b-1thhwl60tg],
.components-resume-failed-visible[b-1thhwl60tg],
.components-rejoining-animation[b-1thhwl60tg] {
    display: none;
}

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


#components-reconnect-modal[b-1thhwl60tg] {
    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-1thhwl60tg 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-1thhwl60tg {
    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;
    }
}
/* /Src/Pages/Admin/AiIntegration.razor.rz.scp.css */
.intg-page[b-z7haxd12lc] {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 16px 64px;
}

.intg-head[b-z7haxd12lc] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.intg-title[b-z7haxd12lc] {
    font-size: 1.6rem;
    margin: 0;
}

.intg-subtitle[b-z7haxd12lc] {
    color: #6b7280;
    margin: 4px 0 0;
    font-size: 0.9rem;
}

.intg-grid[b-z7haxd12lc] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.intg-card[b-z7haxd12lc] {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 18px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.intg-audit[b-z7haxd12lc] {
    margin-top: 8px;
    font-size: 0.76rem;
    color: #9ca3af;
}

.intg-form[b-z7haxd12lc] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.intg-field[b-z7haxd12lc] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.intg-field__label[b-z7haxd12lc] {
    font-size: 0.82rem;
    font-weight: 500;
    color: #374151;
}

.intg-field__req[b-z7haxd12lc] { color: #dc2626; }

.intg-input[b-z7haxd12lc] {
    padding: 8px 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
}

textarea.intg-input[b-z7haxd12lc] {
    resize: vertical;
    min-height: 96px;
}

.intg-input:focus[b-z7haxd12lc] {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.intg-check[b-z7haxd12lc] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.intg-form-actions[b-z7haxd12lc] {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.intg-btn[b-z7haxd12lc] {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
}

.intg-btn:disabled[b-z7haxd12lc] {
    opacity: 0.55;
    cursor: not-allowed;
}

.intg-btn--primary[b-z7haxd12lc] {
    background: #4f46e5;
    color: #fff;
}

.intg-btn--ghost[b-z7haxd12lc] {
    background: #fff;
    border-color: #d1d5db;
    color: #374151;
}

.intg-alert[b-z7haxd12lc] {
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.88rem;
}

.intg-alert--ok[b-z7haxd12lc] { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.intg-alert--error[b-z7haxd12lc] { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.intg-loading[b-z7haxd12lc] {
    padding: 32px;
    text-align: center;
    color: #6b7280;
}
/* /Src/Pages/Admin/Integrations.razor.rz.scp.css */
.intg-page[b-7q7o5c114i] {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 16px 64px;
}

.intg-head[b-7q7o5c114i] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.intg-title[b-7q7o5c114i] {
    font-size: 1.6rem;
    margin: 0;
}

.intg-subtitle[b-7q7o5c114i] {
    color: #6b7280;
    margin: 4px 0 0;
    font-size: 0.9rem;
}

.intg-grid[b-7q7o5c114i] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.intg-card[b-7q7o5c114i] {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 18px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.intg-card__head[b-7q7o5c114i] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.intg-card__title[b-7q7o5c114i] {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.intg-badge[b-7q7o5c114i] {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.intg-badge--on[b-7q7o5c114i] { background: #dcfce7; color: #166534; }
.intg-badge--off[b-7q7o5c114i] { background: #f3f4f6; color: #6b7280; }
.intg-badge--warn[b-7q7o5c114i] { background: #fef3c7; color: #92400e; }

.intg-status[b-7q7o5c114i] {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.intg-status__pill[b-7q7o5c114i] {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
}

.intg-status__pill--running[b-7q7o5c114i] { background: #dbeafe; color: #1e40af; }
.intg-status__pill--success[b-7q7o5c114i] { background: #dcfce7; color: #166534; }
.intg-status__pill--failed[b-7q7o5c114i] { background: #fee2e2; color: #991b1b; }
.intg-status__pill--idle[b-7q7o5c114i] { background: #f3f4f6; color: #6b7280; }

.intg-status__meta[b-7q7o5c114i] {
    font-size: 0.8rem;
    color: #6b7280;
}

.intg-error[b-7q7o5c114i] {
    margin-top: 10px;
    padding: 8px 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #991b1b;
    font-size: 0.82rem;
    word-break: break-word;
}

.intg-audit[b-7q7o5c114i] {
    margin-top: 8px;
    font-size: 0.76rem;
    color: #9ca3af;
}

.intg-actions[b-7q7o5c114i] {
    margin-top: 14px;
}

.intg-form[b-7q7o5c114i] {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.intg-field[b-7q7o5c114i] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.intg-field__label[b-7q7o5c114i] {
    font-size: 0.82rem;
    font-weight: 500;
    color: #374151;
}

.intg-field__req[b-7q7o5c114i] { color: #dc2626; }

.intg-input[b-7q7o5c114i] {
    padding: 8px 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
}

.intg-input:focus[b-7q7o5c114i] {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.intg-check[b-7q7o5c114i] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.intg-check--field[b-7q7o5c114i] { margin: 4px 0; font-weight: 600; }

.intg-section[b-7q7o5c114i] {
    margin: 20px 0 6px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
}

.intg-checks[b-7q7o5c114i] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding-top: 4px;
}

.intg-check--inline[b-7q7o5c114i] { font-weight: 500; white-space: nowrap; }

.intg-form-actions[b-7q7o5c114i] {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.intg-btn[b-7q7o5c114i] {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
}

.intg-btn:disabled[b-7q7o5c114i] {
    opacity: 0.55;
    cursor: not-allowed;
}

.intg-btn--primary[b-7q7o5c114i] {
    background: #4f46e5;
    color: #fff;
}

.intg-btn--ghost[b-7q7o5c114i] {
    background: #fff;
    border-color: #d1d5db;
    color: #374151;
}

.intg-alert[b-7q7o5c114i] {
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.88rem;
}

.intg-alert--ok[b-7q7o5c114i] { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.intg-alert--error[b-7q7o5c114i] { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.intg-loading[b-7q7o5c114i], .intg-empty[b-7q7o5c114i] {
    padding: 32px;
    text-align: center;
    color: #6b7280;
}
/* /Src/Pages/ComingSoon.razor.rz.scp.css */
.cs-page[b-tm8osr46ou] {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 64px 24px;
}

.cs-card[b-tm8osr46ou] {
    max-width: 520px;
    width: 100%;
    background: #fff;
    border: 1px solid #e6e8f0;
    border-radius: 16px;
    padding: 40px 36px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(30, 41, 59, 0.06);
}

.cs-badge[b-tm8osr46ou] {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #4858ff;
    background: #eef0ff;
    border: 1px solid #d6dbff;
}

.cs-title[b-tm8osr46ou] {
    margin: 18px 0 10px;
    font-size: 26px;
    font-weight: 800;
    color: #1e293b;
}

.cs-desc[b-tm8osr46ou] {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.55;
    color: #64748b;
}

.cs-note[b-tm8osr46ou] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
}
/* /Src/Pages/Reports/OvertimeReport.razor.rz.scp.css */
.ot-page .prj-field--presets[b-pygtzscwu9] { min-width: auto; }

.pto-presets[b-pygtzscwu9] { display: flex; gap: 8px; flex-wrap: wrap; }
.pto-presets .prj-btn[b-pygtzscwu9] { height: 38px; }
.pto-preset--on[b-pygtzscwu9] { border-color: var(--prj-blue) !important; color: var(--prj-blue) !important; background: #eef2ff !important; }

.pto-section[b-pygtzscwu9] { margin-bottom: 18px; }

.pto-section__head[b-pygtzscwu9] {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--prj-line-2);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    text-align: left;
    margin-bottom: 8px;
}
.pto-section__head:hover[b-pygtzscwu9] { border-color: var(--prj-blue); }
.pto-section__head--all[b-pygtzscwu9] { background: var(--prj-soft); font-weight: 700; }

.pto-section__chev[b-pygtzscwu9] {
    display: inline-block;
    transition: transform .15s ease;
    color: var(--prj-ink-3);
    font-size: 12px;
}
.pto-section__chev--open[b-pygtzscwu9] { transform: rotate(90deg); }

.pto-section__title[b-pygtzscwu9] { flex: 1 1 auto; font-weight: 600; color: var(--prj-ink-1); }
.pto-section__meta[b-pygtzscwu9] { color: var(--prj-ink-3); font-size: 12px; white-space: nowrap; }

.pto-rowlabel[b-pygtzscwu9] { font-weight: 600; color: var(--prj-ink-2); white-space: nowrap; }
.pto-num[b-pygtzscwu9] { text-align: center; font-variant-numeric: tabular-nums; white-space: nowrap; }
.pto-total[b-pygtzscwu9] { font-weight: 700; color: var(--prj-ink-1); border-left: 1px solid var(--prj-line-2); }

/* Financial-impact placeholder rows/stats are muted until cost rates exist. */
.ot-row--pending .pto-num[b-pygtzscwu9], .ot-row--pending .pto-rowlabel[b-pygtzscwu9] { color: var(--prj-ink-4); }
.ot-stat--pending .prj-stat__value[b-pygtzscwu9] { color: var(--prj-ink-4); -webkit-text-fill-color: currentColor; background: none; }

.ot-unmatched[b-pygtzscwu9] {
    margin-left: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #b45309;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 6px;
    padding: 1px 6px;
}

.pto-drill[b-pygtzscwu9] { margin: 6px 0 4px; }

.ot-emp-link[b-pygtzscwu9] { color: var(--prj-blue, #3b5bdb); text-decoration: none; }
.ot-emp-link:hover[b-pygtzscwu9] { text-decoration: underline; }

.ot-unmapped-block[b-pygtzscwu9] { margin-top: 18px; }

.pto-foot[b-pygtzscwu9] { color: var(--prj-ink-4); font-size: 12px; margin: 4px 0 0; }
.pto-foot--warn[b-pygtzscwu9] { color: #b45309; }

.pto-note[b-pygtzscwu9] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 18px;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    border-radius: 10px;
    color: var(--prj-ink-2);
    font-size: 13px;
}
.pto-note__icon[b-pygtzscwu9] {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--prj-blue);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-style: italic;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Client + project overtime summary (shown above the team breakdown). */
.pto-clients[b-pygtzscwu9] { margin-bottom: 26px; }
.pto-clients__head[b-pygtzscwu9] { margin-bottom: 10px; }
.pto-clients__title[b-pygtzscwu9] { margin: 0; font-size: 16px; font-weight: 700; color: var(--prj-ink-1); }
.pto-clients__sub[b-pygtzscwu9] { margin: 4px 0 0; font-size: 12px; color: var(--prj-ink-4); }
/* Overtime with no resolvable client/project: real figure, but not a customer/project name. */
.pto-rowlabel--none[b-pygtzscwu9] { font-weight: 500; font-style: italic; color: var(--prj-ink-4); }
.pto-matrix__total td[b-pygtzscwu9] { font-weight: 700; color: var(--prj-ink-1); border-top: 2px solid var(--prj-line-2); }

.ot-billable[b-pygtzscwu9] {
    margin-left: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #047857;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 6px;
    padding: 1px 6px;
}

.ot-nonbillable[b-pygtzscwu9] {
    margin-left: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 1px 6px;
}
/* /Src/Pages/Reports/PtoImpactReport.razor.rz.scp.css */
.pto-page .prj-field--presets[b-m435hdmirf] { min-width: auto; }

.pto-presets[b-m435hdmirf] { display: flex; gap: 8px; flex-wrap: wrap; }
.pto-presets .prj-btn[b-m435hdmirf] { height: 38px; }
.pto-preset--on[b-m435hdmirf] { border-color: var(--prj-blue) !important; color: var(--prj-blue) !important; background: #eef2ff !important; }

.pto-block[b-m435hdmirf] { margin-bottom: 34px; }
.pto-block__ccy[b-m435hdmirf] {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--prj-ink-2);
    letter-spacing: .02em;
}

.pto-section[b-m435hdmirf] { margin-bottom: 18px; }

.pto-section__head[b-m435hdmirf] {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--prj-line-2);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    text-align: left;
    margin-bottom: 8px;
}
.pto-section__head:hover[b-m435hdmirf] { border-color: var(--prj-blue); }
.pto-section__head--all[b-m435hdmirf] { background: var(--prj-soft); font-weight: 700; }

.pto-section__chev[b-m435hdmirf] {
    display: inline-block;
    transition: transform .15s ease;
    color: var(--prj-ink-3);
    font-size: 12px;
}
.pto-section__chev--open[b-m435hdmirf] { transform: rotate(90deg); }

.pto-section__name[b-m435hdmirf] { flex: 1 1 auto; font-weight: 600; color: var(--prj-ink-1); }
.pto-section__meta[b-m435hdmirf] { color: var(--prj-ink-3); font-size: 12px; white-space: nowrap; }

.pto-table .pto-rowlabel[b-m435hdmirf] { font-weight: 600; color: var(--prj-ink-2); white-space: nowrap; }
.pto-num[b-m435hdmirf] { text-align: center; font-variant-numeric: tabular-nums; white-space: nowrap; }
.pto-total[b-m435hdmirf] { font-weight: 700; color: var(--prj-ink-1); border-left: 1px solid var(--prj-line-2); }
.pto-pctrow td[b-m435hdmirf] { color: var(--prj-ink-3); }

/* Value rows: preserved value in green, remaining (uncovered) value in amber. */
.pto-row--preserved .pto-num[b-m435hdmirf] { color: #15803d; }
.pto-row--preserved .pto-rowlabel[b-m435hdmirf] { color: #15803d; }
.pto-row--remaining .pto-num[b-m435hdmirf] { color: #b45309; }
.pto-row--remaining .pto-rowlabel[b-m435hdmirf] { color: #b45309; }

/* Coverage % traffic-light gradation: >=80% good, 50-79% partial, <50% poor. */
.pto-table td.pto-cov--good[b-m435hdmirf], td.pto-cov--good[b-m435hdmirf] { color: #15803d; background: #f0fdf4; font-weight: 600; }
.pto-table td.pto-cov--mid[b-m435hdmirf], td.pto-cov--mid[b-m435hdmirf] { color: #b45309; background: #fffbeb; font-weight: 600; }
.pto-table td.pto-cov--low[b-m435hdmirf], td.pto-cov--low[b-m435hdmirf] { color: #b91c1c; background: #fef2f2; font-weight: 600; }

/* Summary header stats reuse the table colour logic: preserved green, remaining amber,
   coverage % traffic-light (text colour only, no cell background).
   NB: .prj-stat__value paints the text with a gradient via -webkit-text-fill-color:
   transparent, so every coloured header stat must reset -webkit-text-fill-color to
   currentColor, otherwise the value renders invisible. */
.pto-stat--preserved[b-m435hdmirf] { color: #15803d; -webkit-text-fill-color: currentColor; background: none; }
.pto-stat--remaining[b-m435hdmirf] { color: #b45309; -webkit-text-fill-color: currentColor; background: none; }
.pto-stat--value[b-m435hdmirf] { color: var(--prj-ink-1); -webkit-text-fill-color: currentColor; background: none; }
span.pto-stat-pct.pto-cov--good[b-m435hdmirf] { color: #15803d; -webkit-text-fill-color: currentColor; background: none; }
span.pto-stat-pct.pto-cov--mid[b-m435hdmirf] { color: #b45309; -webkit-text-fill-color: currentColor; background: none; }
span.pto-stat-pct.pto-cov--low[b-m435hdmirf] { color: #b91c1c; -webkit-text-fill-color: currentColor; background: none; }

.pto-drill[b-m435hdmirf] { margin: 6px 0 4px; }
.prj-page .pto-drill .prj-badge[b-m435hdmirf] { margin-left: 8px; }

.pto-badge--warn[b-m435hdmirf] { color: #b45309; background: #fffbeb; border: 1px solid #fde68a; margin-left: 8px; }

/* Client × month matrix (Additional PTO value per client). */
.pto-clients[b-m435hdmirf] { margin-bottom: 26px; }
.pto-clients__head[b-m435hdmirf] { margin-bottom: 10px; }
.pto-clients__title[b-m435hdmirf] { margin: 0; font-size: 16px; font-weight: 700; color: var(--prj-ink-1); }
.pto-clients__sub[b-m435hdmirf] { margin: 4px 0 0; font-size: 12px; color: var(--prj-ink-4); }
.pto-matrix .pto-rowlabel[b-m435hdmirf] { font-weight: 600; }
/* Value whose project has no resolvable client: real figure, but not a customer name. */
.pto-matrix .pto-rowlabel--none[b-m435hdmirf] { font-weight: 500; font-style: italic; color: var(--prj-ink-4); }
.pto-matrix tfoot .pto-matrix__total td[b-m435hdmirf] { font-weight: 700; color: var(--prj-ink-1); border-top: 2px solid var(--prj-line-2); }
/* Each cell now carries two currencies, so trim the type and side padding to keep a full year of
   months on screen; the wrapper still scrolls when it cannot. Qualified with .prj-page to outrank
   the global ".prj-page .prj-table tbody td" padding, the same way .pto-drill does below. */
.prj-page .pto-matrix .pto-num[b-m435hdmirf] { font-size: 13px; padding-left: 10px; padding-right: 10px; }

.pto-foot[b-m435hdmirf] { color: var(--prj-ink-4); font-size: 12px; margin: 4px 0 0; }
.pto-foot--warn[b-m435hdmirf] { color: #b45309; }

.pto-note[b-m435hdmirf] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 18px;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    border-radius: 10px;
    color: var(--prj-ink-2);
    font-size: 13px;
}
.pto-note__icon[b-m435hdmirf] {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--prj-blue);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-style: italic;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.pto-emp-link[b-m435hdmirf] { color: var(--prj-blue, #3b5bdb); text-decoration: none; }
.pto-emp-link:hover[b-m435hdmirf] { text-decoration: underline; }
/* /Src/Pages/Reservations/Office.razor.rz.scp.css */
.office-page[b-8pevh2j0lk] {
    padding: 20px 24px 0;
}

.office-tabs[b-8pevh2j0lk] {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    background: #f1f3f9;
    border-radius: 12px;
    margin-bottom: 8px;
}

.office-tab[b-8pevh2j0lk] {
    appearance: none;
    border: none;
    background: transparent;
    padding: 8px 20px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 650;
    color: #64748b;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.office-tab:hover[b-8pevh2j0lk] {
    color: #4858ff;
}

.office-tab--active[b-8pevh2j0lk] {
    background: #fff;
    color: #4858ff;
    box-shadow: 0 1px 3px rgba(30, 41, 59, 0.12);
}

/* ---- office check-in strip -----------------------------------------------
   Deep-selector because the strip is a child component; ::deep keeps the rules
   scoped to the Office page rather than leaking into every page it might appear on. */

[b-8pevh2j0lk] .ofc-checkin {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    margin-bottom: 14px;
    border: 1px solid #e2e8f0;
    border-left: 3px solid #cbd5e1;
    border-radius: 12px;
    background: #fff;
}

[b-8pevh2j0lk] .ofc-checkin--in {
    border-left-color: #16a34a;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 60%);
}

[b-8pevh2j0lk] .ofc-checkin__state {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

[b-8pevh2j0lk] .ofc-checkin__badge {
    font-size: 0.88rem;
    font-weight: 700;
    color: #15803d;
}

[b-8pevh2j0lk] .ofc-checkin__badge--out { color: #64748b; }

[b-8pevh2j0lk] .ofc-checkin__detail {
    font-size: 0.76rem;
    color: #94a3b8;
}

[b-8pevh2j0lk] .ofc-checkin__stats {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    font-size: 0.8rem;
    color: #64748b;
}

[b-8pevh2j0lk] .ofc-checkin__stat strong {
    color: #1e293b;
    font-variant-numeric: tabular-nums;
}

[b-8pevh2j0lk] .ofc-checkin__best {
    margin-left: 5px;
    padding: 0 6px;
    border-radius: 10px;
    background: #f1f5f9;
    font-size: 0.7rem;
}

[b-8pevh2j0lk] .ofc-checkin__sep { color: #cbd5e1; }

[b-8pevh2j0lk] .ofc-checkin__link {
    margin-left: 4px;
    font-weight: 650;
    color: #4858ff;
    text-decoration: none;
}

@media (max-width: 640px) {
    [b-8pevh2j0lk] .ofc-checkin__stats { margin-left: 0; }
    [b-8pevh2j0lk] .ofc-checkin__btn { width: 100%; }
}
