.thomas-vote2-container {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.vote-button {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  background: #f8f9fa;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.2s;
}

.vote-button:hover {
  background: #e9ecef;
}

.vote-button.active {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

.vote-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.vote-button:disabled:hover {
  background: #f8f9fa;
}

.vote-button.anonymous-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #f8f9fa;
}

.vote-button.anonymous-disabled:hover {
  background: #f8f9fa;
}

.upvote.active {
  background: #28a745;
  border-color: #28a745;
}

.downvote.active {
  background: #dc3545;
  border-color: #dc3545;
}