#historyList {
  min-height: 200px;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid var(--color-border);
  font-size: 0.9em;
  border-radius: var(--generic-box-radius);
}
.history-item {
  cursor: pointer;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.7rem;
  padding: 0.5rem 0.75rem;
}
.history-item:nth-of-type(even) {
  background: #0273aa12;
}
.history-item:hover {
  background: #f5f5f5;
}
#sessionList,
#historyList {
  overflow-y: auto;
  overscroll-behavior: contain;
}
