h1, h3 {
  display: inline;
}

li li {
  list-style-type: square;
}

#recipes-table #recipe-title {
  padding: 20px;
}

#recipes-table {
  display: table; /* Make the container element behave like a table */
  width: 100%; /* Set full-width to expand the whole page */
}

#recipes-table .column {
  display: table-cell;
  padding: 20px;
  border: 1px solid black;
}

#recipes-table .column :is(ul, ol) {
  margin-left: 0;
  padding-left: 1em;
}

#recipes-table .column li:not(:last-child) {
  margin: 0 0 15px 0;
}

#recipes-table .left {
  width: 25%;
}

#recipes-table .right {
  width: 75%;
}

#recipes-list {
  width: 100%;
  padding: 10px;
}

#recipes-list .sub-recipe {
  margin-left: 50px;
}

@media screen and (max-width: 600px) {
  #recipes-table .column {
    display: block;
    width: 100%;
  }

  #recipes-table .left {
    width: 100%;
  }

  #recipes-table .right {
    width: 100%;
  }
}
