/* scope.css */

/* スコープタグ */
.scope-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 4px 8px;
  margin: 4px;
  background: #fff;
  font-size: 14px;
}
.scope-tag .remove-btn {
  font-size: 16px;
  font-weight: bold;
  margin-left: 6px;
  cursor: pointer;
  user-select: none;
}
.scope-tag .remove-btn:hover {
  color: red;
}

/* スコープ設定エリア */
.scope-area {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px;
  position: relative;
  margin: 8px 0;
}

/* タグ一覧 */
.scope-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* プレースホルダー */
.scope-placeholder {
  color: #aaa;
  text-align: center;
  width: 100%;
  display: block;
}

/* 追加ボタン */
.scope-add-btn {
  position: absolute;
  right: 8px;
  bottom: 8px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
  color: gray;
  outline: none;
}
.scope-add-btn:focus {
  outline: none;
}

#user-scope-search {
  font-size: 1.2rem;
}