/* _content/Remotely_Server/Components/AlertsFrame.razor.rz.scp.css */
#alertsButton[b-wmpntl335p] {
    position: absolute;
    top: 75px;
    right: 5px;
    z-index: 4;
    transition: .5s ease left;
    user-select: none;
}


#alertsFrame[b-wmpntl335p] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: translateX(100%);
    width: 350px;
    overflow-x: hidden;
    overflow-y: auto;
    text-align: center;
    opacity: 0;
    z-index: 4;
    transition: .25s ease all;
}

    #alertsFrame.open[b-wmpntl335p] {
        opacity: 1;
        transition: .25s ease all;
        pointer-events: unset;
        transform: translateX(0);
    }


@media (min-width: 641px) {
    #alertsButton[b-wmpntl335p] {
        top: 5px;
    }

}
/* _content/Remotely_Server/Components/ColorPicker.razor.rz.scp.css */
.color-sample[b-ebj57ptbqm] {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}
/* _content/Remotely_Server/Components/Devices/ChatCard.razor.rz.scp.css */
.chat-card[b-bvi6fonci1] {
    display: grid;
    grid-template-rows: auto auto auto;
}

.chat-header[b-bvi6fonci1] {
    display: grid;
    grid-template-columns: 1fr auto;
    user-select: none;
    cursor: pointer;
    padding: 5px 10px;
}

.chat-messages-window[b-bvi6fonci1] {
    overflow-y: auto;
    height: 0;
    opacity: 0;
    padding: 0;
    transition: .25s ease all;
}

.chat-card.expanded .chat-messages-window[b-bvi6fonci1] {
    height: 20em;
    opacity: 1;
    padding: 5px 10px;
    transition: .25s ease all;
}

.chat-input[b-bvi6fonci1] {
    width: 100%;
    height: 0;
    opacity: 0;
    resize: none;
    border: 1px solid gray;
}

.chat-card.expanded .chat-input[b-bvi6fonci1] {
    height: 2.5em;
    opacity: 1;
    transition: .25s ease all;
}

.chat-history-item-system[b-bvi6fonci1] {

}

.chat-history-item-device[b-bvi6fonci1] {

}

.chat-history-item-self[b-bvi6fonci1] {
    text-align: right;

}

