/* ==============================================
   ASSIGNEE AVATAR STYLES
   ============================================== */

/* Assignee Avatar Container */
.fbs-assignee-avatar {
    display: inline-flex;
    align-items: center;
    cursor: default;
}

/* Avatar Image */
.fbs-assignee-avatar .fbs-avatar-img {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Assignee Tooltip */
.fbs-assignee-tooltip {
    position: absolute;
    background: #2c3e50;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.2s ease;
    pointer-events: none;
    z-index: 10000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.fbs-assignee-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tooltip Arrow */
.fbs-assignee-tooltip::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid #2c3e50;
}

.fbs_assignees {
    display: flex;
}