body {
  background: linear-gradient(180deg, #6f7bd9, #7b5fc4);
  min-height: 100vh;
}
.header-section {
  background: #f2f2f2;border-radius: 15px;
}

.vote-column {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
}

.vote-card {
  display: flex;
  align-items: center;
  gap: 15px;
  /* padding: 12px; */
  border-radius: 14px;
  border: 2px solid #eee;
  margin-bottom: 15px;
}

.vote-card.active.like {
  background: #dff4e7;
  border-color: #38b26c;
}

.vote-card.active.dislike {
  background: #ffd6d6;
  border-color: #ff4d4d;
}

.vote-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
}

.vote-info h6 {
  margin: 0;
  font-weight: 700;
}

.vote-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.vote-meta i {
  font-size: 22px;
}

.like .vote-meta i {
  color: #38b26c;
}

.dislike .vote-meta i {
  color: #ff4d4d;
}

.vote-meta .badge {
  background: #6f61c0;
  border-radius: 20px;
  padding: 6px 12px;
}

.total-votes {
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
}

.total-votes h3 {
  color: #6f61c0;
  font-weight: 800;
}

.divider {
  width: 2px;
  height: 100%;
  background: #fff;
  border-radius: 10px;
}

.vote-result-box {
  padding: 15px;
  text-align: center;
}

.vote-result-box p {
  margin: 0;
  font-weight: 600;
  color: green;
}

.vote-result-box h3 {
  margin: 5px 0 0;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}
.poll-box {
  padding: 15px;
  border-left: 5px solid green;
  background: linear-gradient(-90deg, #e7e7e7, #ffffff);
}
@media (max-width: 767px) {
  .vote-img {
    width: 65px;
    height: 65px;
  }
  .vote-info h6 {
    font-size: 13px;
  }
  .vote-meta i {
    font-size: 16px;
  }
  .vote-meta .badge {
    padding: 3px 8px 5px;
    font-size: 11px;
  }
  .poll-box h4 {
    font-size: 18px;
    margin-bottom: 10px !important;
  }
  .poll-box li {
    font-size: 12px;
  }
  .vote-column h5 {
    font-size: 16px;
    margin-bottom: 0;
  }
  .vote-column p {
    font-size: 14px;
  }
}
