/* /Components/WorkOrders/WorkOrderDetailPane.razor.rz.scp.css */
/* ── Main container ── */
.wo-detail-pane[b-b4mgqm70yl] {
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e3e6ee;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    /* fixed height matching the tree grid, 28px bottom gap */
    height: calc(100vh - 138px);
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ── Header ── */
.wo-header[b-b4mgqm70yl] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 1.25rem 0.75rem;
}

.wo-header-left[b-b4mgqm70yl] {
    flex: 1;
    min-width: 0;
}

.wo-main-title[b-b4mgqm70yl] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1d212f;
    margin: 0 0 0.3rem 0;
    line-height: 1.25;
}

.wo-refs[b-b4mgqm70yl] {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.wo-ref-badge[b-b4mgqm70yl] {
    font-size: 0.75rem;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.wo-header-right[b-b4mgqm70yl] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    margin-left: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* ── State bar ── */
.wo-state-bar[b-b4mgqm70yl] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 1.25rem;
    border-top: 1px solid #f0f2f5;
    border-bottom: 1px solid #f0f2f5;
    background: #fafbfc;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.wo-nav-btns[b-b4mgqm70yl] {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
}

/* ── Top body ── */
.wo-top-body[b-b4mgqm70yl] {
    padding: 1rem 1.25rem 1.1rem;
    border-bottom: 1px solid #eaecf0;
    /* cap height so tabs always get space; scrolls if content overflows */
    max-height: 45vh;
    overflow-y: auto;
    flex-shrink: 0;
}

.wo-left-col[b-b4mgqm70yl] {
    padding-right: 1.25rem;
    border-right: 1px solid #eaecf0;
}

.wo-right-col[b-b4mgqm70yl] {
    padding-left: 1.25rem;
}

/* ── Customer card ── */
.wo-customer-card[b-b4mgqm70yl] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid #e3e8f0;
    border-radius: 0.4rem;
    background: #f8f9fc;
    margin-bottom: 0.5rem;
}

.wo-customer-avatar[b-b4mgqm70yl] {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #e8f0fe;
    border: 1px solid #c5d5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: #3b60e4;
    flex-shrink: 0;
}

.wo-location-row[b-b4mgqm70yl] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1d212f;
}

.wo-location-icon[b-b4mgqm70yl] {
    font-size: 0.7rem;
    color: #6c757d;
    flex-shrink: 0;
}

.wo-location-pin[b-b4mgqm70yl] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    color: #dc3545;
    font-size: 1.15rem;
    line-height: 1;
    flex-shrink: 0;
    text-decoration: none;
    transition: background-color 0.15s ease, transform 0.15s ease;
}

    .wo-location-pin:hover[b-b4mgqm70yl] {
        background-color: rgba(220, 53, 69, 0.12);
        transform: scale(1.08);
        color: #b52a37;
    }

/* Compact variant for the span-site address row, where vertical space is tight. */
.wo-location-pin-sm[b-b4mgqm70yl] {
    width: 1.15rem;
    height: 1.15rem;
    font-size: 0.85rem;
}

/* ── Assignment + Timeline row ── */
.wo-assignment-row[b-b4mgqm70yl] {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eaecf0;
    flex-wrap: wrap;
}

.wo-assignment-cards[b-b4mgqm70yl] {
    flex: 0 0 auto;
}

.wo-timeline-section[b-b4mgqm70yl] {
    flex: 1;
    min-width: 220px;
}

.wo-user-card[b-b4mgqm70yl] {
    padding: 0.6rem 0.85rem;
    border: 1px solid #e3e8f0;
    border-radius: 0.4rem;
    background: #f8f9fc;
    min-width: 140px;
}

