.test-result-history {
  padding: 12px 24px 32px;
  min-height: 320px;
}

.test-result-history-item-header {
  display: flex;
  width: 100%;
  gap: 4px;
  align-items: center;
  cursor: pointer;
}

.test-result-history-item-wrap {
  transition: background-color 300ms;
  display: flex;
  gap: 4px;
  justify-content: space-between;
  border-radius: 6px;
  padding: 4px 4px 4px 4px;
  width: 100%;
  align-items: flex-start;

  &:hover {
    background: var(--bg-control-flat-medium);
  }
}

.test-result-history-item-text {
  padding-top: 2px;
}

.test-result-history-item-info {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-left: auto;
}

.item-time {
  margin-left: auto;
  line-height: 20px;
  color: var(--on-text-secondary);
}

.test-result-history-item-link {
  :root {
    --allure-btn-icon-color: var(--bg-control-flat);
  }

  color: var(--on-icon-secondary);
}

.test-result-history-item-status {
  padding-top: 4px;
}

.test-result-empty {
  display: flex;
  padding: 48px 0;
  width: 100%;
  justify-content: center;
}
