#archive-vote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10vh;
}
.vote-div {
  width: 60%;
  min-height: 200px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */
  grid-template-columns: 1fr 4fr 4fr 2fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-items: center;
}
.vote-div .vote-title,
.vote-div .vote-info,
.vote-div .vote-btns {
  padding: 0 20px;
}
.vote-div h2,
.vote-div h3 {
  text-align: center;
  margin: 0;
}
.vote-div .vote-banner {
  height: 100%;
  width: 100%;
  background-color: powderblue;
}
.vote-div .vote-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.vote-stats {
}
count-bar {
  width: 20px;
  height: 20px;
  background-color: lightgray;
  border-radius: 10px;
  overflow: hidden;
}
.count-bar-1 {
  background-color: #3498db;
}
.count-bar-2 {
  background-color: #e74c3c;
}
