/* =========================================================================
   Presence Indicator — Teams Online Status
   ========================================================================= */

.presence-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 4px;
    vertical-align: middle;
    flex-shrink: 0;
}

.presence-available {
    background: #00C851;
}

.presence-busy {
    background: #ff4444;
}

.presence-away {
    background: #ffbb33;
}

.presence-dnd {
    background: #ff4444;
    border: 2px solid white;
    box-sizing: border-box;
}

.presence-offline {
    background: #aaa;
}

/* Tooltip for presence status */
.presence-dot[title] {
    cursor: default;
}