.chat-bubble[b-bvi6fonci1] {
    position: relative;
    width: 80%;
    padding: .5em 1em .5em 1em;
    border-radius: 5px;
}
/* _content/Remotely_Server/Components/Devices/ChatFrame.razor.rz.scp.css */
.chat-frame[b-yc1vo2f9rd] {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 25em;
    max-width: 90%;
    max-height: 100vh;
    overflow-y: auto;
    z-index: 3;
}
/* _content/Remotely_Server/Components/Devices/DeviceCard.razor.rz.scp.css */
.device-card[b-nmpx2i1h91] {
    display: flex;
    min-width: 0;
    width: 100%;
    flex-direction: column;
    padding: 1rem;
    color: #d9e5ef;
    background: linear-gradient(145deg, #1b2b3c 0%, #152333 100%);
    border: 1px solid #2c4054;
    border-radius: .95rem;
    box-shadow: 0 8px 22px rgba(2, 10, 20, .16);
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.device-card:hover[b-nmpx2i1h91] {
    border-color: #3c6a76;
    box-shadow: 0 13px 28px rgba(2, 10, 20, .25);
    transform: translateY(-2px);
}

.device-card.expanded[b-nmpx2i1h91] {
    grid-column: 1 / -1;
    cursor: default;
    border-color: #2fd5b0;
    box-shadow: 0 16px 34px rgba(2, 10, 20, .3);
}

.device-card-header[b-nmpx2i1h91],
.device-card-footer[b-nmpx2i1h91],
.device-detail-heading[b-nmpx2i1h91] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.device-card-header[b-nmpx2i1h91] {
    min-height: 2rem;
}

.device-status-block[b-nmpx2i1h91],
.device-card-header-actions[b-nmpx2i1h91],
.device-detail-actions[b-nmpx2i1h91],
.device-detail-actions > *[b-nmpx2i1h91],
.detail-copy[b-nmpx2i1h91] {
    display: flex;
    align-items: center;
    gap: .45rem;
}

.device-status-dot[b-nmpx2i1h91] {
    width: .55rem;
    height: .55rem;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(99, 223, 134, .1);
}

.device-status-dot.online[b-nmpx2i1h91] {
    background: #63df86;
}

.device-status-dot.offline[b-nmpx2i1h91] {
    background: #718294;
    box-shadow: 0 0 0 4px rgba(113, 130, 148, .1);
}

.device-status-label[b-nmpx2i1h91] {
    color: #b7c8d7;
    font-size: .76rem;
    font-weight: 600;
}

.device-warning-badge[b-nmpx2i1h91] {
    padding: .18rem .4rem;
    color: #ffd68a;
    background: rgba(246, 183, 73, .12);
    border: 1px solid rgba(246, 183, 73, .3);
    border-radius: 999px;
    font-size: .65rem;
}

.device-card-header-actions input[b-nmpx2i1h91] {
    width: 1rem;
    height: 1rem;
    accent-color: #2fd5b0;
}

.device-identity[b-nmpx2i1h91] {
    display: flex;
    align-items: center;
    gap: .8rem;
    min-width: 0;
    margin: 1rem 0 .85rem;
}

.device-icon[b-nmpx2i1h91] {
    display: grid;
    flex: 0 0 2.85rem;
    width: 2.85rem;
    height: 2.85rem;
    place-items: center;
    color: #2fd5b0;
    background: rgba(47, 213, 176, .12);
    border: 1px solid rgba(47, 213, 176, .2);
    border-radius: .8rem;
    font-size: 1.25rem;
}

.device-name-block[b-nmpx2i1h91] {
    min-width: 0;
}

.device-name-block h2[b-nmpx2i1h91] {
    overflow: hidden;
    margin: 0;
    color: #f3f7fa;
    font-size: 1.08rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.device-name-block p[b-nmpx2i1h91] {
    overflow: hidden;
    margin: .2rem 0 0;
    color: #8399ad;
    font-size: .76rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.device-primary-meta[b-nmpx2i1h91] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .5rem;
    padding: .7rem 0;
    border-top: 1px solid rgba(117, 147, 170, .16);
    border-bottom: 1px solid rgba(117, 147, 170, .16);
}

.device-primary-meta span[b-nmpx2i1h91] {
    min-width: 0;
    overflow: hidden;
    color: #b4c5d4;
    font-size: .74rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.device-primary-meta b[b-nmpx2i1h91] {
    display: block;
    margin-bottom: .18rem;
    color: #758da3;
    font-size: .64rem;
    font-weight: 600;
}

.device-metric-grid[b-nmpx2i1h91] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    padding: .9rem 0 .5rem;
}

.device-metric[b-nmpx2i1h91] {
    min-width: 0;
}

.device-metric > span[b-nmpx2i1h91],
.detail-item > span[b-nmpx2i1h91],
.device-edit-grid label[b-nmpx2i1h91] {
    display: block;
    margin-bottom: .25rem;
    color: #7790a5;
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .02em;
}

.device-metric strong[b-nmpx2i1h91] {
    color: #e7f0f6;
    font-size: .9rem;
}

.metric-bar[b-nmpx2i1h91] {
    height: .27rem;
    margin-top: .35rem;
    overflow: hidden;
    background: #0e1925;
    border-radius: 99px;
}

.metric-bar i[b-nmpx2i1h91] {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #2fd5b0, #63df86);
    border-radius: inherit;
}

.device-card-footer[b-nmpx2i1h91] {
    margin-top: .3rem;
    color: #758ca1;
    font-size: .68rem;
}

.device-last-online[b-nmpx2i1h91] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.device-agent-version[b-nmpx2i1h91] {
    flex: 0 0 auto;
}

.device-quick-actions[b-nmpx2i1h91] {
    display: flex;
    gap: .45rem;
    margin-top: 1rem;
}

.device-quick-actions .btn[b-nmpx2i1h91] {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    padding: .48rem .55rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.device-quick-actions .btn-primary[b-nmpx2i1h91],
.device-detail-actions .btn-primary[b-nmpx2i1h91] {
    background: #23b894;
    border-color: #23b894;
}

.device-detail-panel[b-nmpx2i1h91] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(117, 147, 170, .2);
}

.device-detail-heading[b-nmpx2i1h91] {
    align-items: flex-end;
    margin-bottom: 1rem;
}

.device-detail-heading h3[b-nmpx2i1h91] {
    margin: .2rem 0 0;
    color: #f3f7fa;
    font-size: 1.25rem;
}

.device-detail-actions[b-nmpx2i1h91] {
    flex-wrap: wrap;
}

.device-detail-grid[b-nmpx2i1h91] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .7rem;
}

.detail-item[b-nmpx2i1h91] {
    min-width: 0;
    padding: .7rem;
    background: rgba(8, 17, 27, .3);
    border: 1px solid rgba(117, 147, 170, .14);
    border-radius: .6rem;
}

.detail-item strong[b-nmpx2i1h91],
.detail-item code[b-nmpx2i1h91] {
    display: block;
    overflow: hidden;
    color: #dce8f1;
    font-size: .78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-copy code[b-nmpx2i1h91] {
    min-width: 0;
    flex: 1;
}

.device-edit-form[b-nmpx2i1h91] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(117, 147, 170, .16);
}

.device-edit-grid[b-nmpx2i1h91] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .8rem;
}

.device-note-field[b-nmpx2i1h91] {
    grid-column: span 3;
}

.device-edit-grid .form-control[b-nmpx2i1h91] {
    color: #e2edf5;
    background: #101d2b;
    border-color: #30465b;
}

.device-edit-grid textarea[b-nmpx2i1h91] {
    min-height: 5rem;
}

.device-progress-stack[b-nmpx2i1h91] {
    margin-top: .75rem;
}

.icon-action.subtle[b-nmpx2i1h91] {
    width: 1.85rem;
    height: 1.85rem;
    background: transparent;
    border-color: transparent;
}

@media (max-width: 900px) {
    .device-detail-grid[b-nmpx2i1h91] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .device-edit-grid[b-nmpx2i1h91] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .device-note-field[b-nmpx2i1h91] {
        grid-column: span 2;
    }
}

@media (max-width: 520px) {
    .device-card[b-nmpx2i1h91] {
        padding: .8rem;
    }

    .device-primary-meta[b-nmpx2i1h91],
    .device-metric-grid[b-nmpx2i1h91],
    .device-detail-grid[b-nmpx2i1h91],
    .device-edit-grid[b-nmpx2i1h91] {
        grid-template-columns: 1fr;
    }

    .device-note-field[b-nmpx2i1h91] {
        grid-column: auto;
    }

    .device-detail-heading[b-nmpx2i1h91] {
        align-items: stretch;
        flex-direction: column;
    }

    .device-detail-actions[b-nmpx2i1h91] {
        width: 100%;
    }

    .device-detail-actions > *[b-nmpx2i1h91] {
        flex: 1;
    }
}
/* _content/Remotely_Server/Components/Devices/DevicesFrame.razor.rz.scp.css */
.devices-page[b-unathrbj2p] {
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
    padding: 1.25rem 0 2.5rem;
}

.device-page-header[b-unathrbj2p],
.device-toolbar-secondary[b-unathrbj2p],
.device-list-heading[b-unathrbj2p] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.device-page-header[b-unathrbj2p] {
    margin-bottom: 1.35rem;
}

.device-page-header h1[b-unathrbj2p] {
    margin: .15rem 0 .35rem;
    color: #f5f8fb;
    font-size: clamp(1.65rem, 2.4vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -.03em;
}

.device-page-header p[b-unathrbj2p] {
    margin: 0;
    color: #94a8bc;
}

.eyebrow[b-unathrbj2p] {
    color: #2fd5b0;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
}

.device-page-actions[b-unathrbj2p],
.device-filter-group[b-unathrbj2p],
.device-list-actions[b-unathrbj2p],
.device-pagination[b-unathrbj2p] {
    display: flex;
    align-items: center;
    gap: .55rem;
}

.icon-action[b-unathrbj2p] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    color: #c7d5e4;
    background: #1b2939;
    border: 1px solid #314359;
    border-radius: .65rem;
}

.icon-action:hover:not(:disabled)[b-unathrbj2p] {
    color: #fff;
    border-color: #2fd5b0;
    background: #203e49;
}

.icon-action:disabled[b-unathrbj2p] {
    opacity: .45;
}

.refresh-action[b-unathrbj2p] {
    min-height: 2.35rem;
    border: 0;
    background: #23b894;
}

.device-summary-grid[b-unathrbj2p] {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .85rem;
    margin-bottom: 1.25rem;
}

.summary-card[b-unathrbj2p] {
    display: flex;
    align-items: center;
    gap: .8rem;
    min-height: 6.35rem;
    padding: 1rem;
    color: #c8d5e2;
    background: linear-gradient(135deg, #1b2a3b, #172332);
    border: 1px solid #2c4053;
    border-radius: .9rem;
    box-shadow: 0 10px 24px rgba(2, 10, 20, .16);
}

.summary-icon[b-unathrbj2p] {
    display: grid;
    flex: 0 0 2.45rem;
    width: 2.45rem;
    height: 2.45rem;
    place-items: center;
    color: #2fd5b0;
    background: rgba(47, 213, 176, .13);
    border-radius: .75rem;
}

.summary-card span[b-unathrbj2p],
.summary-card small[b-unathrbj2p] {
    display: block;
    color: #8fa4b8;
    font-size: .72rem;
}

.summary-card strong[b-unathrbj2p] {
    display: block;
    margin: .18rem 0;
    color: #f5f8fb;
    font-size: 1.55rem;
    line-height: 1;
}

.summary-online .summary-icon[b-unathrbj2p] {
    color: #63df86;
    background: rgba(99, 223, 134, .13);
}

.summary-offline .summary-icon[b-unathrbj2p] {
    color: #96a5b4;
    background: rgba(150, 165, 180, .13);
}

.device-toolbar[b-unathrbj2p] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .85rem;
    padding: .8rem;
    background: #152231;
    border: 1px solid #2b3e52;
    border-radius: .85rem;
}

.device-search[b-unathrbj2p] {
    position: relative;
    flex: 1 1 16rem;
    min-width: 12rem;
}

.device-search .oi[b-unathrbj2p] {
    position: absolute;
    top: 50%;
    left: .85rem;
    z-index: 1;
    color: #7891a7;
    transform: translateY(-50%);
}

.device-search input[b-unathrbj2p] {
    padding-left: 2.35rem;
}

.device-filter-group .form-select[b-unathrbj2p] {
    min-width: 8.5rem;
}

.device-filter-group .sort-select[b-unathrbj2p] {
    min-width: 9.5rem;
}

.device-toolbar-secondary[b-unathrbj2p] {
    min-height: 3.2rem;
    padding: .8rem .15rem;
}

.filter-chips[b-unathrbj2p] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .45rem;
}

