#history-box {
  margin-top: 50px;
  padding: 5px;
  padding-right: 20px;
}

@media screen and (max-width: 60rem) {
  #history-box {
    display: none;
  }
}

.recently-viewed {
  color: var(--color-gray-500);
  font-size: var(--text-sm);
}

.history-link {
  border-bottom: 1px solid var(--color-gray-400);
  padding-top: 9px;
  padding-bottom: 9px;
}

.history-link-a {
  display: grid;
  grid-template-columns: 20px 1fr;
}

.history-title {
  display: inline-block;
  color: var(--color-gray-600);
}

.history-title:hover {
  color: var(--color-gray-700);
}

#history-box > div:nth-child(2) .history-title {
  color: var(--color-gray-800);
}

.history-category {
  margin-right: 10px;
  display: inline-block;
  width: 10px;
  margin-top: 6px;
  height: 10px;
  border-radius: 50%;
}

.history-category.translation {
  background-color: var(--color-translation-200);
}

.history-category.source {
  background-color: var(--color-source);
}

.history-category.proposal {
  background-color: var(--color-proposal);
}

.history-category.celebration {
  background-color: var(--color-celebration-300);
}
