body {
  background-color: #000; /* Black background like an old terminal */
  color: #00ff00; /* Greenish terminal text */
  font-family: "Press Start 2P", monospace; /* Retro pixel art font */
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  text-align: center;
}

#container {
  position: relative;
  width: 90%;
  height: 90%;
}

/* Message styling (center top) */
#message {
  font-size: 1.2rem;
  margin-bottom: 10px;
  opacity: 0;
  transition: opacity 2s ease-in;
}

/* Camera output styling (top left) */
#camera-output {
  position: absolute;
  top: 10px;
  left: 10px;
  display: none;
}

#camera-output video {
  width: 200px;
  height: 150px;
  border: 1px solid #00ff00;
  background-color: #000;
}

/* Clipboard styling (top right) */
#clipboard-output {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
  text-align: left;
}

#clipboard-output h3 {
  margin: 0;
  padding-bottom: 5px;
  font-size: 0.9rem;
  color: #00ff00;
}

#clipboard-content {
  width: 200px;
  height: 100px;
  border: 1px solid #00ff00;
  background-color: #000;
  color: #00ff00;
  font-family: inherit;
  font-size: 0.9rem;
  padding: 5px;
  box-sizing: border-box;
}

/* Permissions output/log (bottom full width) */
#permissions-output {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  color: #00ff00;
  font-size: 0.9rem;
  padding: 10px;
  border-top: 1px solid #00ff00;
  height: 100px;
  overflow-y: scroll;
  text-align: left;
}

/* Styling the Start Button */
#startButton {
  font-family: "Press Start 2P", monospace;
  font-size: 1rem;
  padding: 10px 20px;
  color: #00ff00;
  background-color: #000;
  border: 2px solid #00ff00;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0px 0px 10px 0px #00ff00;
}

#startButton:hover {
  background-color: #00ff00;
  color: #000;
  box-shadow: 0px 0px 20px 5px #00ff00;
}

#startButton:active {
  background-color: #00ff00;
  color: #000;
  box-shadow: inset 0px 0px 20px 5px #00ff00;
}
