.online-users {
    margin-left: 15px;
    display: flex;
    align-items: center;
}

/* Avatar circle */
.user-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #222831;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    margin-left: -10px;
    cursor: pointer;
    position: relative;
    z-index: 1;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        z-index 0.15s;
}

.user-circle_it {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #febf02;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    margin-left: -10px;
    cursor: pointer;
    position: relative;
    z-index: 1;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        z-index 0.15s;
}

/* Hover avatar */
.user-circle:hover,
.user-circle_it:hover {
    transform: translateY(-6px) scale(1.12);
    z-index: 20;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

/* Tooltip */
.user-circle::after,
.user-circle_it::after {
    /* content: attr(data-name);
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #222831;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 6px;
    white-space: pre-line;

    opacity: 0;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease; */
    content: attr(data-name);
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);

    background: #222831;
    color: #fff;
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 8px;

    white-space: nowrap;
    /* tetap 1 baris */
    width: max-content;
    /* selebar isi */

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Tooltip show */
.user-circle:hover::after,
.user-circle_it:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}




/* Circle +X */
.user-circle.more {
    background: #44444E;
}

.user-circle.more::after {
    white-space: pre;
    /* 🔥 BUKAN pre-line */
    width: max-content;
}