/* 🏆 排行榜（紀錄 tab 內 section） */

.lb-scopes,
.lb-dims {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.lb-chip {
  border: 1px solid #d8d2c6;
  background: #fffdf7;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.lb-chip:hover { border-color: #b8ad97; }

.lb-chip.is-active {
  background: #f4e9d0;
  border-color: #c9a86a;
  font-weight: 700;
}

.lb-chip--ghost { color: #8a8272; }

.lb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lb-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #fffdf7;
  border: 1px solid #eee6d6;
}

.lb-row.is-me {
  background: #fdf3dc;
  border-color: #c9a86a;
  font-weight: 700;
}

.lb-rank {
  width: 2.4em;
  text-align: center;
  font-weight: 700;
  flex: none;
}

.lb-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}

.lb-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lb-value {
  flex: none;
  color: #7a6a45;
  font-weight: 700;
}

.lb-footer {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #8a8272;
  text-align: center;
}

/* 群組管理面板 */

.lb-manage {
  border: 1px dashed #d8d2c6;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  background: #fffcf3;
}

.lb-manage-forms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.lb-manage-form {
  display: flex;
  gap: 6px;
  flex: 1 1 220px;
}

.lb-manage-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid #d8d2c6;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.9rem;
}

.lb-manage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lb-manage-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 6px 10px;
  border-radius: 10px;
  background: #fffdf7;
  border: 1px solid #eee6d6;
  font-size: 0.9rem;
}

.lb-manage-name { flex: 1; min-width: 0; }

.lb-manage-code strong {
  letter-spacing: 0.12em;
  font-family: ui-monospace, monospace;
}

.lb-manage-msg {
  margin-top: 8px;
  color: #b0563c;
  font-size: 0.88rem;
}
