.th-comment-wrapper {
  width: 480px;
  background-color: #101010;
  color: #f3f5f7;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 20px;
  padding: 16px;
  display: flex;
  gap: 12px;
  border-radius: 8px;
  box-sizing: border-box;
}

.th-comment-wrapper.light-theme {
  background-color: #ffffff;
  color: #000000;
}

.th-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.th-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #333;
}

.th-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.th-line {
  flex-grow: 1;
  width: 2px;
  background-color: #2a2a2a;
  margin-top: 8px;
  border-radius: 1px;
}

.th-comment-wrapper.light-theme .th-line {
  background-color: #e5e5e5;
}

.th-comment-body {
  flex-grow: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.th-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.th-user-info {
  display: flex;
  align-items: center;
  gap: 4px;
}

.th-username {
  font-weight: 600;
  color: inherit;
  text-decoration: none;
}

.th-badge-verified {
  width: 14px;
  height: 14px;
  fill: #0095f6;
  display: inline-flex;
}

.th-meta-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #616161;
}

.th-comment-wrapper.light-theme .th-meta-right {
  color: #999999;
}

.th-timestamp {
  white-space: nowrap;
}

.th-text {
  word-break: break-word;
  white-space: pre-wrap;
  margin-bottom: 8px;
}

.th-actions {
  display: flex;
  gap: 16px;
  color: #f3f5f7;
  margin-bottom: 6px;
}

.th-comment-wrapper.light-theme .th-actions {
  color: #000000;
}

.th-action-btn {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.th-action-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.th-footer-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #616161;
}

.th-comment-wrapper.light-theme .th-footer-stats {
  color: #999999;
}
