/* Complete Page */
* {
  margin: 0px;
  box-sizing: border-box;
}
body {
  background-color: white;
  font-family: "Roboto", "Arial";
}
/* Main Page */
.main-wrap {
  display: flex;
  flex-direction: column;
}

/* Side Bar */
.menu {
  width: 100%;
  height: 15vh;
  background-color: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Circle */
.circle {
  background-color: grey;
  height: 70px;
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

/* Right Panel */

/* Tablet Area */
.webcam-container {
  height: 80vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

#main-canvas {
  position: absolute;
  z-index: -1;
  background-color: gray;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.status {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
