body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #ccc;
  font-family: "Courier New", monospace;
  height: 100svh;
  width: 100svw;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  padding: 20px;
}

#terminal {
  width: 100%;
  height: 100%;
}

.xterm-viewport {
  background-color: #000 !important;
}

.xterm-screen {
  margin-bottom: 100px;
}

/* Terminal colors */
:root {
  --color-terminal-green: #0f0;
  --color-terminal-blue: #00f;
  --color-terminal-white: #fff;
  --color-terminal-gray: #ccc;
  --color-terminal-red: #f00;
  --color-terminal-yellow: #ff0;
}

/* Command prompt styling */
.prompt {
  color: var(--color-terminal-green);
}

.directory {
  color: var(--color-terminal-blue);
}

.file {
  color: var(--color-terminal-white);
}

.error {
  color: var(--color-terminal-red);
}

.success {
  color: var(--color-terminal-green);
}

.warning {
  color: var(--color-terminal-yellow);
}

.hidden {
  display: none !important;
}
