body {
  overscroll-behavior: none;
  height: 100vh;
}

div#lines {
  padding-top: 120px;
  padding-bottom: 15px;
  width: 100%;
  height: 100%;
  display: grid;
  grid-auto-rows: 1fr;
  gap: 15px;
}

div.line {
  width: 100%;
  overflow-x: scroll;
  scrollbar-width: none;
  display: flex;
  gap: 15px;
}

div.cell {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: pre;
  border-radius: 100px;
}

div.date {
  padding: 0 10px;
  border: solid 1px black;
  position: absolute;
  background: white;
  font-size: 13px;
  left: 0;
  align-content: center;
  margin-top: -11px;
  margin-left: 10px;
  height: 22px;
}
