body {
  font-family: sans-serif;
  padding: 20px;
  background: #f7f7f7;
}

#tag-search {
  margin-bottom: 20px;
}

#tagInput {
  width: 300px;
  padding: 8px;
  font-size: 16px;
}

#monster-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.monster-card {
  background: white;
  padding: 16px;
  border-radius: 8px;
}

.tag {
  display: inline-block;
  background: #eee;
  border-radius: 4px;
  padding: 2px 6px;
  margin: 2px;
  font-size: 12px;
  font-family: 'RocknRoll One', sans-serif;
}

#tag-list-container {
  margin-bottom: 20px;
}

#tag-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tag-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tag-group-title {
  font-weight: bold;
  font-size: 14px;
  color: #444;
  margin-bottom: 4px;
}

.tag-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.clickable-tag {
  background-color: #ddd;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
  transition: background-color 0.2s;
}

.clickable-tag:hover {
  background-color: #bbb;
}
