
#app-container {
  width: 100vw;
  height:100vh;
  overflow:hidden;
}
#container-qrscanner {
  width: 100vw;
  height:100vh;
  position: fixed;
  top: 0px;
  left:0px;
  background-color: blue;
}

#fixed-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background-color: black;
}

#navbar {
  grid-area: nav;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 30px 50px 50px;
  grid-gap: 2px;
}

.navitem {
  grid-column: span 1;
  grid-row: span 1;
  padding: 0px;
  margin: 0px;
}

#container-box-viewer {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: 135px 2vh auto;
  grid-template-areas: "nav" "space" "lightbox";
  width: 100vw;
  min-height: 100vh;
  overflow: visible;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: black;
}

#image-options {
  display: none;
  position: absolute;
  width: 55px;
  height: 100%;
  right: 0px;
  background-color: rgba(0, 0, 0, 0.7);;
}

.btn-image-option {
  width: 50px;
  height: 50px;
  background-color:#ff2300; /* Green */
  border: none;
  color: white;
  padding-top: 6px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  float: left;
  border-radius: 5px;
}

#box-content-gallery {
  grid-area: lightbox;
}



input[type="file"] {
    display: none;
}


.imgContainer {
  display: block;
  overflow: hidden;
  width: 100vw;
  height: fit-content;
  margin: 0px;
  padding: 0px;
  padding-bottom: 3px;
}

.box-image {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
}



.btn {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 5px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  float: left;
  width: 45vw;
  height: 30px;
}

.navbtn {
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.2);;
  border: none;
  color: white;
  font-family: system-ui;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  float: left;
  margin: 8px;
  border-radius: 3px;
  line-height: 33px;
}

#scannID {
  font-family: system-ui;
  text-align: center;
  text-decoration: none;
  color: white;
  justify-self: center;
  grid-column: span 2;
  line-height: 33px;
}

html, body {
  margin: 0px;
  padding: 0px;

}
