#root,
:root {
  --nightModeColor: rgb(40, 40, 40);
}
#divNightMode {
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-rows: 40% 40% 20%;
  grid-template-columns: 100%;
  background: black;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.night-row {
  display: flex;
  width: 100%;
  border-bottom: 3px dotted var(--nightModeColor);
  cursor: pointer;
  overflow: hidden;
}
.night-row-1 {
  align-items: center;
}
.night-row-2 {
  align-items: stretch;
}
.night-row-3 {
  align-items: stretch;
}
.night-cell {
  background: black;
  color: var(--nightModeColor);
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.night-row-2 .night-cell {
  width: 50%;
  border: 1px dotted var(--nightModeColor);
}

.night-cell-1 {
  font-size: 1.5rem;
  display: block;
  text-align: center;
  padding: 0.5rem;
  line-height: 1.3;
}

.night-cell-1 p {
  margin: 0.25em 0;
  font-size: 1.2rem;
}

.night-cell-1 #pNightModeTrackTime {
  font-size: 1rem;
}
