body.game_of_life.games {
  min-height: 100dvh;

  form {
    overflow-x: auto;

    nav {
      overflow: hidden;
      background-color: white;
      position: fixed;
      bottom: 0;
      width: 100%;
      display: flex;
      align-items: center;
      height: 45px;

      > * {
        flex: 1;
        text-align: center;
      }

      button {
        height: 100%;
      }
    
      h1 {
        flex: auto;
        font-size: 1.2em;
      }
    }

    table {
      td {
        padding: 0;

        input {
          /* width: 50%; */
          margin: 0;
          display: block;
          /* Avoid empty space between td and input */
        }
      }
    }
  }
}