/* ============================================================
   PLAYER STATUS
   ============================================================ */

.player-status {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle;
    transition: background 0.3s;
}

.player-status.online {
    background: var(--green);
    box-shadow: 0 0 6px rgba(106, 154, 106, 0.5);
}

.player-status.offline {
    background: var(--gray-text);
}

/* Элементы с data-player-id */
[data-player-id] {
    cursor: help;
}

/* Глобальный плавающий тултип (позиционируется из JS относительно окна) */
#players-tooltip {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--bg-footer);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    max-width: 260px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.8);
    z-index: 100000;
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--text);
    line-height: 1.5;
    white-space: normal;
    pointer-events: none;
}

/* Автор обращения в шапке */
.feedback-detail-author {
    display: inline-flex;
    align-items: center;
    color: var(--cream);
    font-weight: 600;
}
