body {
  background:#000;
  color:#ff0000;
  font-family:'Press Start 2P', cursive;
  margin:0;
  padding:0;
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:100vh;
  flex-direction:column;
}

.cli-container {
  width:90%;
  max-width:800px;
}

#output {
  white-space: pre-wrap;
  color:#ff6666;
  margin-bottom:10px;
  min-height:150px;
  border:2px solid #ff0000;
  padding:15px;
  border-radius:5px;
  box-shadow:0 0 20px #ff0000;
  background:#111;
}

#commandInput {
  width:100%;
  padding:12px;
  font-family:'Press Start 2P', cursive;
  font-size:14px;
  background:#111;
  color:#ff0000;
  border:2px solid #ff0000;
  outline:none;
  border-radius:5px;
  box-shadow:0 0 15px #ff0000;
}

#imageBox {
  position: relative;
  margin-top:15px;
  display:none; /* skryté dokud není příkaz */
}

#imageWrapper {
  display:flex;
  align-items:flex-start;
  background:#111;
  border:2px solid #ff0000;
  padding:10px;
  border-radius:8px;
  box-shadow:0 0 20px #ff0000;
}

#labImg {
  width:200px;
  height:auto;
  margin-right:15px;
  border-radius:5px;
}

#labText {
  color:#ff6666;
  max-width:400px;
  font-size:12px;
  line-height:1.4;
}

#closeBtn {
  position:absolute;
  top:-10px;
  right:-10px;
  cursor:pointer;
  font-size:18px;
  color:#ff0000;
}
