@media screen and (max-width: 600px) {
  .time-selector {
    font-size: 0.75em;
  }

  .sidebar {
    pointer-events: none;
    opacity: 0;
    transform: translateX(-100%);

    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    height: 100vh;

    width: 100vw;
    max-width: 100vw;

    transition: 200ms ease-out;
  }

  .sidebar.visible {
    pointer-events: auto;
    opacity: 1;
    transform: translateX(0);
  }

  .home-header {
    font-size: 3em;
  }

  .home-text {
    font-size: 1.5em;
  }

  .menu {
    display: flex;

    background-color: #111;

    justify-content: center;
    align-items: center;
    padding: 1em;

    margin-bottom: 1em;

    border-radius: 5px;
  }

  .data-view .context {
    justify-content: start;
    flex-direction: column;
    gap: 0.5em;
  }

  .data-view .heading {
    flex-direction: column;
    align-items: start;
  }

  .data-view .heading .h-right {
    width: 100%;
    justify-content: space-between;
  }

  .data-view .heading .h-left {
    width: 100%;
    justify-content: start;
    flex-direction: column;

    margin-top: 1em;
  }

  .data-view .stats {
    flex-direction: column;
    align-items: end;
    margin-top: 1em;
  }

  .data-view .stats .stats-dp {
    display: none;
  }

  .data-view .graph {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
