/* /Layout/LoginLayout.razor.rz.scp.css */
.login-shell[b-xq0xoidywk] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-muted);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: var(--text-base);
    color: var(--text-primary);
}
/* /Layout/MainLayout.razor.rz.scp.css */
.app-shell[b-dbenvxe8h4] {
    display: flex;
    height: 100vh;
    overflow: hidden;
    background: var(--surface-muted);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: var(--text-base);
    color: var(--text-primary);
}

.app-main[b-dbenvxe8h4] {
    flex: 1;
    overflow-y: auto;
    background: var(--surface-card);
}
/* /Layout/NavMenu.razor.rz.scp.css */
.sidebar[b-f25s8prrn1] {
    width: var(--sidebar-width);
    flex-shrink: 0;
    background: var(--sidebar-bg);
    border-right: 0.5px solid var(--sidebar-border);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar-brand[b-f25s8prrn1] {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 14px 16px;
    border-bottom: 0.5px solid var(--sidebar-border);
}

.brand-icon[b-f25s8prrn1] {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-md);
    background: #e6f1fb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-name[b-f25s8prrn1] {
    font-weight: 500;
    font-size: var(--text-md);
}

.sidebar-nav[b-f25s8prrn1] {
    flex: 1;
    padding: 8px;
}

.nav-group-label[b-f25s8prrn1] {
    font-size: 10px;
    color: var(--text-tertiary);
    padding: 10px 10px 3px;
    margin: 0;
    letter-spacing: 0.06em;
}

/* `::deep` is required because NavLink renders its own <a> element —
   that root element belongs to NavLink's render tree, not NavMenu's, so it
   never receives NavMenu's CSS-isolation scope attribute. */
.sidebar[b-f25s8prrn1]  .nav-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 10px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-secondary);
    font-size: var(--text-base);
    margin-bottom: 1px;
    transition: background 0.1s, color 0.1s;
}

.sidebar[b-f25s8prrn1]  .nav-item:hover {
    background: var(--nav-active-bg);
    color: var(--text-primary);
}

/* Blazor adds .active automatically to the matched NavLink */
.sidebar[b-f25s8prrn1]  .nav-item.active {
    background: var(--nav-active-bg);
    color: var(--text-primary);
    font-weight: 500;
}

.sidebar[b-f25s8prrn1]  .nav-item--button {
    width: 100%;
    border: none;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
}

.nav-badge[b-f25s8prrn1] {
    margin-left: auto;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
}

.nav-badge--red[b-f25s8prrn1]   { background: var(--color-down-bg); color: var(--color-down-text); }
.nav-badge--amber[b-f25s8prrn1] { background: var(--color-warn-bg); color: var(--color-warn-text); }

.sidebar-footer[b-f25s8prrn1] {
    padding: 10px 12px;
    border-top: 0.5px solid var(--sidebar-border);
}

.connection-indicator[b-f25s8prrn1] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    padding: 0 2px;
    margin-bottom: 6px;
}

.mobile-menu-toggle[b-f25s8prrn1] {
    display: none;
}

.sidebar-backdrop[b-f25s8prrn1] {
    display: none;
}

/* Below this width the fixed sidebar would otherwise eat most of the
   screen, so it becomes an off-canvas drawer toggled by the hamburger
   button instead of sitting permanently in the flex layout. */
@media (max-width: 768px) {
    .mobile-menu-toggle[b-f25s8prrn1] {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 12px;
        left: 12px;
        width: 36px;
        height: 36px;
        border-radius: var(--radius-md);
        border: 0.5px solid var(--border-default);
        background: var(--surface-card);
        color: var(--text-primary);
        z-index: 30;
        cursor: pointer;
    }

    .sidebar-backdrop[b-f25s8prrn1] {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 35;
    }

    .sidebar[b-f25s8prrn1] {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 40;
        transform: translateX(-100%);
        transition: transform 0.2s ease;
        box-shadow: 4px 0 16px rgba(0, 0, 0, 0.2);
    }

    .sidebar.sidebar--open[b-f25s8prrn1] {
        transform: translateX(0);
    }
}
/* /Pages/Alerts.razor.rz.scp.css */
.alert-row[b-zpiuedoxgj] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-top: 0.5px solid var(--border-default);
}

.alert-row:first-child[b-zpiuedoxgj] {
    border-top: none;
}

.alert-row .dot[b-zpiuedoxgj] {
    margin-top: 6px;
}

.alert-row__body[b-zpiuedoxgj] {
    flex: 1;
    min-width: 0;
}

.alert-row__title-line[b-zpiuedoxgj] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-row__title[b-zpiuedoxgj] {
    font-weight: 500;
}

.alert-row__description[b-zpiuedoxgj] {
    margin: 2px 0 0;
    font-size: var(--text-sm);
}

.alert-row__time[b-zpiuedoxgj] {
    font-size: var(--text-xs);
    white-space: nowrap;
    flex-shrink: 0;
}
/* /Pages/Home.razor.rz.scp.css */
.dash-server-row[b-s03fdojyyj] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    border-top: 0.5px solid var(--border-default);
}

.dash-server-row:first-child[b-s03fdojyyj] {
    border-top: none;
}

.dash-server-row__name[b-s03fdojyyj] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.dash-server-row__stats[b-s03fdojyyj] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-xs);
}
/* /Pages/Login.razor.rz.scp.css */
.login-card[b-tw0ycgmg95] {
    width: 360px;
    background: var(--surface-card);
    border: 0.5px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: 28px 28px 24px;
}

.login-card__brand[b-tw0ycgmg95] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.login-card__brand-icon[b-tw0ycgmg95] {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-md);
    background: #e6f1fb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #185FA5;
}

.login-card__brand-name[b-tw0ycgmg95] {
    font-weight: 500;
    font-size: var(--text-lg);
}

.login-card__error[b-tw0ycgmg95] {
    color: var(--color-down-text);
    font-size: var(--text-sm);
    margin-bottom: 12px;
}

.login-card__submit[b-tw0ycgmg95] {
    width: 100%;
    justify-content: center;
}
/* /Pages/Servers.razor.rz.scp.css */
.server-card[b-qomp7jmx7h] {
    border: 0.5px solid var(--border-default);
    border-radius: var(--radius-lg);
    margin-bottom: 14px;
    overflow: hidden;
}

.server-card__header[b-qomp7jmx7h] {
    background: var(--surface-muted);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.server-card__title[b-qomp7jmx7h] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.server-card__header-right[b-qomp7jmx7h] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.server-card__body[b-qomp7jmx7h] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 14px 16px;
}

.server-card__metric .stat-label[b-qomp7jmx7h] {
    margin-bottom: 6px;
}

.server-card__metric .stat-note[b-qomp7jmx7h] {
    margin-top: 5px;
}

.server-card__footer[b-qomp7jmx7h] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-top: 0.5px solid var(--border-default);
}
/* /Pages/StatusPages.razor.rz.scp.css */
.status-page-card[b-7brjahgyld] {
    border: 0.5px solid var(--border-default);
    border-radius: var(--radius-lg);
    margin-bottom: 14px;
    overflow: hidden;
}

.status-page-card__header[b-7brjahgyld] {
    background: var(--surface-muted);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.status-page-card__actions[b-7brjahgyld] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-page-card__body[b-7brjahgyld] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 14px 16px;
}

.status-page-card__footer[b-7brjahgyld] {
    padding: 10px 16px;
    border-top: 0.5px solid var(--border-default);
}
