html {
  scrollbar-width: none;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  display: flex;
  justify-content: center;
  scrollbar-width: none;
}

.container {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 900px;
  scrollbar-width: none;
}

a,
#r {
  text-decoration: none;
  border-radius: 5px;
  background-color: #000000;
  color: white;
  padding: 8px 12px;
  outline: none;
  font-size: 1em;
  border: none;
}

h1,
h2 {
  color: #2c3e50;
  border-bottom: 2px solid #ecf0f1;
  padding-bottom: 8px;
}

.code-editor,
.output-area {
  margin-bottom: 20px;
}

#commandInput {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 14px;
  resize: none;
  box-sizing: border-box;
  scrollbar-width: none;
  outline: none;
}

#runCommandsButton {
  background-color: #000000;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

#runCommandsButton:hover {
  background-color: #676767;
}

.codeExamplesButton {
  background-color: #586167;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  margin-right: 5px;
  transition: background-color 0.3s;
}

#outputLog {
  background-color: #454545;
  color: rgb(35, 214, 35);
  border: 1px solid #bdc3c7;
  padding: 15px;
  border-radius: 8px;
  white-space: pre-wrap;
  max-height: 200px;
  overflow-y: auto;
  font-size: 14px;
  scrollbar-width: none;
  font-size: larger;
  font-weight: bolder;
}

.hidden {
  display: none !important;
}

.chat-log {
  border: 1px solid #3498db;
  border-radius: 8px;
  height: 300px;
  overflow-y: auto;
  padding: 15px;
  margin-bottom: 10px;
  background-color: #f9fcfd;
}

.chat-input {
  display: flex;
}

#userInput {
  flex-grow: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px 0 0 6px;
  font-size: 16px;
  outline: none;
}

#sendMessageButton {
  background-color: #000000;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

#sendMessageButton:hover:not(:disabled) {
  background-color: #666666;
}

#userInput:disabled,
#sendMessageButton:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.message {
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 15px;
  max-width: 80%;
  word-wrap: break-word;
}

.user {
  background-color: #3498db;
  color: white;
  margin-left: auto;
  text-align: right;
  border-bottom-right-radius: 0;
}

.assistant {
  background-color: #ecf0f1;
  color: #333;
  margin-right: auto;
  border-bottom-left-radius: 0;
}

#blocklyDiv {
  border: 1px solid #bdc3c7;
  border-radius: 8px;
}
/* ... */
