* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

#terminal-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 4px;
}

#status {
  position: fixed;
  top: 4px;
  right: 4px;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  background: #f0f0f0;
  color: #666;
  font-family: system-ui, sans-serif;
  z-index: 1000;
  display: none;
}

#status.connected { background: #d4edda; color: #155724; }
#status.error { background: #f8d7da; color: #721c24; }