.tooltip-vote {
  position: absolute;
  top: -80px; /* ajusta a posição acima do botão */
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  padding: 8px 22px 8px 22px;
  border-radius: 40px;
  display: flex;
  gap: 10px;
  width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  display: none;
  transition: opacity 0.5s ease;
}
.tooltip-vote.show {
    display: block;
  }
.vote-icon {
    margin: 5px;
    background-color: #eee;
    border: none;
    cursor: pointer;
  }
.mvbtn svg {
    width: 32px;
    height: 32px;
    fill: #444;
  }
.tooltip-vote::after {
  content: "";
  position: absolute;
  bottom: -8px; /* posiciona a seta abaixo do balão */
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px 8px 0 8px; /* triângulo para cima */
  border-style: solid;
  border-color: #111 transparent transparent transparent;
  width: 0;
  height: 0;
  z-index: 1000;
}
.tooltip-vote .vote-icon {
  color: rgba(113, 125, 138, 0.5);
  border: none;
  font-size: 20px;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.tooltip-vote .vote-icon:hover {
  background: #ccc;
}

/* Quando o botão é hover, mostra o balão */
#open-vote-popup {
  position: relative;
}

#open-vote-popup:hover .tooltip-vote {
  opacity: 1;
  pointer-events: auto;
}