.filter-chip[b-unathrbj2p] {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem .55rem;
    color: #bfeee4;
    background: rgba(47, 213, 176, .12);
    border: 1px solid rgba(47, 213, 176, .28);
    border-radius: 999px;
    font-size: .75rem;
}

.filter-chip button[b-unathrbj2p] {
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    font-size: 1rem;
    line-height: 1;
}

.clear-filters[b-unathrbj2p] {
    padding: .25rem .45rem;
    color: #8fa4b8;
    background: transparent;
    border: 0;
    font-size: .75rem;
}

.device-list-heading[b-unathrbj2p] {
    margin: .55rem 0 .75rem;
    color: #d9e4ee;
}

.device-list-heading strong[b-unathrbj2p] {
    margin-right: .55rem;
    font-size: 1rem;
}

.device-list-heading span[b-unathrbj2p] {
    color: #8197aa;
    font-size: .78rem;
}

.device-pagination > span[b-unathrbj2p] {
    min-width: 3.5rem;
    text-align: center;
}

.device-pagination .form-select[b-unathrbj2p] {
    width: auto;
}

#deviceListDiv[b-unathrbj2p] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: start;
    gap: 1rem;
}

.empty-devices[b-unathrbj2p] {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    padding: 4rem 1rem;
    color: #90a5b8;
    background: #152231;
    border: 1px dashed #355069;
    border-radius: .9rem;
}

