* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #1e1e1e;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
}

#terminal-wrapper {
  width: 100%;
  height: calc(100vh - 32px);
  padding: 8px;
  overflow: hidden;
}

#terminal-container {
  width: 100%;
  height: 100%;
  background-color: #1e1e1e;
}

#terminal-container .xterm {
  height: 100%;
}

#terminal-container .xterm-viewport {
  overflow-y: auto;
}

#terminal-container .xterm-screen {
  height: 100%;
}

#status-bar {
  height: 32px;
  background-color: #252526;
  border-top: 1px solid #3e3e42;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  font-size: 12px;
  color: #858585;
}

#session-status {
  color: #4ec9b0;
}

#connection-status {
  color: #608b4e;
}

#connection-status.error {
  color: #f14c4c;
}

#connection-status.connecting {
  color: #dcdcaa;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #1e1e1e;
}

::-webkit-scrollbar-thumb {
  background: #424242;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4f4f4f;
}
