h1,
h2,
h3,
h4 {
  margin: 0;
  color: white;
}
#hello {
  padding: 1em;
}
#hello > b {
  color: red;
}
body {
  margin: 0;
  background-color: black;
  height: 100vh;
}

#paddings {
  color: white;
  padding: 0 1em;
  display: flex;
  flex-direction: column;
  width: fit-content;
  border-right: 1px solid white;
}

#paddings > div {
  display: flex;
  flex-direction: row;
  padding: 3px 0;
}
#paddings > div > input {
  width: 3em;
  -moz-appearance: textfield;
}
#paddings > h4 {
  text-align: center;
  border: 2px dashed rgb(81, 255, 0);
  padding: 3px;
}

#paddings > div > input::-webkit-outer-spin-button,
#paddings > div > input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


#paddings-wh {
  color: white;
  padding: 0 1em;
  display: flex;
  flex-direction: column;
  width: fit-content;
  border-right: 1px solid white;
}
#paddings-wh > h4 {
  border: 2px dashed rgb(255, 0, 255);
  padding: 3px;
  text-align: center;
}

#paddings-visualizer {
  padding: 0 1em;
  border-right: 1px solid white;
  display: flex;
  flex-direction: column;
}

#paddings-wh > h4 {
  text-align: center;
}

#pd-visual {
  margin: auto;
}

#pd-visual-real_sprite {
  background-color: rgb(228, 228, 228);
  width: 1em;
  height: 1em;
}

#pd-visual-frame {
  border: 2px dashed rgb(255, 0, 255);
  padding: 1px;
  width: fit-content;
}

#pd-visual-per_sprite {
  border: 2px dashed rgb(81, 255, 0);
  padding: 2px;
  width: fit-content;
}

#multiplier {
  color: white;
  padding: 0 1em;
  display: flex;
  flex-direction: column;
  width: fit-content;
  border-right: 1px solid white;
}
#multiplier > h4 {
  text-align: center;
}
#container {
  width: -webkit-fill-available;
  padding: 1em;
  display: flex;
  justify-content: space-between;
  max-height: -webkit-fill-available;
}
#panel {
  display: flex;
}
#controls {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  border-right: 1px solid white;
  padding: 0 1em;
}
#info {
  padding: 1em;
  color: white;
  gap: 1em;
  display: flex;
}

#info > br {
  display: inline-block;
  overflow: hidden !important;
  padding-right: 0.5em;
}

#info > #selected-file {
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 50vw;
}

#top {
  width: 100%;
  position: fixed;
  background-color: black;
}
#selected-container {
  padding: 0 1em;
}
#selected-view {
  max-height: 80px;
  height: 100%;
}

#list {
  color: white;
  width: 40vw;
  min-width: max-content;
  height: auto;
  display: block;
  overflow-y: scroll;
}
#list > tr {
  display: flex;
  width: inherit;
  justify-content: space-between;
  gap: 0.5em;
}
#list > tr > td {
  padding: 0.2em;
  display: block;
}
#list > tr > td:first-child {
  display: inline-block;
  overflow: hidden !important;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: -webkit-fill-available;
}
#list > tr > td:last-child {
  background-color: darkred;
}

#canvas-block {
  max-width: 50%;
}
#canvas {
  max-width: -webkit-fill-available;
  max-height: -webkit-fill-available;
  position: relative;
  border: 1px blue solid;
}