/* CapCut-style light theme 自訂樣式 */
input[type="range"] { accent-color: #111; cursor: pointer; }

.chip {
  white-space: nowrap;
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #444;
  cursor: pointer;
  transition: all .15s;
}
.chip:hover { border-color: #cfcfcf; }
.chip-active { background: #111; color: #fff; border-color: #111; }

.voice-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.voice-item:hover { background: #f7f7f8; }
.voice-item.selected { border-color: #111; background: #f2f2f2; }

.voice-avatar {
  width: 38px; height: 38px; border-radius: 9999px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: 14px;
}

.line-clamp-3 {
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: #d4d4d8; border-radius: 4px; }
::-webkit-scrollbar-track { background: transparent; }
