html, body {
  margin: 0;
  padding: 0;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 12px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fcfcfc;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

canvas {
  display: block;
  border: 1px solid #999;
  border-radius: 8px;
}


.form-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #fcfcfc;
  padding: 8px;
  display: flex;
  flex-flow: column;
  gap: 8px;
  border-radius: 8px 0 0 ;
  box-shadow: -2px -4px 4px rgba(0,0,0,.08);
  border-top: 1px solid #999;
  border-left: 1px solid #999;
}

.form-overlay::after {
  content: "";
  position: absolute;
  right: -8px;
  background-color: #fcfcfc;
  width: 8px;
  top: 0;
  bottom: -10px;
}

.form-overlay::before {
  content: "";
  position: absolute;
  bottom: -8px;
  background-color: #fcfcfc;
  height: 8px;
  left: 0px;
  right: -8px;
}

.label-name {
  display: inline-block;
  width: 128px;
}

input {
  width: 40px;
  padding: 4px 8px;
}

.container {
  position: relative;
  border-radius: 8px;
  box-shadow: 2px 4px 4px rgba(0,0,0,.08);
  max-width: 100%;
  max-height: 100%;
}