/* Всплывающая панель с раскладкой онлайна (клик по индикатору "Онлайн") */
.online-dot-wrap { cursor: pointer; user-select: none; }
.online-dot-wrap:hover .online-text { border-color: rgba(255,255,255,0.2); }

.ek-online-pop {
    position: fixed;
    z-index: 1200;
    min-width: 260px;
    max-width: calc(100vw - 24px);
    background: #121216;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.55);
    padding: 0.9rem 1rem;
    color: #e8e6e3;
    font-family: 'Manrope', -apple-system, sans-serif;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
}
.ek-online-pop.show { opacity: 1; transform: translateY(0); pointer-events: auto; }

.ek-online-pop h4 {
    margin: 0 0 0.7rem;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
}

.ek-op-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 0.42rem 0;
    font-size: 0.84rem;
}
.ek-op-row + .ek-op-row { border-top: 1px solid rgba(255,255,255,0.04); }
.ek-op-label { display: flex; align-items: center; gap: 0.5rem; color: #cbd5e1; min-width: 0; flex: 1; }
.ek-op-label i { width: 14px; text-align: center; font-size: 0.78rem; opacity: 0.75; }
.ek-op-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.ek-op-num { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; font-weight: 800; color: #6b7280; flex-shrink: 0; }
.ek-op-val { font-family: 'JetBrains Mono', monospace; font-weight: 800; color: #fff; white-space: nowrap; }
.ek-op-sub { color: #6b7280; font-weight: 600; font-size: 0.74rem; }

.ek-op-sep { height: 1px; background: rgba(255,255,255,0.07); margin: 0.6rem 0; }

.ek-op-total {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.86rem; font-weight: 800; color: #fff;
}
.ek-op-total .ek-op-val { color: #22c55e; }

.ek-op-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.ek-op-dot.on { background: #22c55e; box-shadow: 0 0 7px #22c55e; }
.ek-op-dot.off { background: #ef4444; box-shadow: 0 0 7px rgba(239,68,68,0.7); }

.ek-op-loading, .ek-op-error { color: #6b7280; font-size: 0.82rem; padding: 0.3rem 0; }
.ek-op-error { color: #ef4444; }
.ek-op-hint { margin-top: 0.6rem; font-size: 0.68rem; color: #4b5563; }
