/* Agent Badge — shown on module cards in dashboard grid */
.agent-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-family: 'IBM Plex Mono', monospace;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: #aaa;
    white-space: nowrap;
    margin-top: 4px;
}

.agent-badge .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.agent-badge .status-dot.active { background: #00ff41; box-shadow: 0 0 4px #00ff41; }
.agent-badge .status-dot.working { background: #FFAA00; box-shadow: 0 0 4px #FFAA00; }
.agent-badge .status-dot.resting { background: #8B5CF6; }
.agent-badge .status-dot.offline { background: #555; }

.agent-badge .agent-name {
    color: #c9d1d9;
    font-weight: 500;
}

.agent-badge .agent-codename {
    color: #6e7681;
    font-size: 9px;
}