.wo-user-avatar[b-b4mgqm70yl] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.wo-timeline-dates[b-b4mgqm70yl] {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.wo-timeline-item[b-b4mgqm70yl] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.wo-timeline-icon[b-b4mgqm70yl] {
    font-size: 0.75rem;
    color: #9eaabb;
    margin-top: 0.3rem;
}

/* ── Section labels ── */
.wo-section-label[b-b4mgqm70yl] {
    font-size: 0.63rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9eaabb;
    margin-bottom: 0.6rem;
    display: block;
}

/* ── Field groups ── */
.wo-field-group[b-b4mgqm70yl] {
    margin-bottom: 0.85rem;
}

.wo-field-label[b-b4mgqm70yl] {
    font-size: 0.63rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9eaabb;
    margin-bottom: 0.2rem;
}

.wo-field-value[b-b4mgqm70yl] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1d212f;
    line-height: 1.3;
}

/* ── Text content ── */
.wo-text-content[b-b4mgqm70yl] {
    font-size: 0.875rem;
    color: #454567;
    white-space: pre-wrap;
    margin: 0.25rem 0 0 0;
    line-height: 1.6;
}

.wo-customer-notes[b-b4mgqm70yl] {
    font-style: italic;
    color: #555;
}

/* ── Skills ── */
.wo-skills-header[b-b4mgqm70yl] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.wo-skill-tag[b-b4mgqm70yl] {
    display: inline-block;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 20px;
    padding: 0.18rem 0.65rem;
    font-size: 0.72rem;
    color: #4338ca;
}

/* ── Tabs ── */
.wo-tabs-section[b-b4mgqm70yl] {
    border-top: 1px solid #eaecf0;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.wo-tab-bar[b-b4mgqm70yl] {
    display: flex;
    border-bottom: 1px solid #eaecf0;
    padding: 0 1.25rem;
    background: #fafbfc;
    flex: 0 0 auto;
}

.wo-tab[b-b4mgqm70yl] {
    background: none;
    border: none;
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.1s, border-color 0.1s;
    white-space: nowrap;
}

.wo-tab.active[b-b4mgqm70yl] {
    color: #0d6efd;
    border-bottom-color: #0d6efd;
}

.wo-tab:hover:not(.active)[b-b4mgqm70yl] {
    color: #444;
}

.wo-tab-content[b-b4mgqm70yl] {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

/* ── Icon buttons ── */
.wo-icon-btn[b-b4mgqm70yl] {
    background: none;
    border: none;
    padding: 0.25rem 0.4rem;
    cursor: pointer;
    color: #aaa;
    font-size: 0.78rem;
    border-radius: 4px;
    line-height: 1;
}

    .wo-icon-btn:hover[b-b4mgqm70yl] {
        color: #555;
        background: #f0f2f5;
    }

/* ── Nav icon buttons ── */
.wo-nav-btn[b-b4mgqm70yl] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #dde0e8;
    border-radius: 4px;
    background: white;
    color: #666;
    cursor: pointer;
    font-size: 0.72rem;
    text-decoration: none;
    transition: background 0.12s, border-color 0.12s;
}

    .wo-nav-btn:hover[b-b4mgqm70yl] {
        background: #f0f2f5;
        border-color: #bec4d0;
        color: #333;
    }

/* ── Edit form ── */
.wo-edit-form[b-b4mgqm70yl] {
    border-bottom: 1px solid #eee;
}

/* ── Inline skills MultiSelect ── */
.skills-multiselect[b-b4mgqm70yl] {
    width: 100%;
    font-size: 0.78rem;
}
/* /Pages/Login.razor.rz.scp.css */
/* ============================================================
   Hectic — Login Page Styles
   ============================================================ */

