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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #1a1b26;
}

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

#terminal-container .xterm {
  padding: 8px;
}

#reconnect-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#reconnect-overlay.hidden {
  display: none;
}

.overlay-content {
  text-align: center;
  color: #a9b1d6;
  font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #414868;
  border-top-color: #7aa2f7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
