/* Assignee Badge */

.assignee-badge {
    display: inline-block;
    padding: 2px 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
    color: #9aa0a6;
    margin-left: 4px;
}

.task-assignee {
    position: relative;
}

/* Tooltip styling */
.task-assignee[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #2d2f31;
    color: #e8eaed;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    border: 1px solid #35383b;
    z-index: 1000;
    margin-bottom: 4px;
}

