/* /Components/EmployeeAdminMutationForms.razor.rz.scp.css */
.admin-mutation-panel[b-8lv0u78fkh] {
    background: #ffffff;
    border: 1px solid #d6dce5;
    border-radius: 8px;
    margin-top: 1rem;
    padding: 1rem;
}

.admin-mutation-panel > h2[b-8lv0u78fkh] {
    margin-top: 0;
}

.admin-mutation-panel details[b-8lv0u78fkh] {
    border-top: 1px solid #d6dce5;
    margin-top: 1rem;
    padding-top: 0.75rem;
}

.admin-mutation-panel summary[b-8lv0u78fkh] {
    cursor: pointer;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.admin-form-grid[b-8lv0u78fkh] {
    display: grid;
    gap: 0.75rem 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 1rem;
}

.admin-form-grid label[b-8lv0u78fkh] {
    color: #334155;
    display: grid;
    font-size: 0.85rem;
    font-weight: 700;
    gap: 0.3rem;
}

.admin-form-grid input:not([type="checkbox"])[b-8lv0u78fkh],
.admin-form-grid select[b-8lv0u78fkh],
.admin-form-grid textarea[b-8lv0u78fkh] {
    border: 1px solid #94a3b8;
    border-radius: 4px;
    font: inherit;
    padding: 0.5rem;
    width: 100%;
}

.admin-form-grid textarea[b-8lv0u78fkh] {
    min-height: 4.5rem;
}

.admin-form-grid .wide-field[b-8lv0u78fkh],
.admin-form-grid .checkbox-field[b-8lv0u78fkh] {
    grid-column: 1 / -1;
}

.admin-form-grid .checkbox-field[b-8lv0u78fkh] {
    align-items: center;
    display: flex;
    gap: 0.5rem;
}

.form-status[b-8lv0u78fkh] {
    border-radius: 4px;
    margin: 0.75rem 0 0;
    padding: 0.6rem 0.75rem;
}

.form-error[b-8lv0u78fkh] {
    background: #fff1f2;
    color: #9f1239;
}

.form-success[b-8lv0u78fkh] {
    background: #ecfdf5;
    color: #166534;
}

.admin-record-buttons[b-8lv0u78fkh] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.danger-confirmation[b-8lv0u78fkh] {
    background: #fff7ed;
    border: 1px solid #fb923c;
    border-radius: 6px;
    color: #9a3412;
    margin: 0.75rem 0;
    padding: 0.75rem;
}

.danger-confirmation p[b-8lv0u78fkh] {
    margin: 0.35rem 0 0.75rem;
}

.danger-confirmation label[b-8lv0u78fkh] {
    align-items: start;
    display: flex;
    font-weight: 700;
    gap: 0.5rem;
}

.danger-button[b-8lv0u78fkh] {
    border-color: #be123c;
    color: #9f1239;
    margin-left: 0.5rem;
}

@media (max-width: 700px) {
    .admin-form-grid[b-8lv0u78fkh] {
        grid-template-columns: 1fr;
    }

    .admin-form-grid .wide-field[b-8lv0u78fkh],
    .admin-form-grid .checkbox-field[b-8lv0u78fkh] {
        grid-column: auto;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.site-shell[b-s4kskhkphu] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header[b-s4kskhkphu] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem clamp(1rem, 4vw, 3rem);
    background: var(--fd-midnight);
}

.brand[b-s4kskhkphu] {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--fd-cream);
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
}

.brand[b-s4kskhkphu]  .brand-mark {
    display: block;
    border-radius: 7px;
}

.site-nav[b-s4kskhkphu] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-nav a[b-s4kskhkphu] {
    color: rgba(244, 237, 228, 0.78);
    font-size: 0.95rem;
    text-decoration: none;
}

.site-nav a:hover[b-s4kskhkphu] {
    color: var(--fd-teal-bright);
}

.site-main[b-s4kskhkphu] {
    flex: 1;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 3rem;
}

.employee-account-context[b-s4kskhkphu] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem clamp(1rem, 4vw, 3rem);
    border-bottom: 1px solid #99c9bd;
    background: #edf8f5;
    color: #172033;
}

