.history-blocks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.history-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  font: inherit;
  cursor: pointer;
}

.history-block__name {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.history-block__toggle-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.history-block__body {
  display: none;
  padding: 16px 20px;
  margin-top: 8px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
}

.history-block--expanded .history-block__body {
  display: block;
}
