#debug {
  position: fixed;
  top: 0;
  right: 10px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#debug-panel-button {
  width: 200px;
  height: 32px;
  line-height: 32px;
  background: #ffeeeb;
  text-align: center;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, .1);
  box-shadow: 1px 1px #777;
  margin-bottom: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#debug-panel {
  display: none;
  background-color: #f0f6ff;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, .1);
  box-shadow: 1px 1px #777;
  padding: 16px;
}
#status h3, form h3 {
  margin-top: 0;
  margin-bottom: 2px;
}
.status-name::after {
  content: ':';
  margin: 0 5px;
}
.status-value.false {
  color: #b02917;
}
.status-value.true {
  color: #367a05;
}
#debug-panel .buttons-wrapper {
  display: flex;
  flex-direction: column;
}
form {
  margin: 20px 0;
}
