#consoleContainer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #f0f0f0;
  border-top: 1px solid #ccc;
  padding: 10px;
  box-sizing: border-box;
  display: none;
  overflow: hidden;
}

#consoleContent {
  padding: 10px;
  height: calc(100% - 60px);
  overflow-y: scroll;
}

#consoleTextArea {
  width: 100%;
  height: 100%;
  resize: both;
  overflow: auto;
}

#toggleButton {
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 5px 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 1;
}
