/* /Components/CustomDropdown.razor.rz.scp.css */
.custom-dropdown[b-zs5jtr06hj] {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 2.45rem;
    border: 1px solid rgba(82, 101, 140, 0.34);
    border-radius: 6px;
    background: rgba(10, 17, 29, 0.88);
    color: #d9e4fb;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.custom-dropdown:hover[b-zs5jtr06hj],
.custom-dropdown.is-open[b-zs5jtr06hj] {
    border-color: rgba(79, 118, 201, 0.65);
    box-shadow: 0 10px 30px rgba(11, 20, 42, 0.26);
}

.custom-dropdown-label[b-zs5jtr06hj] {
    padding-left: 0.8rem;
    color: #aab8d2;
    font-size: 0.88rem;
    white-space: nowrap;
}

.custom-dropdown-trigger[b-zs5jtr06hj] {
    min-width: 0;
    min-height: 2.45rem;
    height: 100%;
    border: 0;
    background: transparent;
    color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    padding: 0 0.8rem;
    cursor: pointer;
}

.custom-dropdown:not(.compact) .custom-dropdown-trigger[b-zs5jtr06hj] {
    min-width: 7.5rem;
    padding-left: 0.1rem;
}

.custom-dropdown.compact .custom-dropdown-trigger[b-zs5jtr06hj] {
    min-width: 10rem;
}

.custom-dropdown-value[b-zs5jtr06hj] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-dropdown-caret[b-zs5jtr06hj] {
    width: 1rem;
    height: 1rem;
    color: #8ea2c7;
    flex: 0 0 auto;
    transition: transform 0.18s ease;
}

.custom-dropdown.is-open .custom-dropdown-caret[b-zs5jtr06hj] {
    transform: rotate(180deg);
}

.custom-dropdown-menu[b-zs5jtr06hj] {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    z-index: 41;
    min-width: 100%;
    display: grid;
    gap: 0.2rem;
    padding: 0.35rem;
    border: 1px solid rgba(82, 101, 140, 0.34);
    border-radius: 6px;
    background: #0f1726;
    box-shadow: 0 18px 48px rgba(0, 4, 14, 0.42);
}

.custom-dropdown-backdrop[b-zs5jtr06hj] {
    position: fixed;
    inset: 0;
    z-index: 40;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
}

.custom-dropdown-option[b-zs5jtr06hj] {
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #d9e4fb;
    text-align: left;
    padding: 0.65rem 0.75rem;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
}

.custom-dropdown-option:hover[b-zs5jtr06hj] {
    background: #18253c;
    color: #f8fbff;
}

.custom-dropdown-option.is-selected[b-zs5jtr06hj] {
    background: #2e6dff;
    color: #f8fbff;
}

@media (max-width: 820px) {
    .custom-dropdown[b-zs5jtr06hj] {
        width: 100%;
    }

    .custom-dropdown-trigger[b-zs5jtr06hj] {
        width: 100%;
    }

    .custom-dropdown.compact .custom-dropdown-trigger[b-zs5jtr06hj],
    .custom-dropdown:not(.compact) .custom-dropdown-trigger[b-zs5jtr06hj] {
        min-width: 0;
    }
}
/* /Components/Layout/AuthLayout.razor.rz.scp.css */
.auth-layout-shell[b-li0u5xggp2] {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
    background:
        radial-gradient(circle at top, rgba(91, 143, 255, 0.16), transparent 32%),
        linear-gradient(180deg, rgba(5, 11, 20, 0.98), rgba(3, 8, 18, 0.98));
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app-shell[b-hfjkzjs8kx] {
    height: 100vh;
    display: grid;
    grid-template-columns: 17rem minmax(0, 1fr);
    overflow: hidden;
}

.app-sidebar[b-hfjkzjs8kx] {
    height: 100vh;
    min-height: 0;
    overflow: hidden;
    border-right: 1px solid rgba(57, 73, 107, 0.34);
    background: #08111d;
}

.app-main[b-hfjkzjs8kx] {
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
}

.app-topbar[b-hfjkzjs8kx] {
    position: sticky;
    top: 0;
    z-index: 10;
    min-height: 4.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(57, 73, 107, 0.34);
    background: rgba(6, 11, 21, 0.88);
    backdrop-filter: blur(18px);
}

.topbar-page[b-hfjkzjs8kx] {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #eff5ff;
    font-size: 1.05rem;
    font-weight: 700;
}

.topbar-page-icon[b-hfjkzjs8kx] {
    width: 1.65rem;
    height: 1.65rem;
    display: grid;
    place-items: center;
    color: #a8bde4;
}

.topbar-page-icon svg[b-hfjkzjs8kx],
.topbar-icon svg[b-hfjkzjs8kx],
.profile-caret[b-hfjkzjs8kx] {
    width: 100%;
    height: 100%;
}

.topbar-actions[b-hfjkzjs8kx] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.topbar-search[b-hfjkzjs8kx],
.topbar-icon[b-hfjkzjs8kx],
.topbar-profile[b-hfjkzjs8kx] {
    border: 1px solid rgba(72, 93, 136, 0.3);
    background: rgba(10, 16, 28, 0.88);
}

.topbar-profile-form[b-hfjkzjs8kx] {
    margin: 0;
}

.topbar-search[b-hfjkzjs8kx] {
    min-width: 17rem;
    min-height: 2.8rem;
    height: 2.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 6px;
    padding: 0 0.85rem;
    color: #8ea2c7;
}

.topbar-search svg[b-hfjkzjs8kx] {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
}

.topbar-search input[b-hfjkzjs8kx] {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: #eff5ff;
    min-width: 0;
}

.topbar-search input[b-hfjkzjs8kx]::placeholder {
    color: #7b8daa;
}

.search-shortcut[b-hfjkzjs8kx] {
    color: #899ab9;
    font-size: 0.86rem;
    white-space: nowrap;
}

.topbar-icon[b-hfjkzjs8kx] {
    position: relative;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 6px;
    display: grid;
    place-items: center;
    color: #b7c7e6;
}

.topbar-icon.has-badge .badge-dot[b-hfjkzjs8kx] {
    position: absolute;
    top: 0.1rem;
    right: 0.1rem;
    min-width: 1rem;
    height: 1rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #2d6fff;
    color: #f8fbff;
    font-size: 0.68rem;
    font-weight: 700;
}

.topbar-profile[b-hfjkzjs8kx] {
    appearance: none;
    border: 1px solid rgba(72, 93, 136, 0.3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 2.8rem;
    height: 2.8rem;
    border-radius: 6px;
    padding: 0 0.6rem 0 0.35rem;
    color: inherit;
    cursor: pointer;
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.topbar-profile:hover[b-hfjkzjs8kx],
.topbar-profile:focus-visible[b-hfjkzjs8kx] {
    border-color: rgba(91, 143, 255, 0.42);
    transform: translateY(-1px);
}

.profile-avatar[b-hfjkzjs8kx] {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 6px;
    display: grid;
    place-items: center;
    background: rgba(37, 49, 78, 0.92);
    color: #f7fbff;
    font-weight: 700;
}

.profile-copy[b-hfjkzjs8kx] {
    display: grid;
    gap: 0.15rem;
}

.profile-copy strong[b-hfjkzjs8kx] {
    color: #f3f7ff;
    font-size: 0.98rem;
}

.profile-copy span[b-hfjkzjs8kx] {
    color: #8ea2c7;
    font-size: 0.84rem;
}

.profile-caret[b-hfjkzjs8kx] {
    width: 1rem;
    height: 1rem;
    color: #8ea2c7;
}

.app-content[b-hfjkzjs8kx] {
    min-height: 0;
    overflow-y: auto;
    padding: 1.35rem 1.5rem 2rem;
}

@media (max-width: 1180px) {
    .app-shell[b-hfjkzjs8kx] {
        height: auto;
        overflow: visible;
        grid-template-columns: 1fr;
    }

    .app-sidebar[b-hfjkzjs8kx] {
        height: auto;
        min-height: 0;
        overflow: visible;
        border-right: 0;
        border-bottom: 1px solid rgba(57, 73, 107, 0.34);
    }

    .app-main[b-hfjkzjs8kx],
    .app-content[b-hfjkzjs8kx] {
        min-height: unset;
        overflow: visible;
    }
}

@media (max-width: 920px) {
    .app-topbar[b-hfjkzjs8kx],
    .topbar-actions[b-hfjkzjs8kx] {
        align-items: flex-start;
    }

    .app-topbar[b-hfjkzjs8kx] {
        flex-direction: column;
        padding: 1rem;
    }

    .topbar-actions[b-hfjkzjs8kx] {
        width: 100%;
    }

    .topbar-search[b-hfjkzjs8kx],
    .topbar-profile[b-hfjkzjs8kx] {
        width: 100%;
    }

    .topbar-search[b-hfjkzjs8kx] {
        min-width: 0;
    }

    .app-content[b-hfjkzjs8kx] {
        padding: 1rem;
    }
}

#blazor-error-ui[b-hfjkzjs8kx] {
    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: 1200;
}

#blazor-error-ui .dismiss[b-hfjkzjs8kx] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.sidebar-shell[b-6pk80ct921] {
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.sidebar-brand[b-6pk80ct921] {
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 1.35rem;
    border-bottom: 1px solid rgba(57, 73, 107, 0.34);
    color: #f3f7ff;
    font-size: 1rem;
    font-weight: 700;
}

.brand-icon[b-6pk80ct921] {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 6px;
    display: grid;
    place-items: center;
    background: rgba(46, 109, 255, 0.14);
    color: #5d97ff;
}

.brand-icon svg[b-6pk80ct921],
.nav-icon svg[b-6pk80ct921] {
    width: 100%;
    height: 100%;
}

.sidebar-toggler[b-6pk80ct921] {
    display: none;
    appearance: none;
    cursor: pointer;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 6px;
    position: absolute;
    top: 0.85rem;
    right: 1rem;
    border: 1px solid rgba(72, 93, 136, 0.3);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28214, 227, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M5 7h20M5 15h20M5 23h20'/%3e%3c/svg%3e") no-repeat center/1.55rem rgba(10, 16, 28, 0.88);
}

.sidebar-content[b-6pk80ct921] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.65rem 0 1rem;
}

.sidebar-nav[b-6pk80ct921] {
    display: grid;
    gap: 0.2rem;
    padding: 0 0.9rem;
}

.sidebar-link[b-6pk80ct921],
.sidebar-nav[b-6pk80ct921]  a.sidebar-link {
    width: 100%;
    border: 0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 0.95rem;
    background: transparent;
    color: #b6c4df;
    text-decoration: none;
    font-size: 0.98rem;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.sidebar-link:hover[b-6pk80ct921],
.sidebar-link:focus-visible[b-6pk80ct921],
.sidebar-nav[b-6pk80ct921]  a.sidebar-link:hover,
.sidebar-nav[b-6pk80ct921]  a.sidebar-link:focus-visible {
    background: rgba(35, 53, 81, 0.5);
    color: #f6faff;
    transform: translateX(2px);
}

.sidebar-link.active[b-6pk80ct921],
.sidebar-nav[b-6pk80ct921]  a.sidebar-link.active {
    background: rgba(38, 88, 214, 0.82);
    color: #f6faff;
}

.nav-icon[b-6pk80ct921] {
    width: 1.35rem;
    height: 1.35rem;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
}

.link-badge[b-6pk80ct921] {
    margin-left: auto;
    min-width: 1.55rem;
    height: 1.55rem;
    display: inline-grid;
    place-items: center;
    border-radius: 6px;
    background: rgba(46, 109, 255, 0.7);
    color: #f6faff;
    font-size: 0.78rem;
    font-weight: 700;
}

@media (max-width: 1180px) {
    .sidebar-shell[b-6pk80ct921] {
        position: relative;
    }

    .sidebar-toggler[b-6pk80ct921] {
        display: inline-block;
    }

    .sidebar-content[b-6pk80ct921] {
        display: none;
        padding-top: 0.5rem;
        overflow-y: visible;
    }

    .sidebar-toggler:checked ~ .sidebar-content[b-6pk80ct921] {
        display: flex;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-n443rp1brn],
.components-reconnect-repeated-attempt-visible[b-n443rp1brn],
.components-reconnect-failed-visible[b-n443rp1brn],
.components-pause-visible[b-n443rp1brn],
.components-resume-failed-visible[b-n443rp1brn],
.components-rejoining-animation[b-n443rp1brn] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-n443rp1brn],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-n443rp1brn],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-n443rp1brn],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-n443rp1brn],
#components-reconnect-modal.components-reconnect-retrying[b-n443rp1brn],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-n443rp1brn],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-n443rp1brn],
#components-reconnect-modal.components-reconnect-failed[b-n443rp1brn],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-n443rp1brn] {
    display: block;
}


