/* ═══════════════════════════════════════════════
   RIGHT COLUMN — online widget
   /css/right_column/online_widget.css
   ═══════════════════════════════════════════════ */

.ow-outer {
    border: 1.5px solid #d0d0d0;
    border-radius: 18px;
    padding: 10px;
    background: #f7f7f7;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.ow-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    padding: 10px 12px 12px;
    overflow: hidden;
}

/* ── Строка заголовка блока ── */
.ow-row-head {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
}
.ow-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    position: relative;
    flex-shrink: 0;
}
.ow-pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.3);
    animation: owPulse 1.6s ease-out infinite;
}
@keyframes owPulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(2.2); opacity: 0; }
}
.ow-row-label {
    font-size: 13px;
    font-weight: 700;
    color: #222;
}
.ow-row-count {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: #22c55e;
    border-radius: 20px;
    padding: 1px 8px;
    margin-left: auto;
}

/* ── Аватарки ── */
.ow-avatars {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}
.ow-avatar-wrap {
    position: relative;
    display: inline-block;
    text-decoration: none;
    transition: transform 0.15s;
    flex-shrink: 0;
}
.ow-avatar-wrap:hover {
    transform: translateY(-3px);
}
.ow-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    display: block;
}
.ow-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #fff;
}

/* ── Пустой ── */
.ow-card--empty {
    font-size: 13px;
    color: #aaa;
    text-align: center;
    padding: 14px;
}

@media (max-width: 1024px) {
    .ow-outer { display: none; }
}