#app {
  border: 1px solid black;
  font-family: sans-serif;
  height: auto;
  margin: 0px auto;
  max-width: 25rem;
  min-width: 18rem;
  padding: 0.5rem;
  width: fit-content;
}

body {
  font-family: sans-serif;
  font-size: 1em;
}

button {
  cursor: pointer;
}

button.delete {
  color: red;
}

div.list {
  border: 1px solid black;
  padding: 0.5rem;
}

div.app-footer {
  padding-top: 0.5rem;
  text-align: right;
}

div.app-header {
  padding-bottom: 0.5rem;
}

div.modal {
  background-color: rgba(0,0,0,0.4);
  display: none;
  overflow: auto;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

div.modal-content {
  background-color: #fefefe;
  border: 1px solid black;
  margin: 0.5rem auto;
  max-width: 25rem;
  min-width: 15rem;
  padding: 0.5rem;
  width: fit-content;
}

div.modal-content-body {
  border: none;
}

div.modal-content-footer {
  border: none;
  margin-top: 0.5rem;
  text-align: right;
}

input.item-name {
  size: 4;
}

table {
  border-collapse: collapse;
  width: 100%;
}

table.header-table {
  border-bottom: 1px solid black;
}

td.item-label {
  vertical-align: top;
}

td.item-name {
  cursor: pointer;
  white-space: nowrap;
}

td.item-prop {
  padding-right: 5px;
  text-align: right;
  width: 4rem;
}

td.item-subrow-cell {
  padding-left: 1rem;
}

textarea {
  resize: none;
}


