body {
  background: #111;
  color: #eee;
  font-family: "Fira Mono", "Consolas", monospace;
  margin: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.main-layout {
  display: flex;
  height: 100vh;
  width: 100vw;
}

.terminal-container {
  flex: 2;
  display: flex;
  flex-direction: column;
  background: #181818;
  border-radius: 0 0 0 0;
  box-shadow: 0 4px 24px #000a;
  padding: 32px 32px 16px 32px;
  height: 100vh;
  min-width: 0;
}

.terminal-output {
  flex: 1;
  background: #111;
  border-radius: 8px;
  padding: 18px 18px 8px 18px;
  margin-bottom: 18px;
  font-size: 1.1em;
  white-space: pre-wrap;
  overflow-y: auto;
  max-height: 80vh;
  min-height: 400px;
  box-shadow: 0 2px 8px #0006;
}

.terminal-input {
  background: transparent;
  border: none;
  color: #eee;
  font-size: 1.1em;
  width: 80%;
  outline: none;
}

.prompt {
  color: #00ff90;
  font-weight: bold;
  margin-right: 8px;
}

form {
  display: flex;
  align-items: center;
}

.side-panel {
  flex: 1;
  background: #181818;
  border-left: 2px solid #222;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 24px;
  min-width: 320px;
  max-width: 400px;
  height: 100vh;
  box-sizing: border-box;
}

.instructions,
.progress-panel {
  width: 100%;
  background: #111;
  border-radius: 8px;
  margin-bottom: 32px;
  padding: 18px 18px 12px 18px;
  box-shadow: 0 2px 8px #0006;
}
.instructions h3,
.progress-panel h3 {
  margin-top: 0;
  color: #00ff90;
  font-size: 1.2em;
}
.instructions ul {
  padding-left: 18px;
  margin: 0;
}
.instructions li {
  margin-bottom: 8px;
  color: #eee;
}
.progress-panel {
  margin-bottom: 0;
}
#progress-info {
  font-size: 1.1em;
  color: #fff;
  margin-top: 8px;
}

nav{
  padding: 10px;
}
a{
  color:white;
}