.employee-account-context-details[b-s4kskhkphu] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.employee-account-context-details span[b-s4kskhkphu] {
    color: #475569;
    font-size: 0.875rem;
}

.employee-account-context-actions[b-s4kskhkphu] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.employee-account-context-actions a[b-s4kskhkphu],
.employee-account-context-actions button[b-s4kskhkphu] {
    color: #0f766e;
    font: inherit;
    font-weight: 600;
}

.employee-account-context-actions a[b-s4kskhkphu] {
    text-decoration: none;
}

.employee-account-context-actions form[b-s4kskhkphu] {
    margin: 0;
}

.employee-account-context-actions button[b-s4kskhkphu] {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.site-footer[b-s4kskhkphu] {
    padding: 1rem clamp(1rem, 4vw, 3rem);
    border-top: 1px solid #d6dce5;
    color: #64748b;
    font-size: 0.875rem;
}

#blazor-error-ui[b-s4kskhkphu] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-s4kskhkphu] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

@media (max-width: 640px) {
    .site-header[b-s4kskhkphu] {
        align-items: flex-start;
        flex-direction: column;
    }

    .employee-account-context[b-s4kskhkphu] {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-pyn0l8qvyy],
.components-reconnect-repeated-attempt-visible[b-pyn0l8qvyy],
.components-reconnect-failed-visible[b-pyn0l8qvyy],
.components-pause-visible[b-pyn0l8qvyy],
.components-resume-failed-visible[b-pyn0l8qvyy],
.components-rejoining-animation[b-pyn0l8qvyy] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-pyn0l8qvyy],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-pyn0l8qvyy],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-pyn0l8qvyy],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-pyn0l8qvyy],
#components-reconnect-modal.components-reconnect-retrying[b-pyn0l8qvyy],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-pyn0l8qvyy],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-pyn0l8qvyy],
#components-reconnect-modal.components-reconnect-failed[b-pyn0l8qvyy],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-pyn0l8qvyy] {
    display: block;
}


#components-reconnect-modal[b-pyn0l8qvyy] {
    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-pyn0l8qvyy 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-pyn0l8qvyy 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-pyn0l8qvyy 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-pyn0l8qvyy]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-pyn0l8qvyy 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-pyn0l8qvyy {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-pyn0l8qvyy {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-pyn0l8qvyy {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-pyn0l8qvyy] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-pyn0l8qvyy] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-pyn0l8qvyy] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-pyn0l8qvyy] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-pyn0l8qvyy] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-pyn0l8qvyy] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-pyn0l8qvyy] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-pyn0l8qvyy 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-pyn0l8qvyy] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-pyn0l8qvyy {
    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/Pages/OpsAdmin.razor.rz.scp.css */
.environment-banner[b-5t51bcd3ez] {
    align-items: center;
    background: #eef6ff;
    border: 1px solid #9dc8f5;
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin: 1rem 0;
    padding: 0.75rem 1rem;
}

.environment-banner strong[b-5t51bcd3ez] {
    background: #172033;
    border-radius: 4px;
    color: #ffffff;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.5rem;
}

.environment-banner span:last-child[b-5t51bcd3ez] {
    color: #475569;
    margin-left: auto;
}

.employee-admin-layout[b-5t51bcd3ez] {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.35fr);
    margin-top: 1rem;
}

.admin-tree-panel[b-5t51bcd3ez] {
    align-self: start;
    max-height: 75vh;
    overflow: auto;
}

