/* Add your CSS styles here for the terminal interface */
/* Example: */
body {
  font-family: monospace;
  background-color: black;
  color: white;
  padding: 20px;
}
.txtbx {
  background: 0;
  border: 0;
  margin: 0;
  color: white;
  font-family: monospace;
  width: 60%;
}
.terminal {
  border: 1px solid white;
  padding: 10px;
  overflow: auto;
  margin-bottom: 10px;
}
.text-div {
  background: black;
  border: 1px solid white;
  border-radius: 5px;
  margin: 5px;
  padding: 5px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 95%;
}
#command:focus {
  outline: none;
  border: none; /* Optionally remove the border as well */
}
/* Style for the div containing JSON input */
#jsonInputDiv {
  display: none; /* Initially hide the div */
  margin-top: 20px;
}
button {
  border: 1px solid white;
  border-radius: 25px;
  background: 0;
  color: white;
  margin-bottom: 5px;
  margin-top: 0;
}

textarea {
  color: white;
  border: 1px solid white;
  border-radius: 10px;
  padding: 5px;
  width: 90%;
  background: black;
  font-family: monospace;
  overflow: auto;
}
#jsonInputDiv {
  border: 1px solid white;
  margin: 5px;
  padding: 5px;
  border-radius: 5px;
  width: 95%;
}
#jsonInputDiv button {
  color: white;
  background: black;
  border: 1px solid white;
  border-radius: 15px;
  padding: 5px;
}
/* Customize as needed */
