.entry {
  flex: 1;
  background-color: #000000;
  border-radius: 6px;
}

.entry-meta {
  display: flex;
  flex-direction: column;
  background-color: #1e1d22;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 20px 15px;
}

.entry-title {
  font-weight: bold;
  font-size: 1rem;
  color: #f0f0f0;
}

.entry-link {
  display: flex;
  background-color: #312f38;
  border-radius: 5px;
  height: 40px;
  text-decoration: none;
  align-items: center;
  justify-content: space-between;
  padding-left: 15px;
  /* margin-top: 10px; */
  font-size: 0.8rem;
}

.entry-link .external-link-icon {
  margin-right: 10px;
  opacity: 0.3;
}

.entry-img {
  background-color: #19181B;
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 10px;
}

.entry-options {
  display: flex;
  background-color: #25232A;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 12px;
  justify-content: space-between;
}

.entry-options-left,
.entry-options-right {
  display: flex;
}

.entry-votes {
  display: flex;
  background-color: #1e1d22;
  border-radius: 5px;
  align-items: center;
}

.entry-vote-box {
  display: flex;
  background-color: #25232A;
  border: 3px solid #f0f0f07f;
  border-radius: 5px;
  width: 160px;
  height: 47px;
  align-items: center;
  justify-content: space-between;
}

.entry-vote {
  display: flex;
  background: none;
  border: none;
  width: 55px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.entry-vote-count {
  font-weight: bold;
}

.entry-vote svg {
  width: 20px;
  height: 14px;
}

.entry-vote svg path {
  fill: #f0f0f0;
}

.entry-vote-up {
  rotate: 180deg;
}

.entry-upvote-percent {
  margin: 0 20px;
  opacity: 0.6;
}

/* Upvoted */

.entry.upvoted > .entry-meta {
  background-color: #1d221d;
}

.entry.upvoted > .entry-meta .entry-link {
  background-color: #2f382f;
}

.entry.upvoted > .entry-options {
  background-color: #232923;
}

.entry.upvoted > .entry-options .entry-vote-box {
  background-color: #242627;
  border-color: #5ad958;
}

.entry.upvoted > .entry-options .entry-vote-up svg {
  width: 22px;
  height: 15px;
}

.entry.upvoted > .entry-options .entry-vote-up svg path {
  fill: #5ad958;
}

.entry.upvoted > .entry-options .entry-vote-count {
  color: #5ad958;
}

/* Downvoted */

.entry.downvoted > .entry-meta {
  background-color: #221d1d;
}

.entry.downvoted > .entry-meta .entry-link {
  background-color: #382f2f;
}

.entry.downvoted > .entry-options {
  background-color: #292323;
}

.entry.downvoted > .entry-options .entry-vote-box {
  background-color: #272424;
  border-color: #d95858;
}

.entry.downvoted > .entry-options .entry-vote-down svg {
  width: 22px;
  height: 15px;
}

.entry.downvoted > .entry-options .entry-vote-down svg path {
  fill: #d95858;
}

.entry.downvoted > .entry-options .entry-vote-count {
  color: #d95858;
}