:root {
    color-scheme: dark;
    --bg: #02060f;
    --bg-accent: #061226;
    --card: rgba(6, 16, 32, 0.78);
    --card-strong: rgba(2, 8, 18, 0.92);
    --border: rgba(95, 170, 230, 0.34);
    --border-strong: rgba(111, 195, 255, 0.7);
    --text: #d6e8fb;
    --muted: #8fb3d4;
    --accent: #6fc3ff;
    --accent-strong: #9fd6ff;
    --warning: #f3c74d;
    --danger: #ff4d5a;
    --success: #28d96b;
    --shadow: 0 0 28px rgba(0, 0, 0, 0.48), 0 0 26px rgba(45, 178, 255, 0.12) inset;
    --mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    --font: 'Rajdhani', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --display-font: 'Orbitron', 'Rajdhani', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    position: relative;
    margin: 0;
    min-height: 100vh;
    font-family: var(--font);
    color: var(--text);
    letter-spacing: 0.01em;
    background:
        linear-gradient(90deg, rgba(2, 6, 15, 0.96) 0%, rgba(2, 6, 15, 0.82) 48%, rgba(2, 6, 15, 0.92) 100%),
        radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.58) 100%),
        url("assets/welcome/welcome-bg.png"),
        linear-gradient(180deg, #02060f 0%, #061226 100%);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.44)),
        repeating-linear-gradient(180deg, rgba(111, 195, 255, 0.035) 0, rgba(111, 195, 255, 0.035) 1px, transparent 1px, transparent 5px);
    opacity: 0.55;
}

button,
input,
select {
    font: inherit;
}

[hidden] {
    display: none !important;
}

