/* BBclubs Voting System Styles */

/* Voting section styling */
.vote-section {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 12px;
}

.vote-btn {
  background: none;
  
  border-radius: 4px;
  padding: 4px 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
}

.vote-btn:hover {
  background: #f3f4f6;
}

.vote-btn.vote-up:hover {
  color: #059669;
}

.vote-btn.vote-down:hover {
  color: #dc2626;
}

.vote-btn.active {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.vote-btn.vote-up.active {
  background: transparent;
  border-color: #059669;
  color: #059669;
}

.vote-btn.vote-down.active {
  background: transparent;
  border-color: #dc2626;
  color: #dc2626;
}

.vote-score {
  font-weight: 600;
  color: #374151;
  font-size: 12px;
  min-width: 20px;
  text-align: center;
  padding: 0 0px;
}

.vote-score.positive {
  color: #059669;
}

.vote-score.negative {
  color: #dc2626;
}

/* Highlight containers when score crosses threshold */
.vote-highlight-positive {
    color: #3c763d !important;
    background-color: #dff0d8 !important;
    border-color: #d6e9c6 !important;
}

.vote-highlight-negative {
    color: #a94442 !important;
    background-color: #f2dede !important;
    border-color: #ebccd1 !important;
}
