body {
  font-family: Arial;
  text-align: center;
  background: #f5f5f5;
}

.container {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.box {
  background: white;
  padding: 20px;
  width: 40%;
  border-radius: 10px;
  box-shadow: 0 0 10px #ccc;
}

button {
  padding: 10px 15px;
  cursor: pointer;
}

#cameraBox {
  margin-top: 20px;
}

.hidden {
  display: none;
}

video {
  width: 300px;
  border: 2px solid black;
}

/* TABLE */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  border: 1px solid #ccc;
  padding: 10px;
}

th {
  background: #eee;
}