.admin-hub {
    width: min(1440px, calc(100% - 24px));
    margin: 24px auto 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.admin-hub__hero,
.admin-card {
    position: relative;
    background: linear-gradient(180deg, rgba(6, 16, 32, 0.82), rgba(2, 8, 18, 0.9));
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.admin-hub__hero::before,
.admin-card::before,
.admin-hub__hero::after,
.admin-card::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.admin-hub__hero::before,
.admin-card::before {
    top: -1px;
    left: -1px;
    border-top: 1px solid var(--accent);
    border-left: 1px solid var(--accent);
    border-top-left-radius: 10px;
}

.admin-hub__hero::after,
.admin-card::after {
    right: -1px;
    bottom: -1px;
    border-right: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    border-bottom-right-radius: 10px;
}

.admin-hub__hero {
    padding: 26px 30px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.admin-hub__brand {
    display: flex;
    align-items: center;
    gap: 22px;
    min-width: 0;
}

.admin-hub__emblem {
    flex: 0 0 auto;
    width: clamp(72px, 8vw, 112px);
    height: clamp(72px, 8vw, 112px);
    filter: drop-shadow(0 0 12px rgba(80, 170, 240, 0.45));
}

.admin-hub__emblem img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.admin-hub__brand-copy {
    min-width: 0;
}

.admin-hub__eyebrow {
    margin: 0 0 8px;
    color: var(--accent);
    font-family: var(--display-font);
    text-transform: uppercase;
    letter-spacing: 0.42em;
    font-size: 0.84rem;
}

.admin-hub__title {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(2.1rem, 4vw, 3.75rem);
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #eaf4ff;
    background: linear-gradient(180deg, #ffffff 0%, #6fc3ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 24px rgba(80, 170, 240, 0.25);
}

.admin-hub__subtitle {
    margin: 12px 0 0;
    max-width: 70ch;
    color: #c7e6f7;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.35;
    text-shadow: 0 0 10px rgba(75, 180, 255, 0.16);
}

.admin-hub__hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-hub__ghost-link {
    color: var(--text);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 16px;
    background: linear-gradient(180deg, rgba(8, 22, 42, 0.78), rgba(4, 12, 24, 0.82));
}

.admin-shell {
    padding: 20px;
}

.admin-shell__topline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.admin-universe-picker {
    display: flex;
    align-items: end;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.admin-universe-picker .admin-field {
    min-width: min(320px, 100%);
}

.admin-universe-picker .admin-card__meta {
    margin: 0 0 8px;
}

.admin-universe-create {
    display: grid;
    grid-template-columns: minmax(180px, 1.2fr) minmax(160px, 1fr) repeat(4, minmax(90px, 0.55fr)) auto;
    gap: 12px;
    align-items: end;
    margin-top: 14px;
}

.admin-field--compact {
    min-width: 90px;
}

.admin-universe-create .admin-buttons {
    justify-content: flex-start;
}

.admin-universe-create .admin-status {
    grid-column: 1 / -1;
    margin: 0;
}

.admin-shell__controls {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    align-items: end;
    flex-wrap: wrap;
}

.admin-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.admin-tabs__tab,
.admin-buttons button,
.admin-buttons a,
.admin-pagination button,
.admin-hub__ghost-link {
    transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.admin-tabs__tab,
.admin-buttons button,
.admin-buttons a,
.admin-pagination button {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(8, 22, 42, 0.78), rgba(4, 12, 24, 0.82));
    color: var(--text);
    padding: 10px 16px;
    cursor: pointer;
    font-family: var(--display-font);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
}

.admin-tabs__tab:hover,
.admin-buttons button:hover:not(:disabled),
.admin-buttons a:hover,
.admin-pagination button:hover:not(:disabled),
.admin-hub__ghost-link:hover {
    transform: translateY(-1px);
    border-color: var(--border-strong);
    background: linear-gradient(180deg, rgba(14, 38, 70, 0.88), rgba(6, 18, 36, 0.9));
    color: var(--accent-strong);
    box-shadow: 0 0 18px rgba(80, 170, 240, 0.18);
}

.admin-tabs__tab.is-active {
    background: linear-gradient(180deg, rgba(18, 83, 128, 0.72), rgba(4, 28, 52, 0.88));
    border-color: var(--accent);
    color: var(--accent-strong);
    box-shadow: 0 0 14px rgba(45, 178, 255, 0.22) inset;
}

.admin-grid {
    display: grid;
    gap: 18px;
}

.admin-grid--overview,
.admin-grid--split {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
}

.admin-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-card {
    padding: 20px;
}

.admin-card > * {
    position: relative;
    z-index: 1;
}

.admin-card__header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.admin-card__header--tight {
    margin-bottom: 10px;
}

.admin-card__title {
    margin: 0;
    font-family: var(--display-font);
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #eaf4ff;
}

.admin-card__title--small {
    font-size: 1rem;
}

.admin-card__subtitle,
.admin-card__meta {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 500;
}

.admin-card__subsection {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(123, 183, 210, 0.16);
}

.admin-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 220px;
}

.admin-field__label {
    color: var(--muted);
    font-family: var(--display-font);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-field input,
.admin-field select,
.admin-inline-form input,
.admin-inline-form select {
    min-height: 40px;
    padding: 9px 12px;
    border-radius: 0;
    border: 1px solid rgba(79, 195, 247, 0.45);
    background: rgba(4, 14, 32, 0.95);
    color: var(--text);
    box-shadow:
        inset 0 0 0 1px rgba(79, 195, 247, 0.12),
        inset 0 0 12px rgba(20, 60, 130, 0.4);
}

.admin-field input:focus,
.admin-field select:focus {
    outline: none;
    border-color: rgba(120, 210, 255, 0.95);
    box-shadow:
        0 0 0 2px rgba(79, 195, 247, 0.35),
        inset 0 0 12px rgba(20, 60, 130, 0.4);
}

.admin-inline-form,
.admin-form-stack {
    display: flex;
    gap: 14px;
    align-items: end;
    flex-wrap: wrap;
}

.admin-form-stack {
    flex-direction: column;
    align-items: stretch;
}

.admin-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-buttons button:disabled {
    cursor: not-allowed;
    opacity: 0.58;
}

.admin-button--muted {
    background: linear-gradient(180deg, rgba(6, 18, 34, 0.6), rgba(3, 10, 20, 0.7)) !important;
}

.admin-button--danger {
    background: linear-gradient(180deg, rgba(80, 24, 34, 0.72), rgba(34, 7, 16, 0.86)) !important;
    border-color: rgba(255, 77, 90, 0.5) !important;
    color: #ffd9dd !important;
}

.admin-status {
    margin: 0;
    color: var(--muted);
}

.admin-status[data-tone="success"] {
    color: var(--success);
}

.admin-status[data-tone="warning"] {
    color: var(--warning);
}

.admin-status[data-tone="error"] {
    color: var(--danger);
}

.admin-warning {
    margin-top: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(245, 201, 101, 0.35);
    border-radius: 6px;
    background: rgba(245, 201, 101, 0.1);
    color: var(--warning);
}

.admin-filter-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-filter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: end;
}

.admin-filter-grid--users {
    grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(160px, 0.7fr)) auto;
}

.admin-filter-grid--audit {
    grid-template-columns: minmax(200px, 0.9fr) minmax(160px, 0.7fr) minmax(140px, 0.55fr) auto auto;
}

.admin-checkbox,
.admin-chip {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    min-height: 40px;
    color: var(--muted);
}

.admin-chip-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-chip {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 7px 12px;
    background: linear-gradient(180deg, rgba(6, 18, 34, 0.6), rgba(3, 10, 20, 0.7));
}

.admin-log,
.admin-tree,
.admin-details {
    background: var(--card-strong);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 0 18px rgba(45, 178, 255, 0.08) inset;
}

.admin-log {
    max-height: 480px;
    overflow: auto;
    padding: 16px;
}

.admin-log__entries {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: var(--mono);
    font-size: 0.9rem;
}

.log-entry {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.log-entry__timestamp {
    min-width: 96px;
    text-decoration: none;
    color: var(--muted);
}

.log-entry__level {
    min-width: 58px;
    text-transform: uppercase;
    font-weight: 700;
}

.log-entry__source {
    min-width: 84px;
    background: rgba(4, 14, 32, 0.9);
    border: 1px solid var(--border);
    border-radius: 8px;
.log-entry__message {
    flex: 1 1 auto;
    word-break: break-word;
}

.log-entry--info .log-entry__level {
    color: var(--accent);
}

.log-entry--warning .log-entry__level {
    color: var(--warning);
}

.log-entry--error .log-entry__level {
    color: var(--danger);
}

.log-entry--debug .log-entry__level,
.log-entry--trace .log-entry__level {
    color: #c0d6df;
}

.admin-table-wrap {
    overflow: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 11px 10px;
    text-align: left;
    border-bottom: 1px solid rgba(95, 170, 230, 0.18);
    vertical-align: top;
}

.admin-table th {
    color: var(--accent);
    font-family: var(--display-font);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.admin-table tbody tr:hover {
    background: rgba(111, 195, 255, 0.08);
}

.admin-table tbody tr.is-selected {
    background: rgba(111, 195, 255, 0.16);
}

.admin-row-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.admin-row-actions input {
    width: 180px;
}

.admin-online {
    color: var(--success);
}

.admin-suspended {
    color: var(--warning);
    font-weight: 700;
}

.admin-pagination {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.admin-audit-list {
    margin: 0;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--muted);
}

.admin-tree {
    min-height: 520px;
    max-height: 70vh;
    overflow: auto;
    padding: 10px;
}

.admin-details {
    min-height: 520px;
    max-height: 70vh;
    overflow: auto;
    padding: 12px;
}

.admin-card--dashboard {
    margin-bottom: 18px;
}

.admin-dashboard {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
    gap: 18px;
    align-items: start;
}

@media (max-width: 1100px) {
    .admin-dashboard {
        grid-template-columns: 1fr;
    }
}

.admin-snapshot-frame {
    position: relative;
    background: rgba(4, 14, 32, 0.9);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.admin-snapshot-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: pixelated;
    display: block;
}

.admin-snapshot-frame img[hidden] {
    display: none;
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 10px;
}

.admin-stat {
    background: linear-gradient(180deg, rgba(6, 18, 34, 0.6), rgba(3, 10, 20, 0.7));
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 0 18px rgba(45, 178, 255, 0.08) inset;
}

.admin-stat__label {
    color: var(--muted);
    font-family: var(--display-font);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-stat__value {
    font-size: 1.35rem;
    font-weight: 700;
    color: #eaf4ff;
}

.admin-button--muted[aria-disabled="true"] {
    opacity: 0.5;
    pointer-events: none;
}

.tree-node {
    margin-left: 14px;
}

.tree-node__row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    border-radius: 6px;
    cursor: pointer;
}

.tree-node__row:hover,
.tree-node__row.is-selected {
    background: rgba(111, 195, 255, 0.14);
}

.tree-node__toggle {
    width: 18px;
    border: 1px solid var(--border);
    border-radius: 3px;
    text-align: center;
    font-size: 0.8rem;
    line-height: 16px;
    padding: 0;
    background: rgba(4, 14, 32, 0.95);
    color: var(--text);
    cursor: pointer;
}

.tree-node__label {
    font-size: 0.92rem;
}

.tree-node__children[hidden] {
    display: none;
}

.tree-node__badge {
    color: var(--muted);
    font-size: 0.78rem;
}

.details-table {
    width: 100%;
    border-collapse: collapse;
}

.details-table td {
    padding: 7px;
    border-bottom: 1px solid rgba(95, 170, 230, 0.18);
}

.details-table td:first-child {
    width: 38%;
    color: var(--muted);
}

@media (max-width: 1120px) {
    .admin-grid--overview,
    .admin-grid--split,
    .admin-grid--two,
    .admin-filter-grid,
    .admin-filter-grid--users,
    .admin-filter-grid--audit,
    .admin-universe-create {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .admin-hub {
        width: min(100% - 16px, 100%);
        margin: 8px auto 20px;
    }

    .admin-hub__hero,
    .admin-card {
        padding: 16px;
        border-radius: 10px;
    }

    .admin-hub__brand {
        align-items: flex-start;
        gap: 14px;
    }

    .admin-hub__emblem {
        width: 64px;
        height: 64px;
    }

    .admin-hub__eyebrow {
        letter-spacing: 0.22em;
    }

    .admin-hub__hero,
    .admin-shell__topline {
        flex-direction: column;
    }

    .admin-shell__controls,
    .admin-inline-form {
        align-items: stretch;
    }
}


/* ===== Phase 2: Entity Editor ===== */
.admin-entities {
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 18px;
    margin-top: 14px;
}

.admin-entities__sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.admin-entities__detail {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.admin-entity-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
    border-radius: 8px;
    background: rgba(2, 8, 18, 0.72);
    max-height: 65vh;
    overflow: auto;
    box-shadow: 0 0 18px rgba(45, 178, 255, 0.08) inset;
}

.admin-entity-list li {
    border-bottom: 1px solid rgba(95, 170, 230, 0.16);
}

.admin-entity-list li:last-child {
    border-bottom: none;
}

.admin-entity-list__item {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: inherit;
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.admin-entity-list__item:hover,
.admin-entity-list__item:focus {
    background: rgba(111, 195, 255, 0.1);
    outline: none;
}

.admin-entity-list__name {
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-entity-list__id {
    font-size: 11px;
    color: var(--muted);
    font-family: 'Consolas', 'Menlo', monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-entity-list__empty {
    padding: 12px;
    color: var(--muted);
    text-align: center;
}

.admin-entity-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
    border-radius: 8px;
    padding: 14px 16px;
    background: rgba(2, 8, 18, 0.72);
    box-shadow: 0 0 18px rgba(45, 178, 255, 0.08) inset;
}

.admin-entity-form__header {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 4px;
}

.admin-entity-form__title {
    margin: 0;
    font-family: var(--display-font);
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #eaf4ff;
}

.admin-entity-form__meta {
    color: var(--muted);
    font-size: 12px;
    font-family: 'Consolas', 'Menlo', monospace;
}

.admin-entity-form__fields {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px 16px;
}

.admin-entity-form__row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
}

.admin-entity-form__row--readonly {
    opacity: 0.85;
}

.admin-entity-form__label {
    font-weight: 600;
    color: var(--muted);
    font-family: var(--display-font);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-entity-form__value {
    background: rgba(4, 14, 32, 0.72);
    border: 1px solid rgba(95, 170, 230, 0.18);
    border-radius: 4px;
    padding: 6px 8px;
    font-family: 'Consolas', 'Menlo', monospace;
}

.admin-entity-form__row input[type="text"],
.admin-entity-form__row input[type="number"],
.admin-entity-form__row select,
.admin-entity-form__row textarea {
    background: rgba(4, 14, 32, 0.95);
    border: 1px solid rgba(79, 195, 247, 0.45);
    border-radius: 0;
    padding: 6px 8px;
    color: inherit;
    font: inherit;
}

.admin-entity-form__row input:focus,
.admin-entity-form__row select:focus,
.admin-entity-form__row textarea:focus {
    border-color: rgba(120, 210, 255, 0.95);
    outline: none;
    box-shadow: 0 0 0 2px rgba(79, 195, 247, 0.28);
}

.admin-entity-form__help {
    color: var(--muted);
    font-size: 11px;
}

.admin-entity-form__semantics {
    color: var(--warning, #f5c965);
    font-style: italic;
    font-size: 11px;
    text-transform: none;
    letter-spacing: 0;
}

.admin-entity-form__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(95, 170, 230, 0.16);
    padding-top: 10px;
}

.admin-status--success { color: var(--success, #6fd58a); }
.admin-status--error { color: var(--danger, #ff7b74); }
.admin-status--muted { color: var(--muted); }

@media (max-width: 900px) {
    .admin-entities {
        grid-template-columns: 1fr;
    }
}

.admin-muted {
    color: var(--muted);
}

.admin-connection-details summary {
    color: var(--accent);
    cursor: pointer;
    font-weight: 600;
}

.admin-connection-list {
    display: grid;
    gap: 8px;
    margin: 8px 0 0;
    padding-left: 0;
    list-style: none;
    min-width: 320px;
}

.admin-connection-list li {
    display: grid;
    gap: 3px;
    padding: 8px;
    border: 1px solid rgba(95, 170, 230, 0.22);
    border-radius: 8px;
    background: rgba(4, 14, 32, 0.58);
    color: var(--muted);
    font-size: 0.78rem;
}

.admin-connection-list strong {
    color: var(--text);
}
