.forum-vote-widget {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
}

.forum-vote-widget button {
  background: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  color: #666;
  transition: all 0.2s;
}

.forum-vote-widget button:hover {
  background: #f0f0f0;
  border-color: #ccc;
}

.forum-vote-widget button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.forum-vote-widget .vote-up:hover {
  color: #28a745;
  border-color: #28a745;
}

.forum-vote-widget .vote-down:hover {
  color: #dc3545;
  border-color: #dc3545;
}

.forum-vote-widget.voted-up .vote-up {
  background: #28a745;
  color: white;
  border-color: #28a745;
}

.forum-vote-widget.voted-down .vote-down {
  background: #dc3545;
  color: white;
  border-color: #dc3545;
}

.forum-vote-widget .vote-score {
  font-weight: 600;
  min-width: 2rem;
  text-align: center;
}
