html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

* {
  box-sizing: border-box;
}

.layout {
  height: 100%;
  display: flex;
  align-items: stretch;
  background-color: #f2f2f2;
  padding: 12px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #fcfcfc;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
}

.task-list {
  display: flex;
  flex-direction: column;
}

.task {
  padding: 8px;
  text-decoration: none;
  color: inherit;
}

.task:hover {
  background-color: #f0f0f0;
}

input,
textarea,
select {
  font-size: 16px; /* Prevents zoom on iOS */
}