.empty-devices .oi[b-unathrbj2p] {
    margin-bottom: .35rem;
    color: #2fd5b0;
    font-size: 1.8rem;
}

.device-list-hint[b-unathrbj2p] {
    margin-top: .8rem;
    color: #71879b;
    font-size: .75rem;
}

@media (max-width: 1200px) {
    .device-summary-grid[b-unathrbj2p] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .device-toolbar[b-unathrbj2p] {
        align-items: stretch;
        flex-direction: column;
    }

    .device-filter-group[b-unathrbj2p] {
        flex-wrap: wrap;
    }
}

@media (max-width: 720px) {
    .devices-page[b-unathrbj2p] {
        padding-top: .75rem;
    }

    .device-page-header[b-unathrbj2p],
    .device-toolbar-secondary[b-unathrbj2p],
    .device-list-heading[b-unathrbj2p] {
        align-items: flex-start;
        flex-direction: column;
    }

    .device-page-actions[b-unathrbj2p] {
        align-self: stretch;
        justify-content: flex-end;
    }

    .device-summary-grid[b-unathrbj2p] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .device-filter-group[b-unathrbj2p] {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .device-filter-group .form-select[b-unathrbj2p] {
        width: 100%;
        min-width: 0;
    }

    .device-filter-group .icon-action[b-unathrbj2p] {
        display: none;
    }

    .device-list-actions[b-unathrbj2p] {
        width: 100%;
    }

    .device-list-actions .btn[b-unathrbj2p] {
        flex: 1;
    }

    .device-pagination[b-unathrbj2p] {
        align-self: stretch;
        justify-content: space-between;
        width: 100%;
    }

    #deviceListDiv[b-unathrbj2p] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .device-summary-grid[b-unathrbj2p] {
        grid-template-columns: 1fr;
    }

    .device-filter-group[b-unathrbj2p] {
        grid-template-columns: 1fr;
    }
}
/* _content/Remotely_Server/Components/Devices/Terminal.razor.rz.scp.css */

