/* Portfolio base styling */
body, html {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

/* Terminal button */
#terminalButton {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 1000;
  padding: 8px 12px;
  font-size: 16px;
  cursor: pointer;
}

/* Terminal container */
#terminalContainer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px; /* adjust as needed */
  background-color: #000; /* terminal background */
  display: flex;
  flex-direction: column;
  z-index: 999;
}

/* Terminal itself */
#terminal {
  flex: 1;
  padding: 10px;
}

/* Close button inside terminal */
#closeTerminal {
  align-self: flex-end;
  margin: 4px 10px;
  padding: 4px 8px;
  font-size: 14px;
  cursor: pointer;
}