* {
  font-family: system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.3;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container {
  --gap: 8px;

  display: flex;
  flex-direction: column;
  max-width: 400px;
  min-height: 100dvh;
  min-width: 320px;
  padding: 16px;
}

.display {
  display: flex;
  font-size: 70px;
  font-variant-numeric: tabular-nums;
  justify-content: center;
  line-height: 70px;
  margin-bottom: 20px;
}

.controls {
  display: flex;
  justify-content: space-between;
  gap: var(--gap);
}

.button {
  font-size: 24px;
  height: 50px;
  padding: 8px;
  width: 100%;
}

.list {
  list-style-type: none;
  margin-top: 20px;
}

.item {
  align-items: center;
  background-color: transparent;
  border: none;
  display: flex;
  gap: var(--gap);
  width: 100%;
}

.active {
  color: #007aff;
}

.text {
  font-size: 20px;
}

.text.name {
  margin-right: auto;
}

.text.time {
  font-variant-numeric: tabular-nums;
}

.version {
  color: lightgray;
  margin-top: auto;
  align-self: flex-end;
}
