/* 投票相关样式 */

.vote-user-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  backdrop-filter: blur(4px);
}

.btn-logout-sm {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 12px;
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.btn-logout-sm:hover {
  color: white;
  border-color: white;
  background: rgba(255, 255, 255, 0.15);
}

.vote-section {
  padding: 8px 16px 0;
  display: flex;
  justify-content: center;
}

.btn-vote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: #f5f5f5;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  transition: all 0.3s ease;
  user-select: none;
}

.btn-vote:hover {
  background: #fff0f0;
  border-color: #ffb3b3;
  transform: scale(1.05);
}

.btn-vote.voted {
  background: #fff0f0;
  border-color: #ff6b6b;
  color: #e53935;
}

.btn-vote.voted:hover {
  background: #ffe0e0;
  border-color: #ff4444;
}

.vote-icon {
  font-size: 18px;
  line-height: 1;
}

.vote-count {
  font-size: 15px;
  font-weight: 600;
  min-width: 12px;
  text-align: center;
}

@media (max-width: 768px) {
  .vote-user-info {
    font-size: 12px;
    padding: 6px 12px;
  }

  .btn-vote {
    padding: 6px 16px;
    font-size: 13px;
  }

  .vote-icon {
    font-size: 16px;
  }
}
