.operations-metric-scope {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  margin: 7px 0;
  padding: 6px 10px;
  border: 1px solid #dbe5f1;
  border-left: 3px solid var(--operations-group-color);
  border-radius: 8px;
  background: #fff;
  color: #66758a;
  font-size: 12px;
}

.operations-metric-scope > i,
.operations-group-badge > i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--operations-group-color);
}

.operations-metric-scope > strong {
  color: var(--operations-group-color);
}

.operations-metric-scope > small {
  margin-left: auto;
  color: #8b98aa;
}

.operations-group-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: 96px;
  min-height: 20px;
  padding: 1px 7px;
  overflow: hidden;
  border: 1px solid #dbe5f1;
  border-radius: 999px;
  background: #fff;
  color: var(--operations-group-color);
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .operations-metric-scope {
    flex-wrap: wrap;
  }

  .operations-metric-scope > small {
    width: 100%;
    margin-left: 14px;
  }
}
