.tw-comment-wrapper {
  width: 500px;
  background-color: #000000;
  color: #e7e9ea;
  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;
}

.tw-comment-wrapper.light-theme {
  background-color: #ffffff;
  color: #0f1419;
}

.tw-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background-color: #333;
}

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

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

.tw-header {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  margin-bottom: 2px;
}

.tw-displayname {
  font-weight: 700;
  color: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 140px;
}

.tw-badge-verified {
  width: 16px;
  height: 16px;
  fill: #1d9bf0;
  display: inline-flex;
  flex-shrink: 0;
}

.tw-comment-wrapper.light-theme .tw-badge-verified.gold {
  fill: #e7b10a;
}

.tw-badge-verified.gold {
  fill: #e7b10a;
}

.tw-username {
  color: #71767b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 110px;
}

.tw-comment-wrapper.light-theme .tw-username {
  color: #536471;
}

.tw-dot {
  color: #71767b;
  font-size: 13px;
}

.tw-comment-wrapper.light-theme .tw-dot {
  color: #536471;
}

.tw-timestamp {
  color: #71767b;
  white-space: nowrap;
}

.tw-comment-wrapper.light-theme .tw-timestamp {
  color: #536471;
}

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

.tw-actions {
  display: flex;
  justify-content: space-between;
  max-width: 325px;
  color: #71767b;
  margin-top: 4px;
}

.tw-comment-wrapper.light-theme .tw-actions {
  color: #536471;
}

.tw-action-btn {
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.2s;
}

.tw-action-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.tw-action-btn:hover.btn-reply {
  color: #1d9bf0;
}

.tw-action-btn:hover.btn-repost {
  color: #00ba7c;
}

.tw-action-btn:hover.btn-like {
  color: #f91880;
}