.login-wrapper[b-o6p2u5wn04] {
    min-height: 100vh;
    background: linear-gradient(135deg, #4e73df 0%, #224abe 50%, #1a3a8f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.login-card-wrapper[b-o6p2u5wn04] {
    width: 100%;
    max-width: 420px;
}

/* Brand header above card */
.login-brand[b-o6p2u5wn04] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.login-brand-name[b-o6p2u5wn04] {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.05rem;
    display: block;
}

.login-brand-tagline[b-o6p2u5wn04] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Card */
.login-card-wrapper .card[b-o6p2u5wn04] {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.login-card-wrapper .card-body[b-o6p2u5wn04] {
    padding: 2.5rem;
}

/* Heading inside card */
.login-card-wrapper .card-body .text-center h2[b-o6p2u5wn04] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3a3b45;
    margin-bottom: 0.25rem;
}

.login-card-wrapper .card-body .text-center p.text-muted[b-o6p2u5wn04] {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Form Labels */
.login-card-wrapper .form-label[b-o6p2u5wn04] {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    color: #858796;
    margin-bottom: 0.35rem;
}

/* Form Controls */
.login-card-wrapper .form-control[b-o6p2u5wn04],
.login-card-wrapper .form-select[b-o6p2u5wn04] {
    border-radius: 0.5rem;
    border: 1px solid #d1d3e2;
    font-size: 0.875rem;
    padding: 0.6rem 0.9rem;
    color: #3a3b45;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.login-card-wrapper .form-control:focus[b-o6p2u5wn04],
.login-card-wrapper .form-select:focus[b-o6p2u5wn04] {
    border-color: #4e73df;
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
    outline: none;
}

.login-card-wrapper .form-control[b-o6p2u5wn04]::placeholder {
    color: #b7b9cc;
    font-size: 0.85rem;
}

/* Submit button */
.login-card-wrapper .btn-primary[b-o6p2u5wn04] {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    border: none;
    border-radius: 0.5rem;
    padding: 0.7rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03rem;
    transition: opacity 0.15s, transform 0.1s;
}

.login-card-wrapper .btn-primary:hover:not(:disabled)[b-o6p2u5wn04] {
    opacity: 0.9;
    transform: translateY(-1px);
}

.login-card-wrapper .btn-primary:active[b-o6p2u5wn04] {
    transform: translateY(0);
}

.login-card-wrapper .btn-primary:disabled[b-o6p2u5wn04] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Checkbox */
.login-card-wrapper .form-check-label[b-o6p2u5wn04] {
    font-size: 0.85rem;
    color: #858796;
}

.login-card-wrapper .form-check-input:checked[b-o6p2u5wn04] {
    background-color: #4e73df;
    border-color: #4e73df;
}

/* Alert */
.login-card-wrapper .alert-danger[b-o6p2u5wn04] {
    border-radius: 0.5rem;
    font-size: 0.85rem;
    border: none;
    background-color: #fde8e6;
    color: #c0392b;
}

/* Footer link */
.login-card-wrapper .text-center a.text-muted[b-o6p2u5wn04] {
    font-size: 0.8rem;
    color: #858796 !important;
    text-decoration: none;
    transition: color 0.15s;
}

.login-card-wrapper .text-center a.text-muted:hover[b-o6p2u5wn04] {
    color: #4e73df !important;
    text-decoration: underline;
}

/* Copyright below card */
.login-copyright[b-o6p2u5wn04] {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}
/* /Shared/AppNav.razor.rz.scp.css */
/* ── Root wrapper ── */
.appnav-root[b-zqe98rr1la] {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ── Logo ── */
.appnav-logo[b-zqe98rr1la] {
    height: 26px;
    width: auto;
    flex-shrink: 0;
}

/* ── Search pill ── */
.appnav-search[b-zqe98rr1la] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 5px 14px;
    color: rgba(255, 255, 255, 0.4);
}

.appnav-search input[b-zqe98rr1la] {
    background: transparent;
    border: none;
    outline: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    width: 160px;
}

.appnav-search input[b-zqe98rr1la]::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

/* ── Avatar ── */
.appnav-avatar[b-zqe98rr1la] {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #3fa9f5;
    color: white;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 0 2px rgba(63, 169, 245, 0.3);
    position: relative;
    flex-shrink: 0;
    margin-left: 12px;
    user-select: none;
}

/* ── Profile dropdown ── */
.appnav-profile-menu[b-zqe98rr1la] {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: #16213e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    z-index: 9999;
}

.appnav-profile-item[b-zqe98rr1la] {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: background 0.12s;
}

.appnav-profile-item:hover[b-zqe98rr1la] {
    background: rgba(63, 169, 245, 0.15);
    color: #fff;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.main-content[b-chid3rq2et] {
    padding: 20px 30px;
    background-color: #f5f6fa;
    min-height: calc(100vh - 52px);
}
