.mr-vote-server {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  width: 260px;
  padding: 12px 16px;

  border-radius: 12px;

  background: linear-gradient(135deg, #ff9800, #ff5722) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);

  text-decoration: none !important;

  transition: all 0.25s ease;
}

.mr-vote-server:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.mr-vote-server img {
  height: 24px !important;
  width: auto !important;
  filter: brightness(1.1);
}

#mr-vote-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

#mr-vote-counter {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff !important;
}

#mr-vote-counter u,
#mr-vote-counter i {
  color: #ffffff !important;
  font-style: normal;
}

@media (max-width: 600px) {
  .mr-vote-server {
    width: 100% !important;
    justify-content: center !important;
  }
}