h1 {
  margin-top: 0px;
  margin-bottom: 5px;
}

li {
  position: relative;
}

div#input {
  width: 100%;
  display: flex;
}

div#input > input {
  flex-grow: 1;
  min-width: 10px;
}

input.big {
  font-size: 20px;
  flex-grow: 1;
  min-width: 1px;
}

.delete {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 30px;
  height: 30px;
  border-radius: 20px;
}
.logout {
  position: absolute;
  top: 8px;
  right: 8px;
  display:flex;
  align-items: center;
}
.add-to-group {
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
.add-to-group input {
  width: 100px;
}
.fill {
  flex-grow: 1;
}
.add-to-group {
  display: flex;
}
table,
th,
td {
  border: 1px solid;
}
#info {
  position: fixed;
  bottom: 0px;
  left: 0px;
  box-sizing: border-box;
  width: 100%;
  background-color: #ccc;
  z-index: 12;
  padding: 20px;
  border-radius: 20px 20px 0px 0px;
  margin-bottom: 0px;
}
#info p {
  margin: 0px;
}
.modal {
  background-color: #fff;
  padding: 5px;
  border: 1px black solid;
  width: fit-content;
  height: fit-content;
  max-width: 100%;
  max-height: 100%;
  position:relative;
}
li.selected {
  background-color: rgb(209 233 255)!important;
}
a.selected, input.selected, button.selected, div.selected {
  outline: 5px auto rgb(94, 158, 214);
}
.invisible-input {
  width: 0;
  overflow: hidden;
  opacity:0;
  filter:alpha(opacity=0);
  flex-grow:0;
  padding:0px;
  margin:0px;
  border:0px;
}
.rounded-block {
  border: 1px solid black;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 3px;
  margin-top: 15px;
  position:relative;
}
.rounded-block>* {
  margin-top:5px;
  margin-bottom:5px;
  display:inline-block;
}
.rounded-block>*:nth-child(2) {
  margin-top:16px;
}
.rounded-block>*:last-child {
  margin-bottom:0px;
}
.without-title {
  margin-top: 3px !important;
}
.without-title>*:nth-child(2) {
  margin-top:5px !important;
}
.rounded-block>.rounded-block {
  margin-top:24px;
  display:block;
}
.rounded-title {
  position: absolute;
  top: calc(-0.5em - 5px);
  background-color: #fff;
  text-align: center;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px black solid;
}
.rounded-button {
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 3px;
  position:relative;
}
.spacing {
  padding: 20px;
  margin-top: 1em;
}
.success {
  display: inline-block;
  border: 3px rgb(15, 209, 15) solid;
  background-color: rgb(156, 255, 156);
}
.error {
  display: inline-block;
  border: 3px red solid;
  background-color: #ffcccc;
}
.error p {
  margin: 0px;
}
.controls {
  position: absolute;
  top: 8px;
  right: 8px;
}
.giant-button {
  width: calc(100vw - 16px);
  max-width: 250px;
  height: calc(100vw - 16px);
  max-height: 250px;
  font-size: 20px;
}
.giant-button-half {
  width: calc(100vw - 16px);
  max-width: 250px;
  height: calc(50vw - 16px);
  max-height: 250px;
  font-size: 20px;
}
.fade-out {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 2s, opacity 2s linear;
}
.hide-while-loading {
  opacity: 0;
}
.flex {
  display: flex;
}
.column {
  flex-direction: column;
}
.wrap {
  flex-wrap: wrap;
}