#components-reconnect-modal[b-n443rp1brn] {
    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-n443rp1brn 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-n443rp1brn 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-n443rp1brn 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-n443rp1brn]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-n443rp1brn 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-n443rp1brn {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-n443rp1brn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-n443rp1brn {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-n443rp1brn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-n443rp1brn] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-n443rp1brn] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-n443rp1brn] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-n443rp1brn] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-n443rp1brn] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-n443rp1brn] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-n443rp1brn 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-n443rp1brn] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-n443rp1brn {
    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/Configuracoes.razor.rz.scp.css */
.settings-page[b-ww135pztef] {
    display: grid;
    gap: 1.5rem;
}

.panel-card[b-ww135pztef] {
    padding: 1.35rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(138, 153, 176, 0.16);
    background: rgba(8, 14, 24, 0.7);
}

.settings-card[b-ww135pztef] {
    display: grid;
    gap: 1.4rem;
}

.section-head[b-ww135pztef] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.section-copy[b-ww135pztef] {
    margin: 0.35rem 0 0;
    color: #8ea2c7;
}

.inline-alert[b-ww135pztef],
.inline-success[b-ww135pztef] {
    border-radius: 1rem;
    padding: 0.9rem 1rem;
}

.inline-alert[b-ww135pztef] {
    background: rgba(255, 92, 92, 0.12);
    border: 1px solid rgba(255, 92, 92, 0.22);
    color: #ffb7b7;
}

.inline-success[b-ww135pztef] {
    background: rgba(45, 184, 102, 0.14);
    border: 1px solid rgba(45, 184, 102, 0.25);
    color: #a7f0c0;
}

.form-grid[b-ww135pztef] {
    display: grid;
    align-items: start;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editor-field[b-ww135pztef] {
    display: grid;
    gap: 0.45rem;
    color: #9cb0d0;
}

.editor-field.wide[b-ww135pztef] {
    grid-column: 1 / -1;
}

.form-input[b-ww135pztef] {
    width: 100%;
    border: 1px solid rgba(138, 153, 176, 0.24);
    border-radius: 0.95rem;
    background: rgba(12, 19, 31, 0.82);
    color: #f2f7ff;
    padding: 0.9rem 1rem;
}

.editor-field small[b-ww135pztef] {
    color: #7487a7;
}

.editor-actions[b-ww135pztef] {
    display: flex;
    gap: 0.75rem;
}

.action-button[b-ww135pztef] {
    appearance: none;
    border: 1px solid rgba(82, 101, 140, 0.34);
    border-radius: 0.85rem;
    background: rgba(10, 17, 29, 0.88);
    color: #d9e4fb;
    padding: 0.8rem 1rem;
    font-weight: 700;
    cursor: pointer;
}

.action-button.primary[b-ww135pztef] {
    background: #2e6dff;
    border-color: rgba(91, 133, 255, 0.72);
    color: #f7fbff;
}

@media (max-width: 720px) {
    .form-grid[b-ww135pztef] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.dashboard-page[b-pguncezqya] {
    display: grid;
    gap: 1.25rem;
}

.loading-shell[b-pguncezqya] {
    min-height: 60vh;
    display: grid;
    place-items: center;
}

.loading-card[b-pguncezqya],
.panel-card[b-pguncezqya],
.summary-card[b-pguncezqya],
.modal-shell[b-pguncezqya],
.empty-state[b-pguncezqya],
.inline-alert[b-pguncezqya] {
    border: 1px solid rgba(72, 93, 136, 0.26);
    background: rgba(9, 17, 31, 0.94);
    box-shadow: 0 22px 58px rgba(0, 4, 14, 0.38);
}

.loading-card[b-pguncezqya] {
    width: min(32rem, 100%);
    border-radius: 6px;
    padding: 2rem;
}

.loading-card h1[b-pguncezqya],
.panel-heading h2[b-pguncezqya],
.empty-state h3[b-pguncezqya],
.info-card h3[b-pguncezqya] {
    margin: 0;
}

.loading-card p[b-pguncezqya],
.summary-label[b-pguncezqya],
.summary-meta[b-pguncezqya],
.server-caption[b-pguncezqya],
.panel-kicker[b-pguncezqya],
.panel-copy[b-pguncezqya],
.detail-metric-card small[b-pguncezqya],
.mini-card span[b-pguncezqya],
.table-caption[b-pguncezqya],
.empty-state p[b-pguncezqya] {
    color: var(--text-muted);
}

.loading-error[b-pguncezqya],
.inline-alert[b-pguncezqya],
.peer-error[b-pguncezqya] {
    border-radius: 6px;
    background: rgba(132, 34, 49, 0.26);
    color: #ffb4bd;
}

.loading-error[b-pguncezqya] {
    margin: 1rem 0 0;
    padding: 0.85rem 1rem;
}

.inline-alert[b-pguncezqya] {
    padding: 0.9rem 1rem;
}

.summary-grid[b-pguncezqya] {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.75rem;
}

.summary-card[b-pguncezqya] {
    min-height: 5.5rem;
    border-radius: 6px;
    padding: 0.9rem 1rem;
    display: block;
    overflow: hidden;
}

.summary-copy[b-pguncezqya] {
    display: grid;
    align-content: start;
    gap: 0.35rem;
}

.summary-label[b-pguncezqya] {
    font-size: 0.8rem;
}

.summary-copy strong[b-pguncezqya] {
    font-size: clamp(1.45rem, 1.7vw, 1.8rem);
    line-height: 1;
    color: #eff5ff;
}

.summary-meta[b-pguncezqya] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
}

.summary-meta[b-pguncezqya]::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 0 0.18rem rgba(255, 255, 255, 0.04);
}

.summary-meta.success[b-pguncezqya] {
    color: #71e28f;
}

.summary-meta.danger[b-pguncezqya] {
    color: #ff6f7d;
}

.summary-meta.neutral[b-pguncezqya] {
    color: #b2bfd8;
}

.summary-chart[b-pguncezqya] {
    display: none;
}

.summary-chart svg[b-pguncezqya],
.graph-chart svg[b-pguncezqya] {
    width: 100%;
    height: 100%;
}

.summary-chart polyline[b-pguncezqya],
.graph-chart polyline[b-pguncezqya] {
    fill: none;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tone-blue polyline[b-pguncezqya],
.metric-bar.tone-blue span[b-pguncezqya],
.tone-blue.status-online .status-dot[b-pguncezqya] {
    stroke: #3a83ff;
    background: #3a83ff;
}

.tone-cyan polyline[b-pguncezqya],
.metric-bar.tone-cyan span[b-pguncezqya] {
    stroke: #2ecbf3;
    background: #2ecbf3;
}

.tone-purple polyline[b-pguncezqya],
.metric-bar.tone-purple span[b-pguncezqya] {
    stroke: #b96dff;
    background: #b96dff;
}

.tone-green polyline[b-pguncezqya],
.metric-bar.tone-green span[b-pguncezqya],
.tone-green .progress-bar span[b-pguncezqya] {
    stroke: #5add77;
    background: #5add77;
}

.tone-orange polyline[b-pguncezqya],
.metric-bar.tone-orange span[b-pguncezqya] {
    stroke: #ff9d42;
    background: #ff9d42;
}

.tone-red polyline[b-pguncezqya],
.metric-bar.tone-red span[b-pguncezqya] {
    stroke: #ff5f7b;
    background: #ff5f7b;
}

.metric-bar.tone-neutral span[b-pguncezqya] {
    background: #8291a9;
}

.panel-card[b-pguncezqya] {
    border-radius: 6px;
    padding: 1rem;
}

.servers-panel[b-pguncezqya] {
    padding: 1rem 1rem 0.45rem;
}

.panel-header[b-pguncezqya] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.panel-header.compact[b-pguncezqya] {
    align-items: flex-start;
}

.panel-heading[b-pguncezqya] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.panel-count[b-pguncezqya],
.status-badge[b-pguncezqya] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.7rem;
    border-radius: 6px;
    padding: 0.22rem 0.7rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.panel-count[b-pguncezqya] {
    background: rgba(39, 58, 92, 0.7);
    color: #d5e2ff;
}

.panel-actions[b-pguncezqya] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-search[b-pguncezqya],
.filter-select[b-pguncezqya],
.header-action[b-pguncezqya],
.row-icon-button[b-pguncezqya] {
    border: 1px solid rgba(82, 101, 140, 0.34);
    background: rgba(10, 17, 29, 0.88);
    color: #d9e4fb;
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.filter-search[b-pguncezqya] {
    min-width: 9.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border-radius: 6px;
    padding: 0.58rem 0.8rem;
}

.filter-search svg[b-pguncezqya] {
    width: 1rem;
    height: 1rem;
    color: #8ea2c7;
    flex: 0 0 auto;
}

.filter-search input[b-pguncezqya],
.filter-select select[b-pguncezqya] {
    border: 0;
    outline: 0;
    background: transparent;
    color: inherit;
    width: 100%;
    min-width: 0;
}

.filter-search input[b-pguncezqya]::placeholder {
    color: #7183a8;
}

.filter-select[b-pguncezqya] {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border-radius: 6px;
    padding: 0.58rem 2rem 0.58rem 0.8rem;
    white-space: nowrap;
}

.filter-select span[b-pguncezqya] {
    color: #aab8d2;
}

.filter-select[b-pguncezqya]::after {
    content: "";
    position: absolute;
    right: 0.75rem;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 1.5px solid #8ea2c7;
    border-bottom: 1.5px solid #8ea2c7;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.filter-select.compact[b-pguncezqya] {
    min-width: 10rem;
    min-height: 2.45rem;
    height: 2.45rem;
    padding-top: 0;
    padding-bottom: 0;
}

.filter-select select[b-pguncezqya] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 100%;
    padding-right: 0.25rem;
    cursor: pointer;
    color-scheme: dark;
}

.filter-select select option[b-pguncezqya] {
    background: #0f1726;
    color: #d9e4fb;
}

.filter-select select:focus[b-pguncezqya] {
    color: #f3f7ff;
}

.filter-select select option:checked[b-pguncezqya] {
    background: #2e6dff;
    color: #f8fbff;
    box-shadow: 0 0 0 999px #2e6dff inset;
}

.filter-select select option:hover[b-pguncezqya],
.filter-select select option:focus[b-pguncezqya] {
    background: #18253c;
    color: #f8fbff;
    box-shadow: 0 0 0 999px #18253c inset;
}

.header-action[b-pguncezqya],
.row-icon-button[b-pguncezqya],
.link-button[b-pguncezqya] {
    cursor: pointer;
}

.header-action[b-pguncezqya],
.link-button[b-pguncezqya] {
    border-radius: 6px;
    padding: 0.62rem 0.85rem;
    font-weight: 600;
    font-size: 0.86rem;
}

.header-action:hover:not(:disabled)[b-pguncezqya],
.row-icon-button:hover[b-pguncezqya],
.filter-search:focus-within[b-pguncezqya],
.filter-select:focus-within[b-pguncezqya] {
    border-color: rgba(79, 118, 201, 0.65);
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(11, 20, 42, 0.26);
}

.header-action:disabled[b-pguncezqya] {
    opacity: 0.68;
    cursor: wait;
}

.header-action.primary[b-pguncezqya] {
    background: #2e6dff;
    border-color: rgba(91, 133, 255, 0.72);
    color: #f7fbff;
}

.header-action.ghost[b-pguncezqya] {
    background: rgba(13, 20, 35, 0.9);
}

.server-table-shell[b-pguncezqya] {
    overflow-x: auto;
}

.server-table[b-pguncezqya] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 1010px;
}

.server-table thead th[b-pguncezqya] {
    padding: 0.68rem 0.8rem 0.62rem;
    color: #aab7ce;
    font-size: 0.76rem;
    font-weight: 500;
    text-align: left;
}

.server-row[b-pguncezqya] {
    cursor: pointer;
}

.server-row td[b-pguncezqya] {
    padding: 0.78rem 0.8rem;
    border-top: 1px solid rgba(53, 69, 99, 0.5);
    background: rgba(11, 18, 31, 0.22);
    vertical-align: middle;
}

.server-row.is-selected td[b-pguncezqya] {
    background: rgba(11, 18, 31, 0.22);
    box-shadow: none;
    border-top-color: rgba(53, 69, 99, 0.5);
}

.server-row:hover td[b-pguncezqya] {
    background: rgba(19, 31, 51, 0.68);
}

.server-row td:first-child[b-pguncezqya] {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.server-row td:last-child[b-pguncezqya] {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.server-identity[b-pguncezqya] {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.server-avatar[b-pguncezqya] {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 6px;
    display: grid;
    place-items: center;
}

.server-avatar svg[b-pguncezqya] {
    width: 1.25rem;
    height: 1.25rem;
}

.server-avatar.tone-server[b-pguncezqya] {
    background: rgba(60, 110, 255, 0.15);
    color: #74a5ff;
}

.server-avatar.tone-database[b-pguncezqya] {
    background: rgba(255, 175, 71, 0.12);
    color: #ffc067;
}

.server-avatar.tone-cloud[b-pguncezqya] {
    background: rgba(147, 167, 198, 0.14);
    color: #d4e2ff;
}

.server-name[b-pguncezqya],
.table-title[b-pguncezqya],
.alert-copy strong[b-pguncezqya] {
    color: #f6f9ff;
    font-weight: 700;
}

.server-caption[b-pguncezqya],
.table-caption[b-pguncezqya] {
    margin-top: 0.2rem;
    font-size: 0.84rem;
}

.status-indicator[b-pguncezqya] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-dot[b-pguncezqya] {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: currentColor;
}

.status-online[b-pguncezqya],
.status-online .status-dot[b-pguncezqya] {
    color: #64da7f;
}

.status-delayed[b-pguncezqya],
.status-delayed .status-dot[b-pguncezqya] {
    color: #ffc55a;
}

.status-offline[b-pguncezqya],
.status-offline .status-dot[b-pguncezqya] {
    color: #ff667b;
}

.status-badge.status-online[b-pguncezqya] {
    background: rgba(51, 172, 89, 0.18);
}

.status-badge.status-delayed[b-pguncezqya] {
    background: rgba(234, 174, 61, 0.18);
}

.status-badge.status-offline[b-pguncezqya] {
    background: rgba(225, 81, 103, 0.18);
}

.metric-cell[b-pguncezqya] {
    display: grid;
    gap: 0.45rem;
    min-width: 7rem;
}

.metric-cell span[b-pguncezqya] {
    font-size: 0.84rem;
}

.metric-bar[b-pguncezqya],
.progress-bar[b-pguncezqya] {
    width: 100%;
    height: 0.3rem;
    border-radius: 999px;
    background: rgba(58, 74, 108, 0.42);
    overflow: hidden;
}

.metric-bar span[b-pguncezqya],
.progress-bar span[b-pguncezqya] {
    display: block;
    height: 100%;
    border-radius: inherit;
}

.network-cell[b-pguncezqya] {
    display: grid;
    gap: 0.45rem;
    color: #dbe7ff;
}

.network-cell strong[b-pguncezqya] {
    font-weight: 700;
    color: #79e49a;
}

.actions-cell[b-pguncezqya] {
    width: 3.9rem;
    text-align: right;
}

.row-icon-button[b-pguncezqya] {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 6px;
    display: inline-grid;
    place-items: center;
}

.row-icon-button svg[b-pguncezqya] {
    width: 1.1rem;
    height: 1.1rem;
}

.details-grid[b-pguncezqya] {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(20rem, 1fr);
    gap: 1rem;
}

.details-panel[b-pguncezqya] {
    padding: 1rem;
}

.detail-cards-grid[b-pguncezqya] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.graph-card[b-pguncezqya],
.detail-metric-card[b-pguncezqya],
.info-card[b-pguncezqya],
.mini-card[b-pguncezqya],
.peer-card[b-pguncezqya],
.disk-card[b-pguncezqya],
.nested-section[b-pguncezqya],
.table-section[b-pguncezqya] {
    border: 1px solid rgba(72, 93, 136, 0.22);
    background: rgba(13, 21, 36, 0.82);
    border-radius: 6px;
}

.graph-card[b-pguncezqya] {
    padding: 0.95rem 1rem 0.9rem;
}

.graph-card-header[b-pguncezqya] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    margin-bottom: 0.75rem;
}

.graph-card-header span[b-pguncezqya] {
    font-size: 0.92rem;
    font-weight: 600;
}

.graph-card-header strong[b-pguncezqya] {
    font-size: 1.15rem;
}

.graph-card-header.split[b-pguncezqya] {
    align-items: flex-start;
}

.dual-metric[b-pguncezqya] {
    display: grid;
    justify-items: end;
    gap: 0.18rem;
}

.dual-metric strong[b-pguncezqya] {
    font-size: 0.95rem;
}

.graph-card-subtitle[b-pguncezqya],
.graph-empty-copy[b-pguncezqya] {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.graph-card-subtitle[b-pguncezqya] {
    margin-top: -0.3rem;
    margin-bottom: 0.65rem;
}

.graph-chart[b-pguncezqya] {
    height: 12rem;
    min-height: 12rem;
}

.graph-chart canvas[b-pguncezqya] {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.network-chart[b-pguncezqya] {
    height: 13rem;
    min-height: 13rem;
}

.graph-card-empty[b-pguncezqya] {
    grid-column: 1 / -1;
}

.graph-empty-copy[b-pguncezqya] {
    margin: 0.3rem 0 0;
    line-height: 1.6;
}

.alerts-panel[b-pguncezqya] {
    padding: 1rem;
}

.link-button[b-pguncezqya] {
    border: 0;
    background: transparent;
    color: #5c95ff;
    padding: 0;
}

.alerts-list[b-pguncezqya] {
    display: grid;
}

.alert-item[b-pguncezqya] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.85rem;
    padding: 0.95rem 0;
    border-top: 1px solid rgba(52, 66, 96, 0.52);
}

.alert-item:first-child[b-pguncezqya] {
    padding-top: 0.25rem;
    border-top: 0;
}

.alert-icon[b-pguncezqya] {
    width: 2rem;
    height: 2rem;
    border-radius: 6px;
    display: grid;
    place-items: center;
}

.alert-icon svg[b-pguncezqya] {
    width: 1rem;
    height: 1rem;
}

.alert-copy[b-pguncezqya] {
    min-width: 0;
}

.alert-copy p[b-pguncezqya],
.alert-copy span[b-pguncezqya] {
    margin: 0.22rem 0 0;
    color: var(--text-muted);
}

.alert-copy span[b-pguncezqya] {
    display: inline-block;
}

.alert-badge[b-pguncezqya] {
    align-self: start;
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    padding: 0.38rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.alert-critical[b-pguncezqya] {
    background: rgba(225, 81, 103, 0.16);
    color: #ff7b90;
}

.alert-warning[b-pguncezqya] {
    background: rgba(255, 184, 77, 0.15);
    color: #ffcd73;
}

.alert-info[b-pguncezqya] {
    background: rgba(61, 122, 255, 0.16);
    color: #77a7ff;
}

.empty-state[b-pguncezqya] {
    border-radius: 6px;
    padding: 1.5rem;
}

.empty-state.compact[b-pguncezqya] {
    padding: 1.2rem;
}

.server-modal-layer[b-pguncezqya] {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: grid;
    justify-items: center;
    align-items: start;
    padding: 1.25rem;
    background: rgba(2, 6, 16, 0.72);
    backdrop-filter: blur(10px);
    pointer-events: none;
}

.server-modal-dialog[b-pguncezqya] {
    width: min(1240px, 100%);
    max-height: 92vh;
    pointer-events: auto;
}

.modal-shell[b-pguncezqya] {
    border-radius: 6px;
    padding: 1.25rem;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 1rem;
    max-height: 92vh;
}

.modal-topbar[b-pguncezqya] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.modal-topbar-actions[b-pguncezqya] {
    display: grid;
    justify-items: end;
    gap: 0.75rem;
}

.panel-kicker[b-pguncezqya] {
    display: block;
    margin-bottom: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.72rem;
}

.panel-copy[b-pguncezqya] {
    margin: 0.45rem 0 0;
    max-width: 42rem;
    line-height: 1.6;
}

.modal-body[b-pguncezqya] {
    min-height: 0;
    overflow-y: auto;
    display: grid;
    gap: 1rem;
    padding-right: 0.2rem;
}

.detail-metric-grid[b-pguncezqya],
.detail-overview-grid[b-pguncezqya],
.section-highlight-grid[b-pguncezqya],
.inventory-grid[b-pguncezqya],
.peer-grid[b-pguncezqya],
.disk-grid[b-pguncezqya],
.stacked-tables[b-pguncezqya],
.database-group[b-pguncezqya],
.sql-database-list[b-pguncezqya] {
    display: grid;
    gap: 1rem;
}

.detail-metric-grid[b-pguncezqya] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-metric-card[b-pguncezqya],
.mini-card[b-pguncezqya] {
    padding: 1.15rem;
}

.detail-metric-card span[b-pguncezqya],
.mini-card span[b-pguncezqya] {
    display: block;
    font-size: 0.84rem;
}

.detail-metric-card strong[b-pguncezqya],
.mini-card strong[b-pguncezqya],
.inventory-tile strong[b-pguncezqya] {
    display: block;
    margin-top: 0.42rem;
    font-size: 1.28rem;
    line-height: 1.2;
}

.detail-overview-grid[b-pguncezqya] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card[b-pguncezqya] {
    padding: 1.2rem;
}

.fact-list[b-pguncezqya] {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.fact-row[b-pguncezqya] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(53, 67, 97, 0.42);
}

.fact-row:last-child[b-pguncezqya] {
    border-bottom: 0;
    padding-bottom: 0;
}

.inventory-grid[b-pguncezqya] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1rem;
}

.inventory-tile[b-pguncezqya] {
    border-radius: 6px;
    padding: 1rem;
    background: rgba(16, 25, 42, 0.86);
    border: 1px solid rgba(72, 93, 136, 0.22);
}

.inventory-tile span[b-pguncezqya] {
    display: block;
    font-size: 0.84rem;
    color: var(--text-muted);
}

.detail-section[b-pguncezqya],
.nested-section[b-pguncezqya],
.table-section[b-pguncezqya] {
    overflow: hidden;
}

.detail-section > summary[b-pguncezqya],
.nested-section > summary[b-pguncezqya],
.table-section > summary[b-pguncezqya] {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.1rem;
    background: rgba(17, 27, 45, 0.86);
    color: #f6f9ff;
    font-weight: 700;
}

.detail-section > summary[b-pguncezqya]::-webkit-details-marker,
.nested-section > summary[b-pguncezqya]::-webkit-details-marker,
.table-section > summary[b-pguncezqya]::-webkit-details-marker {
    display: none;
}

.section-body[b-pguncezqya],
.nested-body[b-pguncezqya] {
    padding: 1.1rem;
}

.section-highlight-grid[b-pguncezqya] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.empty-section[b-pguncezqya] {
    border: 1px dashed rgba(72, 93, 136, 0.32);
    border-radius: 6px;
    padding: 1.2rem;
    background: rgba(15, 23, 38, 0.48);
    color: var(--text-muted);
}

.table-shell[b-pguncezqya] {
    overflow-x: auto;
    border: 1px solid rgba(55, 69, 100, 0.36);
    border-radius: 6px;
}

.data-table[b-pguncezqya] {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    background: rgba(10, 18, 31, 0.38);
}

.compact-table[b-pguncezqya] {
    min-width: 640px;
}

.data-table th[b-pguncezqya],
.data-table td[b-pguncezqya] {
    padding: 0.9rem;
    border-bottom: 1px solid rgba(53, 67, 97, 0.42);
    vertical-align: top;
}

.data-table th[b-pguncezqya] {
    color: #aab7ce;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(15, 23, 38, 0.82);
}

.peer-grid[b-pguncezqya],
.disk-grid[b-pguncezqya] {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.peer-card[b-pguncezqya],
.disk-card[b-pguncezqya] {
    padding: 1rem;
}

.peer-head[b-pguncezqya],
.disk-head[b-pguncezqya] {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: flex-start;
}

.peer-card p[b-pguncezqya] {
    margin: 0.8rem 0;
    line-height: 1.55;
    color: #d4dff4;
}

.peer-meta[b-pguncezqya],
.disk-meta[b-pguncezqya],
.database-meta[b-pguncezqya],
.tag-list[b-pguncezqya] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
}

.peer-meta[b-pguncezqya],
.disk-meta[b-pguncezqya],
.database-meta[b-pguncezqya],
.tag small[b-pguncezqya] {
    color: #b7c4dc;
    font-size: 0.82rem;
}

.peer-error[b-pguncezqya] {
    margin-top: 0.8rem;
    padding: 0.8rem;
    font-size: 0.84rem;
}

.progress-bar[b-pguncezqya] {
    margin: 0.9rem 0;
    height: 0.55rem;
}

.database-meta[b-pguncezqya] {
    margin-bottom: 1rem;
}

.tag-list[b-pguncezqya] {
    margin-top: 1rem;
}

.tag[b-pguncezqya] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.72rem;
    border-radius: 6px;
    background: rgba(14, 22, 36, 0.86);
    border: 1px solid rgba(72, 93, 136, 0.22);
}

@media (max-width: 1360px) {
    .summary-grid[b-pguncezqya] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .detail-cards-grid[b-pguncezqya] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1120px) {
    .details-grid[b-pguncezqya],
    .detail-overview-grid[b-pguncezqya] {
        grid-template-columns: 1fr;
    }

    .detail-metric-grid[b-pguncezqya],
    .section-highlight-grid[b-pguncezqya],
    .inventory-grid[b-pguncezqya] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .panel-header[b-pguncezqya],
    .modal-topbar[b-pguncezqya] {
        flex-direction: column;
        align-items: flex-start;
    }

    .panel-actions[b-pguncezqya],
    .modal-topbar-actions[b-pguncezqya] {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 820px) {
    .summary-grid[b-pguncezqya],
    .detail-cards-grid[b-pguncezqya],
    .detail-metric-grid[b-pguncezqya],
    .section-highlight-grid[b-pguncezqya],
    .inventory-grid[b-pguncezqya] {
        grid-template-columns: 1fr;
    }

    .summary-card[b-pguncezqya],
    .panel-card[b-pguncezqya],
    .loading-card[b-pguncezqya],
    .modal-shell[b-pguncezqya],
    .empty-state[b-pguncezqya] {
        border-radius: 6px;
    }

    .summary-card[b-pguncezqya] {
        min-height: auto;
    }

    .server-table[b-pguncezqya] {
        min-width: 920px;
    }

    .filter-search[b-pguncezqya],
    .filter-select[b-pguncezqya],
    .header-action[b-pguncezqya] {
        width: 100%;
    }
}
/* /Components/Pages/Login.razor.rz.scp.css */
.auth-page[b-ef0etzewk5] {
    width: 100%;
    display: grid;
    justify-items: center;
}

.auth-card[b-ef0etzewk5] {
    width: min(460px, 100%);
    display: grid;
    gap: 1.2rem;
    padding: 2rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(91, 143, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(13, 20, 34, 0.98), rgba(8, 14, 24, 0.98));
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.34);
}

.auth-copy[b-ef0etzewk5] {
    display: grid;
    gap: 0.45rem;
}

.auth-eyebrow[b-ef0etzewk5] {
    margin: 0;
    color: #8ea2c7;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.74rem;
}

.auth-copy h1[b-ef0etzewk5] {
    margin: 0;
    color: #f6faff;
    font-size: 1.95rem;
}

.auth-description[b-ef0etzewk5] {
    margin: 0;
    color: #93a6c8;
    line-height: 1.6;
}

.auth-form[b-ef0etzewk5] {
    display: grid;
    gap: 1rem;
}

.auth-field[b-ef0etzewk5] {
    display: grid;
    gap: 0.45rem;
    color: #9eb0cf;
}

.auth-input[b-ef0etzewk5] {
    width: 100%;
    border: 1px solid rgba(138, 153, 176, 0.24);
    border-radius: 0.95rem;
    background: rgba(12, 19, 31, 0.82);
    color: #f2f7ff;
    padding: 0.9rem 1rem;
}

.auth-submit[b-ef0etzewk5] {
    appearance: none;
    border: 1px solid rgba(91, 143, 255, 0.64);
    border-radius: 0.95rem;
    background: linear-gradient(180deg, #5b8fff, #346fdf);
    color: #f8fbff;
    padding: 0.9rem 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.auth-submit:hover[b-ef0etzewk5],
.auth-submit:focus-visible[b-ef0etzewk5] {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(20, 58, 143, 0.28);
}

.auth-alert[b-ef0etzewk5],
.auth-note[b-ef0etzewk5] {
    border-radius: 1rem;
    padding: 0.9rem 1rem;
    line-height: 1.5;
}

.auth-alert.error[b-ef0etzewk5] {
    background: rgba(255, 92, 92, 0.12);
    border: 1px solid rgba(255, 92, 92, 0.22);
    color: #ffb7b7;
}

.auth-note[b-ef0etzewk5] {
    background: rgba(16, 28, 48, 0.74);
    border: 1px solid rgba(138, 153, 176, 0.14);
    color: #9db0d0;
}
/* /Components/Pages/Registros.razor.rz.scp.css */
.records-page[b-u44d6djssr] {
    display: grid;
    gap: 1.25rem;
}

.loading-shell[b-u44d6djssr] {
    min-height: 60vh;
    display: grid;
    place-items: center;
}

.loading-card[b-u44d6djssr],
.panel-card[b-u44d6djssr],
.summary-card[b-u44d6djssr],
.empty-state[b-u44d6djssr],
.inline-alert[b-u44d6djssr] {
    border: 1px solid rgba(72, 93, 136, 0.26);
    background: rgba(9, 17, 31, 0.94);
    box-shadow: 0 22px 58px rgba(0, 4, 14, 0.38);
}

.loading-card[b-u44d6djssr],
.panel-card[b-u44d6djssr],
.summary-card[b-u44d6djssr],
.empty-state[b-u44d6djssr],
.inline-alert[b-u44d6djssr],
.filter-search[b-u44d6djssr],
.filter-select[b-u44d6djssr],
.header-action[b-u44d6djssr] {
    border-radius: 6px;
}

.loading-card[b-u44d6djssr] {
    width: min(32rem, 100%);
    padding: 2rem;
}

.loading-card h1[b-u44d6djssr],
.panel-heading h1[b-u44d6djssr],
.empty-state h3[b-u44d6djssr] {
    margin: 0;
}

.loading-card p[b-u44d6djssr],
.summary-label[b-u44d6djssr],
.summary-meta[b-u44d6djssr],
.table-caption[b-u44d6djssr],
.empty-state p[b-u44d6djssr] {
    color: var(--text-muted);
}

.loading-error[b-u44d6djssr],
.inline-alert[b-u44d6djssr] {
    background: rgba(132, 34, 49, 0.26);
    color: #ffb4bd;
}

.loading-error[b-u44d6djssr] {
    margin: 1rem 0 0;
    padding: 0.85rem 1rem;
    border-radius: 6px;
}

.inline-alert[b-u44d6djssr] {
    padding: 0.9rem 1rem;
}

.summary-grid[b-u44d6djssr] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.summary-card[b-u44d6djssr] {
    min-height: 5.5rem;
    padding: 0.9rem 1rem;
}

.summary-copy[b-u44d6djssr] {
    display: grid;
    align-content: start;
    gap: 0.35rem;
}

.summary-label[b-u44d6djssr] {
    font-size: 0.8rem;
}

.summary-copy strong[b-u44d6djssr] {
    font-size: clamp(1.45rem, 1.7vw, 1.8rem);
    line-height: 1;
    color: #eff5ff;
}

.summary-meta[b-u44d6djssr] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
}

.summary-meta[b-u44d6djssr]::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: currentColor;
}

.summary-meta.success[b-u44d6djssr] {
    color: #71e28f;
}

.summary-meta.danger[b-u44d6djssr] {
    color: #ff6f7d;
}

.summary-meta.neutral[b-u44d6djssr] {
    color: #b2bfd8;
}

.summary-meta.warning[b-u44d6djssr] {
    color: #ffcd73;
}

.records-panel[b-u44d6djssr] {
    padding: 1rem;
}

.panel-header[b-u44d6djssr] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.panel-heading[b-u44d6djssr] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.panel-count[b-u44d6djssr],
.status-badge[b-u44d6djssr] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.7rem;
    border-radius: 6px;
    padding: 0.22rem 0.7rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.panel-count[b-u44d6djssr] {
    background: rgba(39, 58, 92, 0.7);
    color: #d5e2ff;
}

.panel-actions[b-u44d6djssr] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-search[b-u44d6djssr],
.filter-select[b-u44d6djssr],
.header-action[b-u44d6djssr] {
    border: 1px solid rgba(82, 101, 140, 0.34);
    background: rgba(10, 17, 29, 0.88);
    color: #d9e4fb;
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.filter-search[b-u44d6djssr] {
    min-width: 16rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.58rem 0.8rem;
}

.filter-search svg[b-u44d6djssr] {
    width: 1rem;
    height: 1rem;
    color: #8ea2c7;
    flex: 0 0 auto;
}

.filter-search input[b-u44d6djssr],
.filter-select[b-u44d6djssr] {
    outline: 0;
}

.filter-search input[b-u44d6djssr] {
    border: 0;
    background: transparent;
    color: inherit;
    width: 100%;
    min-width: 0;
}

.filter-search input[b-u44d6djssr]::placeholder {
    color: #7183a8;
}

.filter-select[b-u44d6djssr] {
    min-width: 10rem;
    padding: 0.58rem 0.8rem;
}

.header-action[b-u44d6djssr] {
    cursor: pointer;
    padding: 0.62rem 0.85rem;
    font-weight: 600;
    font-size: 0.86rem;
}

.header-action:hover:not(:disabled)[b-u44d6djssr],
.filter-search:focus-within[b-u44d6djssr],
.filter-select:focus[b-u44d6djssr] {
    border-color: rgba(79, 118, 201, 0.65);
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(11, 20, 42, 0.26);
}

.header-action:disabled[b-u44d6djssr] {
    opacity: 0.68;
    cursor: wait;
}

.header-action.primary[b-u44d6djssr] {
    background: #2e6dff;
    border-color: rgba(91, 133, 255, 0.72);
    color: #f7fbff;
}

.empty-state[b-u44d6djssr] {
    padding: 1.5rem;
}

.table-shell[b-u44d6djssr] {
    overflow-x: auto;
    border: 1px solid rgba(55, 69, 100, 0.36);
    border-radius: 6px;
}

.data-table[b-u44d6djssr] {
    width: 100%;
    min-width: 1080px;
    border-collapse: collapse;
    background: rgba(10, 18, 31, 0.38);
}

.data-table th[b-u44d6djssr],
.data-table td[b-u44d6djssr] {
    padding: 0.9rem;
    border-bottom: 1px solid rgba(53, 67, 97, 0.42);
    vertical-align: top;
}

.data-table th[b-u44d6djssr] {
    color: #aab7ce;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(15, 23, 38, 0.82);
    text-align: left;
}

.request-row[b-u44d6djssr] {
    cursor: pointer;
    transition: background 0.18s ease;
}

.request-row:hover td[b-u44d6djssr] {
    background: rgba(19, 31, 51, 0.68);
}

.request-row.is-selected td[b-u44d6djssr] {
    background: rgba(23, 38, 64, 0.86);
}

.table-title[b-u44d6djssr] {
    color: #f6f9ff;
    font-weight: 700;
}

.table-caption[b-u44d6djssr] {
    margin-top: 0.2rem;
    font-size: 0.84rem;
}

.status-online[b-u44d6djssr] {
    background: rgba(51, 172, 89, 0.18);
    color: #8ae6a3;
}

.status-delayed[b-u44d6djssr] {
    background: rgba(234, 174, 61, 0.18);
    color: #ffcd73;
}

.status-offline[b-u44d6djssr] {
    background: rgba(225, 81, 103, 0.18);
    color: #ff9cad;
}

.modal-layer[b-u44d6djssr] {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    background: rgba(2, 6, 16, 0.42);
}

.request-detail-panel[b-u44d6djssr] {
    width: min(1180px, 100%);
    max-height: 92vh;
    padding: 1.25rem;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 1rem;
    overflow: hidden;
    pointer-events: auto;
    background: #0b1422;
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.45);
}

.request-detail-body[b-u44d6djssr] {
    min-height: 0;
    overflow-y: auto;
    padding-right: 0.2rem;
}

.modal-close-button[b-u44d6djssr] {
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid rgba(82, 101, 140, 0.34);
    border-radius: 6px;
    background: rgba(10, 17, 29, 0.88);
    color: #d9e4fb;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.modal-close-button svg[b-u44d6djssr] {
    width: 1rem;
    height: 1rem;
}

.modal-close-button:hover[b-u44d6djssr] {
    border-color: rgba(79, 118, 201, 0.65);
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(11, 20, 42, 0.26);
}

.detail-grid[b-u44d6djssr] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.detail-card[b-u44d6djssr] {
    border: 1px solid rgba(72, 93, 136, 0.22);
    background: rgba(13, 21, 36, 0.82);
    border-radius: 6px;
    padding: 1rem;
    overflow: hidden;
}

.detail-card h3[b-u44d6djssr] {
    margin: 0 0 0.9rem;
    color: #f6f9ff;
}

.fact-list[b-u44d6djssr] {
    display: grid;
    gap: 0.8rem;
}

.fact-row[b-u44d6djssr] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(53, 67, 97, 0.42);
}

.fact-row:last-child[b-u44d6djssr] {
    border-bottom: 0;
    padding-bottom: 0;
}

.fact-row span[b-u44d6djssr] {
    color: var(--text-muted);
}

.fact-row strong[b-u44d6djssr] {
    color: #f6f9ff;
    text-align: right;
}

.payload-viewer[b-u44d6djssr] {
    margin: 0;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid rgba(55, 69, 100, 0.36);
    background: rgba(10, 18, 31, 0.78);
    color: #d9e4fb;
    font-size: 0.84rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
    overflow: auto;
    min-height: 13rem;
}

@media (max-width: 1120px) {
    .summary-grid[b-u44d6djssr] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .panel-header[b-u44d6djssr] {
        flex-direction: column;
        align-items: flex-start;
    }

    .panel-actions[b-u44d6djssr] {
        width: 100%;
        justify-content: flex-start;
    }

    .detail-grid[b-u44d6djssr] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .summary-grid[b-u44d6djssr] {
        grid-template-columns: 1fr;
    }

    .filter-search[b-u44d6djssr],
    .filter-select[b-u44d6djssr],
    .header-action[b-u44d6djssr] {
        width: 100%;
    }
}
/* /Components/Pages/Servidores.razor.rz.scp.css */
.servers-page[b-0f3naheqxc] {
    display: grid;
    gap: 1.25rem;
}

.loading-shell[b-0f3naheqxc] {
    min-height: 60vh;
    display: grid;
    place-items: center;
}

.loading-card[b-0f3naheqxc],
.panel-card[b-0f3naheqxc],
.summary-card[b-0f3naheqxc],
.mini-card[b-0f3naheqxc],
.disk-card[b-0f3naheqxc],
.empty-state[b-0f3naheqxc],
.inline-alert[b-0f3naheqxc],
.server-picker[b-0f3naheqxc],
.tree-node[b-0f3naheqxc],
.tree-leaf[b-0f3naheqxc] {
    border: 1px solid rgba(72, 93, 136, 0.26);
    background: rgba(9, 17, 31, 0.94);
    box-shadow: 0 22px 58px rgba(0, 4, 14, 0.28);
}

.loading-card[b-0f3naheqxc],
.panel-card[b-0f3naheqxc],
.summary-card[b-0f3naheqxc],
.mini-card[b-0f3naheqxc],
.disk-card[b-0f3naheqxc],
.empty-state[b-0f3naheqxc],
.inline-alert[b-0f3naheqxc],
.server-picker[b-0f3naheqxc],
.tree-node[b-0f3naheqxc],
.tree-leaf[b-0f3naheqxc],
.action-button[b-0f3naheqxc],
.preset-chip[b-0f3naheqxc],
.date-field input[b-0f3naheqxc] {
    border-radius: 6px;
}

.loading-card[b-0f3naheqxc] {
    width: min(32rem, 100%);
    padding: 2rem;
}

.loading-card h1[b-0f3naheqxc],
.page-header h1[b-0f3naheqxc],
.panel-heading-row h2[b-0f3naheqxc],
.selected-server-panel h2[b-0f3naheqxc],
.section-head h2[b-0f3naheqxc],
.empty-state h2[b-0f3naheqxc],
.empty-state h3[b-0f3naheqxc],
.table-title[b-0f3naheqxc] {
    margin: 0;
}

.loading-card p[b-0f3naheqxc],
.page-copy[b-0f3naheqxc],
.section-copy[b-0f3naheqxc],
.table-caption[b-0f3naheqxc],
.tree-meta[b-0f3naheqxc],
.chart-note[b-0f3naheqxc],
.server-picker-copy[b-0f3naheqxc],
.server-picker-meta[b-0f3naheqxc],
.summary-card small[b-0f3naheqxc],
.mini-card span[b-0f3naheqxc],
.eyebrow[b-0f3naheqxc] {
    color: var(--text-muted);
}

.loading-error[b-0f3naheqxc],
.inline-alert[b-0f3naheqxc] {
    background: rgba(132, 34, 49, 0.26);
    color: #ffb4bd;
}

.loading-error[b-0f3naheqxc],
.inline-alert[b-0f3naheqxc] {
    padding: 0.85rem 1rem;
}

.panel-card[b-0f3naheqxc] {
    padding: 1rem;
}

.page-header[b-0f3naheqxc],
.selected-server-top[b-0f3naheqxc],
.section-head[b-0f3naheqxc],
.panel-heading-row[b-0f3naheqxc],
.server-picker-top[b-0f3naheqxc],
.disk-top[b-0f3naheqxc] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.eyebrow[b-0f3naheqxc] {
    margin: 0 0 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
}

.page-copy[b-0f3naheqxc] {
    margin: 0.35rem 0 0;
}

.header-actions[b-0f3naheqxc],
.selected-server-badges[b-0f3naheqxc],
.section-head-actions[b-0f3naheqxc] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.action-button[b-0f3naheqxc],
.preset-chip[b-0f3naheqxc],
.server-picker[b-0f3naheqxc] {
    border: 1px solid rgba(82, 101, 140, 0.34);
    color: #d9e4fb;
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.action-button[b-0f3naheqxc],
.preset-chip[b-0f3naheqxc] {
    padding: 0.62rem 0.9rem;
    background: rgba(10, 17, 29, 0.88);
    font-weight: 600;
}

.action-button.primary[b-0f3naheqxc],
.preset-chip.is-active[b-0f3naheqxc] {
    background: #2e6dff;
    border-color: rgba(91, 133, 255, 0.72);
    color: #f7fbff;
}

.action-button:hover:not(:disabled)[b-0f3naheqxc],
.preset-chip:hover[b-0f3naheqxc],
.server-picker:hover[b-0f3naheqxc],
.date-field input:focus[b-0f3naheqxc] {
    border-color: rgba(79, 118, 201, 0.65);
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(11, 20, 42, 0.26);
}

.action-button:disabled[b-0f3naheqxc] {
    opacity: 0.68;
    cursor: wait;
}

.servers-layout[b-0f3naheqxc] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 22rem);
    gap: 1rem;
    align-items: start;
}

.servers-layout > *[b-0f3naheqxc],
.server-content[b-0f3naheqxc],
.panel-card[b-0f3naheqxc],
.table-block[b-0f3naheqxc] {
    min-width: 0;
}

.server-list-panel[b-0f3naheqxc] {
    grid-column: 2;
    position: sticky;
    top: 1rem;
}

.server-content[b-0f3naheqxc] {
    grid-column: 1;
    grid-row: 1;
}

.pill-count[b-0f3naheqxc],
.status-badge[b-0f3naheqxc],
.soft-badge[b-0f3naheqxc] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.75rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.pill-count[b-0f3naheqxc],
.soft-badge[b-0f3naheqxc] {
    background: rgba(39, 58, 92, 0.7);
    color: #d5e2ff;
}

.status-online[b-0f3naheqxc] {
    color: #64da7f;
    background: rgba(51, 172, 89, 0.18);
}

.status-delayed[b-0f3naheqxc] {
    color: #ffc55a;
    background: rgba(234, 174, 61, 0.18);
}

.status-offline[b-0f3naheqxc] {
    color: #ff667b;
    background: rgba(225, 81, 103, 0.18);
}

.server-list[b-0f3naheqxc] {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
    max-height: calc(100vh - 13rem);
    overflow: auto;
    padding-right: 0.15rem;
}

.server-picker[b-0f3naheqxc] {
    width: 100%;
    padding: 0.9rem;
    text-align: left;
    background: rgba(10, 17, 29, 0.88);
}

.server-picker.is-active[b-0f3naheqxc] {
    border-color: rgba(91, 133, 255, 0.72);
    background: rgba(24, 39, 67, 0.92);
}

.server-picker-top strong[b-0f3naheqxc],
.summary-card strong[b-0f3naheqxc],
.mini-card strong[b-0f3naheqxc],
.disk-percent[b-0f3naheqxc],
.tree-node summary[b-0f3naheqxc],
.tree-leaf[b-0f3naheqxc] {
    color: #f6f9ff;
}

.server-picker-copy[b-0f3naheqxc],
.server-picker-meta[b-0f3naheqxc] {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.82rem;
}

.server-content[b-0f3naheqxc] {
    display: grid;
    gap: 1rem;
}

.summary-grid[b-0f3naheqxc],
.inventory-summary-grid[b-0f3naheqxc],
.sql-summary-grid[b-0f3naheqxc] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.summary-grid[b-0f3naheqxc] {
    margin-top: 1rem;
}

.summary-card[b-0f3naheqxc],
.mini-card[b-0f3naheqxc] {
    padding: 0.9rem 1rem;
}

.summary-card[b-0f3naheqxc] {
    display: grid;
    gap: 0.35rem;
}

.summary-card span[b-0f3naheqxc],
.mini-card span[b-0f3naheqxc] {
    font-size: 0.82rem;
}

.summary-card strong[b-0f3naheqxc] {
    font-size: 1.08rem;
}

.mini-card[b-0f3naheqxc] {
    display: grid;
    gap: 0.3rem;
}

.filter-toolbar[b-0f3naheqxc] {
    margin-top: 1rem;
    display: flex;
    align-items: end;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.preset-list[b-0f3naheqxc] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.date-field[b-0f3naheqxc] {
    display: grid;
    gap: 0.35rem;
    color: #cdd7eb;
    font-size: 0.82rem;
}

.date-field input[b-0f3naheqxc] {
    min-width: 14rem;
    border: 1px solid rgba(82, 101, 140, 0.34);
    background: rgba(10, 17, 29, 0.88);
    color: #d9e4fb;
    padding: 0.62rem 0.8rem;
}

.chart-legend[b-0f3naheqxc],
.chart-axis[b-0f3naheqxc],
.disk-metrics[b-0f3naheqxc],
.tree-flags[b-0f3naheqxc] {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.chart-legend[b-0f3naheqxc] {
    margin-top: 1rem;
    color: #dce6f9;
    font-size: 0.84rem;
}

.legend-item[b-0f3naheqxc] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(18, 29, 49, 0.88);
    border: 1px solid rgba(72, 93, 136, 0.22);
}

.legend-item strong[b-0f3naheqxc] {
    color: #f7fbff;
    font-weight: 700;
}

.legend-dot[b-0f3naheqxc] {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 999px;
    margin-right: 0.4rem;
    vertical-align: middle;
}

.chart-shell[b-0f3naheqxc] {
    position: relative;
    margin-top: 0.85rem;
    border: 1px solid rgba(72, 93, 136, 0.22);
    border-radius: 6px;
    background:
        linear-gradient(180deg, rgba(24, 37, 60, 0.84) 0%, rgba(10, 18, 31, 0.96) 100%);
    padding: 1rem;
    overflow: hidden;
}

.chart-shell svg[b-0f3naheqxc] {
    display: block;
    width: 100%;
    height: 19rem;
}

.chart-shell canvas[b-0f3naheqxc] {
    display: block;
    width: 100% !important;
    height: 19rem !important;
}

.chart-plot[b-0f3naheqxc] {
    position: relative;
}

.chart-hotspot-layer[b-0f3naheqxc] {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.chart-tooltip[b-0f3naheqxc] {
    position: absolute;
    top: 0.75rem;
    z-index: 4;
    display: grid;
    gap: 0.22rem;
    min-width: 12rem;
    max-width: min(18rem, calc(100% - 1rem));
    padding: 0.7rem 0.8rem;
    border-radius: 6px;
    border: 1px solid rgba(95, 118, 170, 0.4);
    background: rgba(6, 12, 22, 0.96);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
    pointer-events: none;
}

.chart-tooltip strong[b-0f3naheqxc] {
    color: #f6f9ff;
}

.chart-tooltip span[b-0f3naheqxc] {
    color: #cdd9ef;
    font-size: 0.8rem;
}

.chart-grid-line[b-0f3naheqxc] {
    stroke: rgba(156, 173, 202, 0.18);
    stroke-width: 1;
}

.chart-grid-label[b-0f3naheqxc] {
    fill: rgba(190, 204, 228, 0.72);
    font-size: 11px;
}

.chart-line[b-0f3naheqxc] {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.chart-hover-line[b-0f3naheqxc] {
    stroke: rgba(233, 241, 255, 0.42);
    stroke-width: 1.35;
    stroke-dasharray: 5 4;
}

.chart-point[b-0f3naheqxc] {
    stroke-width: 2;
}

.chart-marker[b-0f3naheqxc] {
    stroke-width: 1.6;
}

.chart-hotspot[b-0f3naheqxc] {
    position: absolute;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    margin: -0.75rem 0 0 -0.75rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    padding: 0;
    cursor: crosshair;
}

.chart-hotspot:focus[b-0f3naheqxc] {
    outline: none;
}

.cpu-line[b-0f3naheqxc] {
    stroke: #3a83ff;
    background: #3a83ff;
}

.memory-line[b-0f3naheqxc] {
    stroke: #ff9d42;
    background: #ff9d42;
}

.disk-line[b-0f3naheqxc] {
    stroke: #5add77;
    background: #5add77;
}

.network-line[b-0f3naheqxc] {
    stroke: #f7fbff;
    background: #f7fbff;
}

.chart-point.cpu-line[b-0f3naheqxc] {
    fill: #3a83ff;
    stroke: #dfe9ff;
}

.chart-marker.cpu-line[b-0f3naheqxc] {
    fill: #3a83ff;
    stroke: #dfe9ff;
}

.chart-point.memory-line[b-0f3naheqxc] {
    fill: #ff9d42;
    stroke: #fff0dc;
}

.chart-marker.memory-line[b-0f3naheqxc] {
    fill: #ff9d42;
    stroke: #fff0dc;
}

.chart-point.disk-line[b-0f3naheqxc] {
    fill: #5add77;
    stroke: #e8fff0;
}

.chart-marker.disk-line[b-0f3naheqxc] {
    fill: #5add77;
    stroke: #e8fff0;
}

.chart-point.network-line[b-0f3naheqxc] {
    fill: #f7fbff;
    stroke: #0b1527;
}

.chart-marker.network-line[b-0f3naheqxc] {
    fill: #f7fbff;
    stroke: #0b1527;
}

.chart-axis[b-0f3naheqxc] {
    justify-content: space-between;
    margin-top: 0.6rem;
    color: #aebbd5;
    font-size: 0.8rem;
}

.chart-note[b-0f3naheqxc] {
    margin-top: 0.75rem;
    font-size: 0.82rem;
}

.column-sort-button[b-0f3naheqxc] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 0;
    background: transparent;
    color: inherit;
    padding: 0;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.sort-indicator[b-0f3naheqxc] {
    color: #8fb3ff;
    min-width: 0.9rem;
    text-align: center;
}

.action-column[b-0f3naheqxc] {
    width: 8.5rem;
}

.table-action-button[b-0f3naheqxc] {
    display: inline-flex;
    width: 100%;
    justify-content: center;
}

.collapsed-panel-note[b-0f3naheqxc] {
    margin-top: 0.85rem;
    padding: 0.95rem 1rem;
    border: 1px dashed rgba(92, 116, 165, 0.34);
    border-radius: 6px;
    background: rgba(11, 18, 31, 0.34);
    color: var(--text-muted);
}

.scroll-table-shell[b-0f3naheqxc] {
    overflow-y: auto;
    overflow-x: hidden;
    margin-top: 0.85rem;
}

.app-usage-shell[b-0f3naheqxc] {
    max-height: 28rem;
}

.inventory-table-shell[b-0f3naheqxc] {
    max-height: 22rem;
}

.data-table[b-0f3naheqxc] {
    width: 100%;
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.data-table thead th[b-0f3naheqxc] {
    position: sticky;
    top: 0;
    z-index: 1;
    background: rgba(14, 24, 40, 0.98);
    color: #aab7ce;
    font-size: 0.76rem;
    font-weight: 600;
    text-align: left;
    padding: 0.72rem 0.85rem;
    overflow-wrap: anywhere;
}

.data-table tbody td[b-0f3naheqxc] {
    padding: 0.82rem 0.85rem;
    border-top: 1px solid rgba(53, 69, 99, 0.5);
    vertical-align: top;
    background: rgba(11, 18, 31, 0.26);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.data-table tbody tr:hover td[b-0f3naheqxc] {
    background: rgba(19, 31, 51, 0.68);
}

.table-block + .table-block[b-0f3naheqxc] {
    margin-top: 1rem;
}

.block-title[b-0f3naheqxc] {
    margin-top: 1rem;
    color: #d7e4fb;
    font-weight: 700;
}

.inventory-stack[b-0f3naheqxc] {
    margin-top: 0.5rem;
}

.server-modal-layer[b-0f3naheqxc] {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: grid;
    justify-items: center;
    align-items: start;
    padding: 1.25rem;
    background: rgba(2, 6, 16, 0.72);
    backdrop-filter: blur(10px);
    pointer-events: none;
}

.server-modal-dialog[b-0f3naheqxc] {
    width: min(1240px, 100%);
    max-height: 92vh;
    pointer-events: auto;
}

.app-usage-modal-dialog[b-0f3naheqxc] {
    width: min(1240px, 100%);
}

.modal-shell[b-0f3naheqxc] {
    border: 1px solid rgba(72, 93, 136, 0.26);
    border-radius: 6px;
    background: rgba(9, 17, 31, 0.96);
    box-shadow: 0 22px 58px rgba(0, 4, 14, 0.38);
    padding: 1.25rem;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 1rem;
    max-height: 92vh;
}

.modal-topbar[b-0f3naheqxc] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.modal-topbar-actions[b-0f3naheqxc] {
    display: grid;
    justify-items: end;
    gap: 0.75rem;
}

.modal-body[b-0f3naheqxc] {
    min-height: 0;
    overflow-y: auto;
    display: grid;
    gap: 1rem;
    padding-right: 0.2rem;
}

.modal-chart-shell canvas[b-0f3naheqxc] {
    height: 24rem !important;
}

.app-usage-modal-summary-grid[b-0f3naheqxc] {
    margin-top: 0.2rem;
}

.disk-grid[b-0f3naheqxc] {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 0.85rem;
}

.disk-card[b-0f3naheqxc] {
    padding: 1rem;
}

.progress-track[b-0f3naheqxc] {
    width: 100%;
    height: 0.45rem;
    margin: 0.9rem 0;
    border-radius: 999px;
    background: rgba(58, 74, 108, 0.42);
    overflow: hidden;
}

.progress-value[b-0f3naheqxc] {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #5add77 0%, #ff9d42 72%, #ff667b 100%);
}

.disk-metrics[b-0f3naheqxc] {
    color: #dbe7ff;
    font-size: 0.84rem;
}

.sql-tree[b-0f3naheqxc] {
    display: grid;
    gap: 0.7rem;
}

.sql-tree-shell[b-0f3naheqxc] {
    margin-top: 1rem;
    max-height: 30rem;
    overflow: auto;
    padding-right: 0.15rem;
}

.tree-node[b-0f3naheqxc] {
    padding: 0.7rem 0.85rem;
}

.tree-node summary[b-0f3naheqxc] {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.tree-node summary[b-0f3naheqxc]::-webkit-details-marker {
    display: none;
}

.tree-node summary[b-0f3naheqxc]::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    margin-right: 0.5rem;
    color: #8fb3ff;
}

.tree-node[open] > summary[b-0f3naheqxc]::before {
    content: "-";
}

.tree-node > .tree-node[b-0f3naheqxc],
.tree-node > .tree-leaf[b-0f3naheqxc],
.tree-node > .tree-meta[b-0f3naheqxc] {
    margin-top: 0.7rem;
    margin-left: 1.25rem;
}

.tree-meta[b-0f3naheqxc] {
    font-size: 0.82rem;
}

.tree-leaf[b-0f3naheqxc] {
    padding: 0.65rem 0.8rem;
    font-size: 0.84rem;
}

.tree-flags small[b-0f3naheqxc] {
    display: inline-flex;
    align-items: center;
    min-height: 1.45rem;
    padding: 0 0.5rem;
    border-radius: 999px;
    background: rgba(40, 61, 98, 0.78);
    color: #cfe0ff;
}

.compact-empty[b-0f3naheqxc] {
    margin-top: 1rem;
}

.empty-state[b-0f3naheqxc] {
    padding: 1.2rem;
}

@media (max-width: 1180px) {
    .servers-layout[b-0f3naheqxc] {
        grid-template-columns: minmax(0, 1fr);
    }

    .server-list-panel[b-0f3naheqxc] {
        grid-column: auto;
        position: static;
    }

    .server-content[b-0f3naheqxc] {
        grid-column: auto;
        grid-row: auto;
    }

    .server-list[b-0f3naheqxc] {
        max-height: none;
    }

    .summary-grid[b-0f3naheqxc],
    .inventory-summary-grid[b-0f3naheqxc],
    .sql-summary-grid[b-0f3naheqxc] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .page-header[b-0f3naheqxc],
    .selected-server-top[b-0f3naheqxc],
    .section-head[b-0f3naheqxc],
    .panel-heading-row[b-0f3naheqxc],
    .server-picker-top[b-0f3naheqxc],
    .disk-top[b-0f3naheqxc],
    .modal-topbar[b-0f3naheqxc] {
        flex-direction: column;
    }

    .filter-toolbar[b-0f3naheqxc] {
        align-items: stretch;
    }

    .preset-list[b-0f3naheqxc],
    .chart-legend[b-0f3naheqxc],
    .chart-axis[b-0f3naheqxc],
    .disk-metrics[b-0f3naheqxc],
    .tree-flags[b-0f3naheqxc] {
        gap: 0.55rem;
    }

    .date-field input[b-0f3naheqxc] {
        min-width: 0;
        width: 100%;
    }

    .summary-grid[b-0f3naheqxc],
    .inventory-summary-grid[b-0f3naheqxc],
    .sql-summary-grid[b-0f3naheqxc] {
        grid-template-columns: minmax(0, 1fr);
    }

    .data-table thead th[b-0f3naheqxc],
    .data-table tbody td[b-0f3naheqxc] {
        padding-left: 0.65rem;
        padding-right: 0.65rem;
    }
}
/* /Components/Pages/Tarefas.razor.rz.scp.css */
.tasks-page[b-zqjtpr7npb] {
    display: grid;
    gap: 1.5rem;
}

.page-header[b-zqjtpr7npb],
.section-head[b-zqjtpr7npb] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.page-copy[b-zqjtpr7npb],
.section-copy[b-zqjtpr7npb],
.eyebrow[b-zqjtpr7npb] {
    color: var(--text-muted, #7f93b8);
}

.eyebrow[b-zqjtpr7npb] {
    margin: 0 0 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
}

.page-copy[b-zqjtpr7npb] {
    margin: 0.35rem 0 0;
}

.header-actions[b-zqjtpr7npb] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.action-button[b-zqjtpr7npb],
.link-button[b-zqjtpr7npb] {
    font: inherit;
}

.action-button[b-zqjtpr7npb] {
    appearance: none;
    border: 1px solid rgba(82, 101, 140, 0.34);
    border-radius: 6px;
    background: rgba(10, 17, 29, 0.88);
    color: #d9e4fb;
    padding: 0.62rem 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.action-button.primary[b-zqjtpr7npb] {
    background: #2e6dff;
    border-color: rgba(91, 133, 255, 0.72);
    color: #f7fbff;
}

.action-button:hover:not(:disabled)[b-zqjtpr7npb],
.action-button:focus-visible:not(:disabled)[b-zqjtpr7npb],
.link-button:hover:not(:disabled)[b-zqjtpr7npb],
.link-button:focus-visible:not(:disabled)[b-zqjtpr7npb] {
    border-color: rgba(79, 118, 201, 0.65);
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(11, 20, 42, 0.26);
}

.action-button:focus-visible[b-zqjtpr7npb],
.link-button:focus-visible[b-zqjtpr7npb],
.modal-close-button:focus-visible[b-zqjtpr7npb] {
    outline: 2px solid rgba(91, 133, 255, 0.72);
    outline-offset: 2px;
}

.action-button:disabled[b-zqjtpr7npb],
.link-button:disabled[b-zqjtpr7npb],
.modal-close-button:disabled[b-zqjtpr7npb] {
    opacity: 0.68;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.link-button[b-zqjtpr7npb] {
    appearance: none;
    background: rgba(10, 17, 29, 0.88);
    border: 1px solid rgba(82, 101, 140, 0.24);
    border-radius: 6px;
    color: #cfdcff;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.status-badge[b-zqjtpr7npb],
.soft-badge[b-zqjtpr7npb] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.75rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.soft-badge[b-zqjtpr7npb] {
    background: rgba(39, 58, 92, 0.7);
    color: #d5e2ff;
}

.status-online[b-zqjtpr7npb] {
    color: #64da7f;
    background: rgba(51, 172, 89, 0.18);
}

.status-delayed[b-zqjtpr7npb] {
    color: #ffc55a;
    background: rgba(234, 174, 61, 0.18);
}

.status-offline[b-zqjtpr7npb] {
    color: #ff667b;
    background: rgba(225, 81, 103, 0.18);
}

.tasks-layout[b-zqjtpr7npb] {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(0, 1fr);
}

.task-list-panel[b-zqjtpr7npb],
.executions-panel[b-zqjtpr7npb] {
    display: grid;
    gap: 1.25rem;
}

.form-grid[b-zqjtpr7npb] {
    display: grid;
    align-items: start;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editor-field[b-zqjtpr7npb] {
    display: grid;
    gap: 0.45rem;
    color: var(--text-muted, #8f9db0);
    font-size: 0.92rem;
}

.editor-field.wide[b-zqjtpr7npb] {
    grid-column: 1 / -1;
}

.checkbox-inline-field[b-zqjtpr7npb] {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
}

.checkbox-inline-field input[type="checkbox"][b-zqjtpr7npb] {
    width: 1.1rem;
    height: 1.1rem;
    margin: 0;
}

.checkbox-inline-field span[b-zqjtpr7npb] {
    color: #d9e4fb;
}

.switch-field[b-zqjtpr7npb] {
    align-content: end;
}

.switch-field input[b-zqjtpr7npb] {
    width: 1.1rem;
    height: 1.1rem;
}

.editor-field small[b-zqjtpr7npb] {
    color: var(--text-soft, #6c7a8f);
    font-size: 0.78rem;
}

.form-input[b-zqjtpr7npb],
.form-textarea[b-zqjtpr7npb] {
    width: 100%;
    border: 1px solid rgba(138, 153, 176, 0.24);
    border-radius: 0.9rem;
    background: rgba(12, 19, 31, 0.72);
    color: #f2f7ff;
    padding: 0.85rem 0.95rem;
}

.form-textarea[b-zqjtpr7npb] {
    resize: vertical;
    min-height: 6rem;
}

.editor-section[b-zqjtpr7npb] {
    display: grid;
    gap: 1rem;
}

.step-list[b-zqjtpr7npb] {
    display: grid;
    gap: 0.85rem;
}

.step-list-item[b-zqjtpr7npb] {
    display: grid;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    border-radius: 1.05rem;
    border: 1px solid rgba(138, 153, 176, 0.16);
    background: linear-gradient(180deg, rgba(11, 18, 30, 0.82), rgba(8, 14, 24, 0.72));
}

.step-list-top[b-zqjtpr7npb] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.step-list-title[b-zqjtpr7npb] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.step-list-title strong[b-zqjtpr7npb] {
    color: #f2f7ff;
    font-size: 0.98rem;
    overflow-wrap: anywhere;
}

.step-list-actions[b-zqjtpr7npb] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.step-sequence-badge[b-zqjtpr7npb] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.1rem;
    min-height: 2.1rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(46, 109, 255, 0.18);
    border: 1px solid rgba(91, 133, 255, 0.28);
    color: #bad2ff;
    font-size: 0.82rem;
    font-weight: 700;
}

.step-list-preview[b-zqjtpr7npb] {
    padding: 0.85rem 0.95rem;
    border-radius: 0.9rem;
    background: rgba(6, 11, 21, 0.58);
    color: #cbd8ee;
    font-size: 0.88rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.editor-section-head[b-zqjtpr7npb] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.compact-head[b-zqjtpr7npb] {
    margin-bottom: 0.6rem;
}

.step-card[b-zqjtpr7npb],
.schedule-card[b-zqjtpr7npb],
.definition-card[b-zqjtpr7npb],
.execution-card[b-zqjtpr7npb] {
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 1.15rem;
    background: rgba(8, 14, 24, 0.66);
    border: 1px solid rgba(138, 153, 176, 0.16);
}

.step-card-head[b-zqjtpr7npb],
.definition-card-head[b-zqjtpr7npb],
.execution-card-head[b-zqjtpr7npb] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.definition-meta[b-zqjtpr7npb] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    color: var(--text-soft, #7a8aa0);
    font-size: 0.84rem;
}

.times-shell[b-zqjtpr7npb],
.definition-list[b-zqjtpr7npb],
.execution-list[b-zqjtpr7npb],
.schedule-preview-list[b-zqjtpr7npb],
.execution-steps[b-zqjtpr7npb] {
    display: grid;
    gap: 0.8rem;
}

.weekday-selector-grid[b-zqjtpr7npb] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 0.75rem;
}

.weekday-option[b-zqjtpr7npb] {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(138, 153, 176, 0.18);
    background: rgba(10, 17, 29, 0.56);
    color: #d9e4fb;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.weekday-option input[b-zqjtpr7npb] {
    width: 1rem;
    height: 1rem;
    margin: 0;
}

.weekday-option.selected[b-zqjtpr7npb] {
    border-color: rgba(91, 133, 255, 0.52);
    background: rgba(32, 58, 112, 0.34);
    box-shadow: 0 12px 32px rgba(8, 16, 34, 0.18);
}

.weekday-option:hover[b-zqjtpr7npb] {
    border-color: rgba(91, 133, 255, 0.4);
    transform: translateY(-1px);
}

.weekly-day-times-shell[b-zqjtpr7npb] {
    display: grid;
    gap: 0.9rem;
}

.weekly-day-card[b-zqjtpr7npb] {
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(138, 153, 176, 0.15);
    background: rgba(5, 11, 20, 0.45);
}

.time-row[b-zqjtpr7npb] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.time-input[b-zqjtpr7npb] {
    max-width: 10rem;
}

.editor-actions[b-zqjtpr7npb],
.definition-actions[b-zqjtpr7npb],
.execution-head-actions[b-zqjtpr7npb] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.danger-link[b-zqjtpr7npb] {
    color: #ff7f8e;
}

.inline-success[b-zqjtpr7npb],
.inline-error[b-zqjtpr7npb] {
    border-radius: 1rem;
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
}

.status-neutral[b-zqjtpr7npb] {
    background: rgba(138, 153, 176, 0.18);
    color: #d9e1ec;
}

.inline-success[b-zqjtpr7npb] {
    background: rgba(45, 184, 102, 0.14);
    border: 1px solid rgba(45, 184, 102, 0.25);
    color: #a7f0c0;
}

.inline-error[b-zqjtpr7npb] {
    background: rgba(255, 92, 92, 0.12);
    border: 1px solid rgba(255, 92, 92, 0.22);
    color: #ffb7b7;
}

.execution-step[b-zqjtpr7npb] {
    border-radius: 0.95rem;
    border: 1px solid rgba(138, 153, 176, 0.14);
    background: rgba(12, 19, 31, 0.56);
    overflow: hidden;
}

.execution-step summary[b-zqjtpr7npb] {
    list-style: none;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 0.8rem;
    align-items: center;
    padding: 0.95rem 1rem;
    cursor: pointer;
}

.execution-step summary[b-zqjtpr7npb]::-webkit-details-marker {
    display: none;
}

.step-sequence[b-zqjtpr7npb] {
    color: #7aa7ff;
    font-weight: 700;
}

.step-name[b-zqjtpr7npb] {
    font-weight: 600;
    color: #f2f7ff;
}

.step-device[b-zqjtpr7npb] {
    color: #8f9db0;
    font-size: 0.85rem;
}

.execution-step-body[b-zqjtpr7npb] {
    display: grid;
    gap: 0.8rem;
    padding: 0 1rem 1rem;
}

.task-log-viewer[b-zqjtpr7npb] {
    margin: 0;
    padding: 0.9rem;
    border-radius: 0.95rem;
    background: #07111f;
    color: #c8d8ea;
    max-height: 18rem;
    overflow: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

.task-modal-layer[b-zqjtpr7npb] {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    justify-items: center;
    align-items: start;
    padding: 2.25rem;
    background:
        radial-gradient(circle at top, rgba(46, 109, 255, 0.16), transparent 38%),
        linear-gradient(180deg, rgba(3, 8, 18, 0.9), rgba(2, 6, 16, 0.8));
    backdrop-filter: blur(10px);
}

.task-modal-dialog[b-zqjtpr7npb] {
    width: min(1240px, 100%);
    max-height: 92vh;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(13, 20, 34, 0.98), rgba(8, 14, 24, 0.98));
    border: 1px solid rgba(91, 133, 255, 0.18);
    border-radius: 16px;
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.45);
}

.task-modal-shell[b-zqjtpr7npb] {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 1rem;
    max-height: 92vh;
    padding: 1.85rem;
}

.task-modal-body[b-zqjtpr7npb] {
    min-height: 0;
    overflow-y: auto;
    display: grid;
    gap: 1rem;
    padding: 0.5rem 0.9rem 0.8rem 0.35rem;
}

.task-submodal-layer[b-zqjtpr7npb] {
    position: fixed;
    inset: 0;
    z-index: 1210;
    display: grid;
    place-items: center;
    padding: 2.4rem;
    background: linear-gradient(180deg, rgba(2, 6, 16, 0.42), rgba(2, 6, 16, 0.7));
    backdrop-filter: blur(8px);
}

.task-submodal-dialog[b-zqjtpr7npb] {
    width: min(860px, 100%);
    max-height: min(86vh, 920px);
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(91, 133, 255, 0.2);
    background: linear-gradient(180deg, rgba(14, 22, 36, 0.99), rgba(8, 14, 24, 0.99));
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
}

.task-submodal-shell[b-zqjtpr7npb] {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 1rem;
    max-height: min(86vh, 920px);
    padding: 2rem;
}

.task-submodal-body[b-zqjtpr7npb] {
    min-height: 0;
    overflow-y: auto;
    display: grid;
    gap: 1rem;
    padding: 0.6rem 0.85rem 1rem 0.45rem;
}

.modal-topbar[b-zqjtpr7npb] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.modal-topbar-actions[b-zqjtpr7npb] {
    display: grid;
    justify-items: end;
    gap: 0.75rem;
}

.panel-copy[b-zqjtpr7npb] {
    margin: 0.45rem 0 0;
    max-width: 42rem;
    line-height: 1.6;
}

[b-zqjtpr7npb] .task-device-dropdown-inner {
    width: 100%;
    min-height: 0;
    height: 3.18rem;
    border-radius: 0.9rem;
    background: rgba(12, 19, 31, 0.72);
    box-sizing: border-box;
}

[b-zqjtpr7npb] .task-device-dropdown-inner .custom-dropdown-trigger {
    width: 100%;
    min-height: 0;
    height: 100%;
    padding: 0 0.95rem;
    box-sizing: border-box;
}

[b-zqjtpr7npb] .task-device-dropdown-inner.compact .custom-dropdown-trigger,
[b-zqjtpr7npb] .task-device-dropdown-inner:not(.compact) .custom-dropdown-trigger {
    min-width: 0;
}

[b-zqjtpr7npb] .task-device-dropdown-inner .custom-dropdown-menu {
    border-radius: 0.9rem;
}

.modal-close-button[b-zqjtpr7npb] {
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid rgba(82, 101, 140, 0.34);
    border-radius: 6px;
    background: rgba(10, 17, 29, 0.88);
    color: #d9e4fb;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.modal-close-button svg[b-zqjtpr7npb] {
    width: 1rem;
    height: 1rem;
}

.modal-close-button:hover[b-zqjtpr7npb] {
    border-color: rgba(79, 118, 201, 0.65);
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(11, 20, 42, 0.26);
}

@media (max-width: 1080px) {
    .tasks-layout[b-zqjtpr7npb] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .form-grid[b-zqjtpr7npb] {
        grid-template-columns: 1fr;
    }

    .execution-step summary[b-zqjtpr7npb] {
        grid-template-columns: 1fr;
    }

    .step-card-head[b-zqjtpr7npb],
    .definition-card-head[b-zqjtpr7npb],
    .execution-card-head[b-zqjtpr7npb],
    .editor-section-head[b-zqjtpr7npb],
    .modal-topbar[b-zqjtpr7npb] {
        align-items: flex-start;
        flex-direction: column;
    }

    .task-modal-layer[b-zqjtpr7npb] {
        padding: 1rem;
    }

    .task-modal-shell[b-zqjtpr7npb] {
        padding: 1.2rem;
    }

    .task-submodal-layer[b-zqjtpr7npb] {
        padding: 1rem;
    }

    .task-submodal-shell[b-zqjtpr7npb] {
        padding: 1.25rem;
    }

    .step-list-top[b-zqjtpr7npb],
    .step-list-title[b-zqjtpr7npb],
    .step-list-actions[b-zqjtpr7npb],
    .weekday-option[b-zqjtpr7npb],
    .time-row[b-zqjtpr7npb] {
        align-items: flex-start;
        flex-direction: column;
    }

    .weekday-selector-grid[b-zqjtpr7npb] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/TrocarSenha.razor.rz.scp.css */
.auth-page[b-x0xre0l9xa] {
    width: 100%;
    display: grid;
    justify-items: center;
}

.auth-card[b-x0xre0l9xa] {
    width: min(460px, 100%);
    display: grid;
    gap: 1.2rem;
    padding: 2rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(91, 143, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(13, 20, 34, 0.98), rgba(8, 14, 24, 0.98));
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.34);
}

.auth-copy[b-x0xre0l9xa] {
    display: grid;
    gap: 0.45rem;
}

.auth-eyebrow[b-x0xre0l9xa] {
    margin: 0;
    color: #8ea2c7;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.74rem;
}

.auth-copy h1[b-x0xre0l9xa] {
    margin: 0;
    color: #f6faff;
    font-size: 1.95rem;
}

.auth-description[b-x0xre0l9xa] {
    margin: 0;
    color: #93a6c8;
    line-height: 1.6;
}

.auth-form[b-x0xre0l9xa] {
    display: grid;
    gap: 1rem;
}

.auth-field[b-x0xre0l9xa] {
    display: grid;
    gap: 0.45rem;
    color: #9eb0cf;
}

.auth-input[b-x0xre0l9xa] {
    width: 100%;
    border: 1px solid rgba(138, 153, 176, 0.24);
    border-radius: 0.95rem;
    background: rgba(12, 19, 31, 0.82);
    color: #f2f7ff;
    padding: 0.9rem 1rem;
}

.auth-submit[b-x0xre0l9xa] {
    appearance: none;
    border: 1px solid rgba(91, 143, 255, 0.64);
    border-radius: 0.95rem;
    background: linear-gradient(180deg, #5b8fff, #346fdf);
    color: #f8fbff;
    padding: 0.9rem 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.auth-submit:hover[b-x0xre0l9xa],
.auth-submit:focus-visible[b-x0xre0l9xa] {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(20, 58, 143, 0.28);
}

.auth-alert[b-x0xre0l9xa],
.auth-note[b-x0xre0l9xa] {
    border-radius: 1rem;
    padding: 0.9rem 1rem;
    line-height: 1.5;
}

.auth-alert.error[b-x0xre0l9xa] {
    background: rgba(255, 92, 92, 0.12);
    border: 1px solid rgba(255, 92, 92, 0.22);
    color: #ffb7b7;
}

.auth-note[b-x0xre0l9xa] {
    background: rgba(16, 28, 48, 0.74);
    border: 1px solid rgba(138, 153, 176, 0.14);
    color: #9db0d0;
}
/* /Components/Pages/Usuarios.razor.rz.scp.css */
.users-page[b-4wqn9uvx2u] {
    display: grid;
    gap: 1.5rem;
}

.page-header[b-4wqn9uvx2u],
.section-head[b-4wqn9uvx2u] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.panel-card[b-4wqn9uvx2u] {
    padding: 1.35rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(138, 153, 176, 0.16);
    background: rgba(8, 14, 24, 0.7);
}

.users-list-card[b-4wqn9uvx2u],
.users-reset-card[b-4wqn9uvx2u] {
    display: grid;
    gap: 1.35rem;
}

.eyebrow[b-4wqn9uvx2u],
.page-copy[b-4wqn9uvx2u],
.section-copy[b-4wqn9uvx2u],
.table-caption[b-4wqn9uvx2u] {
    color: #8ea2c7;
}

.eyebrow[b-4wqn9uvx2u] {
    margin: 0 0 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
}

.page-copy[b-4wqn9uvx2u],
.section-copy[b-4wqn9uvx2u] {
    margin: 0.35rem 0 0;
}

.header-actions[b-4wqn9uvx2u] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-grid[b-4wqn9uvx2u] {
    display: grid;
    align-items: start;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editor-field[b-4wqn9uvx2u] {
    display: grid;
    gap: 0.45rem;
    color: #9cb0d0;
}

.editor-field.wide[b-4wqn9uvx2u] {
    grid-column: 1 / -1;
}

.checkbox-inline-field[b-4wqn9uvx2u] {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
}

.checkbox-inline-field input[type="checkbox"][b-4wqn9uvx2u] {
    margin: 0;
}

.form-input[b-4wqn9uvx2u] {
    width: 100%;
    border: 1px solid rgba(138, 153, 176, 0.24);
    border-radius: 0.95rem;
    background: rgba(12, 19, 31, 0.82);
    color: #f2f7ff;
    padding: 0.9rem 1rem;
}

.editor-actions[b-4wqn9uvx2u] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.action-button[b-4wqn9uvx2u] {
    font: inherit;
    appearance: none;
    border: 1px solid rgba(82, 101, 140, 0.34);
    border-radius: 6px;
    background: rgba(10, 17, 29, 0.88);
    color: #d9e4fb;
    padding: 0.62rem 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.action-button.primary[b-4wqn9uvx2u] {
    background: #2e6dff;
    border-color: rgba(91, 133, 255, 0.72);
    color: #f7fbff;
}

.action-button:hover:not(:disabled)[b-4wqn9uvx2u],
.action-button:focus-visible:not(:disabled)[b-4wqn9uvx2u],
.modal-close-button:hover[b-4wqn9uvx2u],
.modal-close-button:focus-visible[b-4wqn9uvx2u] {
    border-color: rgba(79, 118, 201, 0.65);
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(11, 20, 42, 0.26);
}

.action-button:focus-visible[b-4wqn9uvx2u],
.modal-close-button:focus-visible[b-4wqn9uvx2u] {
    outline: 2px solid rgba(91, 133, 255, 0.72);
    outline-offset: 2px;
}

.action-button:disabled[b-4wqn9uvx2u],
.modal-close-button:disabled[b-4wqn9uvx2u] {
    opacity: 0.68;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.inline-alert[b-4wqn9uvx2u],
.inline-success[b-4wqn9uvx2u] {
    border-radius: 1rem;
    padding: 0.9rem 1rem;
}

.inline-alert[b-4wqn9uvx2u] {
    background: rgba(255, 92, 92, 0.12);
    border: 1px solid rgba(255, 92, 92, 0.22);
    color: #ffb7b7;
}

.inline-success[b-4wqn9uvx2u] {
    background: rgba(45, 184, 102, 0.14);
    border: 1px solid rgba(45, 184, 102, 0.25);
    color: #a7f0c0;
}

.compact-empty[b-4wqn9uvx2u] {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(8, 14, 24, 0.5);
    border: 1px solid rgba(138, 153, 176, 0.12);
}

.user-list[b-4wqn9uvx2u] {
    display: grid;
    gap: 0.9rem;
}

.user-card[b-4wqn9uvx2u] {
    display: grid;
    gap: 0.9rem;
    padding: 1rem 1.05rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(138, 153, 176, 0.16);
    background: rgba(8, 14, 24, 0.66);
}

.user-card-head[b-4wqn9uvx2u] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.definition-meta[b-4wqn9uvx2u] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    color: #7a8aa0;
    font-size: 0.84rem;
}

.status-badge[b-4wqn9uvx2u] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.75rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.status-online[b-4wqn9uvx2u] {
    color: #64da7f;
    background: rgba(51, 172, 89, 0.18);
}

.status-offline[b-4wqn9uvx2u] {
    color: #ff667b;
    background: rgba(225, 81, 103, 0.18);
}

.user-modal-layer[b-4wqn9uvx2u] {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    justify-items: center;
    align-items: start;
    padding: 2.25rem;
    background:
        radial-gradient(circle at top, rgba(46, 109, 255, 0.16), transparent 38%),
        linear-gradient(180deg, rgba(3, 8, 18, 0.9), rgba(2, 6, 16, 0.8));
    backdrop-filter: blur(10px);
}

.user-modal-dialog[b-4wqn9uvx2u] {
    width: min(760px, 100%);
    max-height: 92vh;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(13, 20, 34, 0.98), rgba(8, 14, 24, 0.98));
    border: 1px solid rgba(91, 133, 255, 0.18);
    border-radius: 16px;
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.45);
}

.user-modal-shell[b-4wqn9uvx2u] {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 1rem;
    max-height: 92vh;
    padding: 1.85rem;
}

.user-modal-body[b-4wqn9uvx2u] {
    min-height: 0;
    overflow-y: auto;
    display: grid;
    gap: 1rem;
    padding: 0.5rem 0.9rem 0.8rem 0.35rem;
}

.modal-topbar[b-4wqn9uvx2u] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.panel-copy[b-4wqn9uvx2u] {
    margin: 0.45rem 0 0;
    max-width: 42rem;
    line-height: 1.6;
    color: #8ea2c7;
}

.modal-close-button[b-4wqn9uvx2u] {
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid rgba(82, 101, 140, 0.34);
    border-radius: 6px;
    background: rgba(10, 17, 29, 0.88);
    color: #d9e4fb;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.modal-close-button svg[b-4wqn9uvx2u] {
    width: 1rem;
    height: 1rem;
}

[b-4wqn9uvx2u] .user-role-dropdown-inner {
    width: 100%;
    min-height: 0;
    height: 3.18rem;
    border-radius: 0.9rem;
    background: rgba(12, 19, 31, 0.72);
    box-sizing: border-box;
}

[b-4wqn9uvx2u] .user-role-dropdown-inner .custom-dropdown-trigger {
    width: 100%;
    min-height: 0;
    height: 100%;
    padding: 0 0.95rem;
    box-sizing: border-box;
}

[b-4wqn9uvx2u] .user-role-dropdown-inner .custom-dropdown-menu {
    border-radius: 0.9rem;
}

@media (max-width: 720px) {
    .form-grid[b-4wqn9uvx2u] {
        grid-template-columns: 1fr;
    }

    .user-card-head[b-4wqn9uvx2u],
    .page-header[b-4wqn9uvx2u],
    .section-head[b-4wqn9uvx2u],
    .modal-topbar[b-4wqn9uvx2u] {
        align-items: flex-start;
        flex-direction: column;
    }

    .user-modal-layer[b-4wqn9uvx2u] {
        padding: 1rem;
    }

    .user-modal-shell[b-4wqn9uvx2u] {
        padding: 1.2rem;
    }
}