.terminal-frame[b-xzibiznfo1] {
    position: fixed;
    bottom: 0;
    left: 260px;
    right: 10px;
    z-index: 2;
    pointer-events: none;
}

    .terminal-frame.open[b-xzibiznfo1]{
        z-index: 4;
    }

    .terminal-header[b-xzibiznfo1] {
        pointer-events: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

.terminal-header .terminal-button[b-xzibiznfo1] {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    pointer-events: all;
}

.terminal-body[b-xzibiznfo1] {
    display: grid;
    grid-template-rows: 1fr auto;
    height: 0;
    overflow: hidden;
    opacity: 0;
    border-radius: 5px;
    transition: .25s ease all;
    pointer-events: all;
}

.terminal-frame.open .terminal-body[b-xzibiznfo1] {
        height: 25rem;
        max-height: 80vh;
        overflow: auto;
        opacity: 1;
        transition: .25s ease all;
    }

.terminal-window[b-xzibiznfo1] {
    font-family: Consolas, 'Lucida Console', Courier New, Courier, monospace;
    overflow-wrap: break-word;
    overflow-y: auto;
    white-space: pre;
}

.terminal-line[b-xzibiznfo1] {
    min-height: 1.3em;
}

.terminal-input-area[b-xzibiznfo1]{
    display: grid;
    grid-template-columns: auto auto 1fr;
    grid-column-gap: .5em;
}

@media (max-width: 641px) {
    .terminal-frame[b-xzibiznfo1] {
        left: 10px;
    }
}
/* _content/Remotely_Server/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-t34zn3ju9d] {
    position: relative;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background: #0d1724;
}

.main[b-t34zn3ju9d] {
    min-width: 0;
    flex: 1;
    background:
        radial-gradient(circle at 75% -20%, rgba(34, 116, 126, .13), transparent 36rem),
        #0d1724;
}

.sidebar[b-t34zn3ju9d] {
    z-index: 10;
    background: #101d2b;
    border-right: 1px solid #23384c;
}

.main > .content[b-t34zn3ju9d] {
    min-height: 100vh;
}

@media (min-width: 641px) {
    .page[b-t34zn3ju9d] {
        flex-direction: row;
    }

    .sidebar[b-t34zn3ju9d] {
        position: sticky;
        top: 0;
        width: 256px;
        min-width: 256px;
        height: 100vh;
        overflow-y: auto;
        scrollbar-color: #29445a transparent;
        scrollbar-width: thin;
    }

    .main > div[b-t34zn3ju9d] {
        padding-right: clamp(1rem, 3vw, 3rem) !important;
        padding-left: clamp(1rem, 3vw, 3rem) !important;
    }
}

@media (max-width: 640.98px) {
    .sidebar[b-t34zn3ju9d] {
        position: sticky;
        top: 0;
    }

    .main > .content[b-t34zn3ju9d] {
        min-height: calc(100vh - 4rem);
    }
}
/* _content/Remotely_Server/Components/Layout/NavMenu.razor.rz.scp.css */
.nc-sidebar-brand[b-wv3ofupuxg] {
    padding: 1.15rem .9rem .85rem;
    background: linear-gradient(180deg, #122538, #101d2b);
    border-bottom: 1px solid #243b50;
}

.navbar-brand[b-wv3ofupuxg] {
    display: block;
    color: #f4f8fb;
    font-size: 1rem;
}

.logo-title[b-wv3ofupuxg] {
    margin-top: .35rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -.02em;
}

.logo-subtitle[b-wv3ofupuxg] {
    margin-top: .2rem;
    color: #2fd5b0;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
}

.navbar-toggler[b-wv3ofupuxg] {
    position: absolute;
    top: 1.1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, .08);
}

.nav[b-wv3ofupuxg] {
    padding: .7rem .55rem 6.75rem;
}

.nav-item[b-wv3ofupuxg] {
    padding: .08rem 0;
    font-size: .82rem;
}

.nav-item:first-of-type[b-wv3ofupuxg] {
    padding-top: 0;
}

.nav-item[b-wv3ofupuxg]  a {
    display: flex;
    align-items: center;
    min-height: 2.55rem;
    padding: .55rem .75rem;
    color: #a8bbcc;
    border-left: 3px solid transparent;
    border-radius: .55rem;
    line-height: 1.3;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.nav-item[b-wv3ofupuxg]  a .oi {
    width: 1.65rem;
    color: #7090a6;
    font-size: .95rem;
}

.nav-item[b-wv3ofupuxg]  a.active {
    color: #effcf9;
    background: rgba(47, 213, 176, .12);
    border-left-color: #2fd5b0;
}

.nav-item[b-wv3ofupuxg]  a.active .oi {
    color: #2fd5b0;
}

.nav-item[b-wv3ofupuxg]  a:hover {
    color: #fff;
    background: rgba(118, 163, 183, .11);
}

.nav-item.px-3.pt-3[b-wv3ofupuxg] {
    margin: 1rem .75rem .35rem;
    padding: .2rem 0 !important;
    color: #5f8098 !important;
    border-bottom: 1px solid #223a4d;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .13em;
}

.nav .btn-link[b-wv3ofupuxg] {
    width: 100%;
    padding: .5rem .75rem;
    color: #9db1c1 !important;
    text-align: left;
    text-decoration: none;
}

.nc-sidebar-user[b-wv3ofupuxg] {
    position: absolute;
    right: .85rem;
    bottom: .9rem;
    left: .85rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .7rem;
    background: #172a3c;
    border: 1px solid #29445a;
    border-radius: .7rem;
}

.nc-sidebar-user-avatar[b-wv3ofupuxg] {
    display: grid;
    flex: 0 0 1.9rem;
    width: 1.9rem;
    height: 1.9rem;
    place-items: center;
    color: #102330;
    background: #2fd5b0;
    border-radius: 50%;
}

.nc-sidebar-user-copy[b-wv3ofupuxg] {
    min-width: 0;
}

.nc-sidebar-user-copy strong[b-wv3ofupuxg],
.nc-sidebar-user-copy span[b-wv3ofupuxg] {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nc-sidebar-user-copy strong[b-wv3ofupuxg] {
    color: #e9f2f7;
    font-size: .75rem;
}

.nc-sidebar-user-copy span[b-wv3ofupuxg] {
    margin-top: .1rem;
    color: #7892a7;
    font-size: .65rem;
}

@media (min-width: 641px) {
    .navbar-toggler[b-wv3ofupuxg] {
        display: none;
    }

    .collapse[b-wv3ofupuxg] {
        display: block !important;
    }
}

@media (max-width: 640.98px) {
    .nc-sidebar-brand[b-wv3ofupuxg] {
        min-height: 4.2rem;
        padding: .7rem 1rem;
    }

    .nc-sidebar-brand .navbar-brand[b-wv3ofupuxg] {
        padding-right: 3rem;
    }

    .nc-sidebar-brand .ncnetworks-logo-sidebar[b-wv3ofupuxg] {
        display: inline-block;
        width: 132px;
        margin: 0;
    }

    .logo-title[b-wv3ofupuxg],
    .logo-subtitle[b-wv3ofupuxg],
    .nc-sidebar-user[b-wv3ofupuxg] {
        display: none;
    }

    .nav[b-wv3ofupuxg] {
        padding-bottom: 1rem;
    }
}
/* _content/Remotely_Server/Components/LoadingSignal.razor.rz.scp.css */
.signal-background[b-3f88qoj6mr] {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
}

.signal-wrapper[b-3f88qoj6mr] {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.signal[b-3f88qoj6mr] {
    display: inline-block;
    border-width: 8px;
    border-style: solid;
    margin-top: 10px;
    border-radius: 100%;
    height: 50px;
    width: 50px;
    opacity: 0;
    transform-origin: center;
    animation: pulsate-b-3f88qoj6mr .85s ease-out;
    animation-iteration-count: infinite;
}

    .signal.signal-dark[b-3f88qoj6mr] {
        border-color: whitesmoke;
    }
    .signal.signal-light[b-3f88qoj6mr] {
        border-color: #333;
    }

@keyframes pulsate-b-3f88qoj6mr {
    0% {
        transform: scale(.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}
/* _content/Remotely_Server/Components/Pages/Branding.razor.rz.scp.css */
.branding-icon[b-l3xyccfb1h] {
    max-width: 8rem;
    height: auto;
}
/* _content/Remotely_Server/Components/Pages/Credits.razor.rz.scp.css */
li[b-hs9f665pat] {
    word-wrap: break-word;
}
/* _content/Remotely_Server/Components/Pages/GetSupport.razor.rz.scp.css */
input[type='checkbox'][b-h9slaovdcx] {
    width: 25px;
    height: 25px;
}
/* _content/Remotely_Server/Components/Pages/ManageOrganization.razor.rz.scp.css */
/* _content/Remotely_Server/Components/Pages/ServerConfig.razor.rz.scp.css */
.list-box[b-8agd5wt5ap] {
    padding: 1em;
    border: 2px solid gray;
    height: 8em;
    overflow-y: scroll;
    overflow-x: hidden;
    white-space: nowrap;
    border-radius: 5px;
}

#saveButton[b-8agd5wt5ap] {
    position: fixed;
    right: 40px;
    bottom: 20px;
}
/* _content/Remotely_Server/Components/Pages/ServerLogs.razor.rz.scp.css */
.buttons-row[b-gzlf2la9k2] {
    display: grid;
    grid-template-columns: auto auto 1fr;
    grid-column-gap: 2em;
}

.filters-row[b-gzlf2la9k2] {
    display: grid;
    grid-template-columns: auto auto auto 1fr;
    grid-column-gap: 1em;
}

.logs-content[b-gzlf2la9k2] {
    width: 100%;
    white-space: pre;
    height: 500px;
}


@media (max-width: 641px) {
    .buttons-row[b-gzlf2la9k2] {
        grid-template-columns: 1fr;
        text-align: center;
        grid-row-gap: 1em;
    }

    .filters-row[b-gzlf2la9k2] {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        grid-row-gap: 0.5em;
    }
}
/* _content/Remotely_Server/Components/Scripts/RunScript.razor.rz.scp.css */
.main-grid[b-tf2fmbck0b] {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-row-gap: 1em;
    grid-template-columns: auto 1fr 1fr;
    grid-column-gap: 2em;
}

.column-wrapper[b-tf2fmbck0b] {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow-y: auto;
}


.item-list-border[b-tf2fmbck0b] {
    border: 1px solid gray;
    padding: .5em;
    height: 100%;
    border-radius: 5px;
    overflow-y: auto;
}
/* _content/Remotely_Server/Components/Scripts/SavedScripts.razor.rz.scp.css */
.outer-grid[b-iw4gf7y9o0] {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-column-gap: 2.5em;
}

.left-outer-grid[b-iw4gf7y9o0] {
    display: grid;
    grid-template-rows: auto 1fr;
}

.scripts-tree-view[b-iw4gf7y9o0] {
    border-radius: 5px;
    padding: .5em;

}

.tree-view-wrapper-grid[b-iw4gf7y9o0] {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow-y: auto;
}


@media (max-width: 641px) {
    .controls-section[b-iw4gf7y9o0] {
        display: grid;
        grid-template-columns: 1fr;
    }

}
/* _content/Remotely_Server/Components/Scripts/ScriptSchedules.razor.rz.scp.css */
.item-list-border[b-6bg0zledbf] {
    border: 1px solid gray;
    padding: .5em;
    height: 300px;
    border-radius: 5px;
    overflow-y: auto;
}
/* _content/Remotely_Server/Components/ToastHarness.razor.rz.scp.css */
.toast-harness[b-lq14gki6p0] {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 5;
    user-select: none;
    pointer-events: none;
}


.toast-message[b-lq14gki6p0] {
    background-color: rgb(25,25,25);
    color: white;
    transform: translate(0, 0);
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    opacity: 1;
    color: white;
    border-radius: 5px;
    user-select: none;
    pointer-events: none;
    animation-name: toast-message-b-lq14gki6p0;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
}

@keyframes toast-message-b-lq14gki6p0 {
    from {
        transform: translate(0, 0);
        opacity: 1;
    }

    to {
        transform: translate(calc(100% + 50px), 0);
        opacity: 0;
    }
}
/* _content/Remotely_Server/Components/TreeView/TreeView.razor.rz.scp.css */
.tree-view-wrapper[b-9nxcv99jti]{
    overflow-y: auto;
}
/* _content/Remotely_Server/Components/TreeView/TreeViewItem.razor.rz.scp.css */
.tree-view-item[b-75aqzouzll] {
   padding: .25em .5em .25em .5em;
}