.admin-tree ul[b-5t51bcd3ez] {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.admin-tree ul ul[b-5t51bcd3ez] {
    border-left: 1px solid #cbd5e1;
    margin-left: 0.75rem;
    padding-left: 0.75rem;
}

.admin-tree li + li[b-5t51bcd3ez] {
    margin-top: 0.35rem;
}

.tree-node-button[b-5t51bcd3ez] {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #172033;
    cursor: pointer;
    display: block;
    font: inherit;
    padding: 0.45rem 0.55rem;
    text-align: left;
    width: 100%;
}

.tree-node-button:hover[b-5t51bcd3ez],
.tree-node-button:focus-visible[b-5t51bcd3ez] {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.tree-node-button.selected[b-5t51bcd3ez] {
    background: #dbeafe;
    border-color: #60a5fa;
}

.tree-node-button span[b-5t51bcd3ez],
.tree-node-button small[b-5t51bcd3ez],
.tree-leaf span[b-5t51bcd3ez],
.tree-leaf small[b-5t51bcd3ez] {
    display: block;
}

.tree-node-button small[b-5t51bcd3ez],
.tree-leaf small[b-5t51bcd3ez],
.tree-status[b-5t51bcd3ez],
.tree-empty[b-5t51bcd3ez],
.source-note[b-5t51bcd3ez] {
    color: #64748b;
    font-size: 0.8rem;
}

.tree-status[b-5t51bcd3ez],
.tree-empty[b-5t51bcd3ez] {
    margin: 0.35rem 0;
    padding-left: 0.55rem;
}

.tree-branch-label[b-5t51bcd3ez] {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.45rem 0.55rem;
}

.tree-leaf[b-5t51bcd3ez] {
    padding: 0.35rem 0.55rem;
}

.admin-detail-panel h3[b-5t51bcd3ez] {
    border-top: 1px solid #d6dce5;
    margin-top: 1.5rem;
    padding-top: 1rem;
}

.admin-table-scroll[b-5t51bcd3ez] {
    overflow-x: auto;
}

.admin-notice[b-5t51bcd3ez] {
    background: #ecfdf5;
    border: 1px solid #86efac;
    border-radius: 6px;
    color: #166534;
    margin: 1rem 0;
    padding: 0.75rem 1rem;
}

.admin-error[b-5t51bcd3ez] {
    background: #fff1f2;
    border: 1px solid #fda4af;
    border-radius: 6px;
    color: #9f1239;
    margin: 1rem 0;
    padding: 0.75rem 1rem;
}

.admin-audit-table td[b-5t51bcd3ez] {
    max-width: 20rem;
    overflow-wrap: anywhere;
    vertical-align: top;
}

.admin-audit-table th:first-child[b-5t51bcd3ez],
.admin-audit-table td:first-child[b-5t51bcd3ez] {
    white-space: nowrap;
}

@media (max-width: 1180px) {
    .employee-admin-layout[b-5t51bcd3ez] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .employee-admin-layout[b-5t51bcd3ez] {
        grid-template-columns: 1fr;
    }

    .admin-tree-panel[b-5t51bcd3ez] {
        max-height: none;
    }

    .environment-banner span:last-child[b-5t51bcd3ez] {
        margin-left: 0;
    }
}
/* /Components/Pages/ProtocolSessionDemo.razor.rz.scp.css */
.protocol-fields[b-jzb41fndk8] {
    grid-template-columns: minmax(260px, 1.4fr) minmax(160px, 0.7fr) minmax(180px, 0.9fr) minmax(120px, 0.5fr);
}

.protocol-workbench[b-jzb41fndk8] {
    padding-top: 0;
    border-top: none;
}

.protocol-panels[b-jzb41fndk8] {
    display: grid;
    grid-template-columns: minmax(340px, 1fr) minmax(340px, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.protocol-panel[b-jzb41fndk8] {
    min-width: 0;
}

.protocol-ssh-fields[b-jzb41fndk8] {
    grid-template-columns: minmax(220px, 0.5fr) minmax(220px, 0.5fr);
}

.protocol-status-bar[b-jzb41fndk8] {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.5rem 0.875rem;
    background: #1e293b;
    border-radius: 6px 6px 0 0;
    font-size: 0.8125rem;
    color: #94a3b8;
    min-height: 2.25rem;
}

.protocol-status-label[b-jzb41fndk8] {
    font-weight: 700;
    color: #f1f5f9;
    white-space: nowrap;
}

.protocol-status-details[b-jzb41fndk8] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.protocol-terminal[b-jzb41fndk8] {
    height: max(320px, calc(100vh - 620px));
    margin: 0;
    overflow: auto;
    padding: 0.875rem;
    background: #020617;
    border-radius: 0 0 6px 6px;
    color: #d1fae5;
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.875rem;
    line-height: 1.45;
    white-space: pre-wrap;
    word-break: break-word;
}

.protocol-ssh-terminal[b-jzb41fndk8] {
    height: max(360px, calc(100vh - 600px));
    overflow: hidden;
    padding: 0.375rem;
    background: #020617;
    border-radius: 0 0 6px 6px;
}

.protocol-ssh-terminal .terminal[b-jzb41fndk8] {
    height: 100%;
}

.protocol-input-label[b-jzb41fndk8] {
    margin-top: 1rem;
}

.protocol-input-label textarea[b-jzb41fndk8] {
    min-height: 5rem;
    resize: vertical;
}

.protocol-send-row[b-jzb41fndk8] {
    margin-top: 0.75rem;
}

.protocol-http-panel[b-jzb41fndk8] {
    display: flex;
    flex-direction: column;
}

.protocol-http-controls[b-jzb41fndk8] {
    padding: 0.75rem 0;
}

.protocol-http-headers[b-jzb41fndk8] {
    min-height: 6rem;
    max-height: 10rem;
    margin: 0 0 0.75rem;
    overflow: auto;
    padding: 0.75rem;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    color: #334155;
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.8125rem;
    white-space: pre-wrap;
    word-break: break-word;
}

.protocol-http-frame[b-jzb41fndk8] {
    flex: 1;
    min-height: 320px;
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background: #fff;
}

@media (max-width: 820px) {
    .protocol-fields[b-jzb41fndk8],
    .protocol-ssh-fields[b-jzb41fndk8] {
        grid-template-columns: 1fr;
    }

    .protocol-panels[b-jzb41fndk8] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/RemoteSessionDemo.razor.rz.scp.css */
.connect-fields[b-6tec0o2lko] {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 1.25rem;
}

.field-label[b-6tec0o2lko] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: #475569;
}

.field-label input[b-6tec0o2lko],
.field-label select[b-6tec0o2lko] {
    padding: 0.5rem 0.625rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #172033;
    background: #ffffff;
}

.field-label input:focus[b-6tec0o2lko],
.field-label select:focus[b-6tec0o2lko] {
    outline: 2px solid #0f766e;
    outline-offset: 1px;
    border-color: transparent;
}

.token-status[b-6tec0o2lko] {
    min-height: 1.25rem;
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: #475569;
}

.token-status.error[b-6tec0o2lko] {
    color: #b91c1c;
}

.token-status.success[b-6tec0o2lko] {
    color: #0f766e;
}

.vnc-viewer[b-6tec0o2lko] {
    padding-top: 0;
    border-top: none;
}

.vnc-status-bar[b-6tec0o2lko] {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.5rem 0.875rem;
    background: #1e293b;
    border-radius: 6px 6px 0 0;
    font-size: 0.8125rem;
    color: #94a3b8;
    min-height: 2.25rem;
}

.vnc-status-label[b-6tec0o2lko] {
    font-weight: 700;
    color: #f1f5f9;
    white-space: nowrap;
}

.vnc-status-details[b-6tec0o2lko] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vnc-screen[b-6tec0o2lko] {
    height: max(480px, calc(100vh - 480px));
    background: #000000;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
}
