:root {
  --bg: #fff;
  --text: #000;
  --text-shadow: none;
  --text-tertiary: #ccc;
  --error-color: #d00;
}

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

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Google Sans Code", "Noto Emoji", monospace;
  background: var(--bg);
  color: var(--text);
}

.status {
  position: fixed;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.3;
}

.status.connected {
  color: var(--text);
}

.status.disconnected {
  color: var(--error-color);
  opacity: 1;
}

textarea {
  width: 100%;
  height: 100%;
  padding: 1rem;
  font-size: 16px;
  font-family: "Google Sans Code", monospace;
  background: var(--bg);
  border: none;
  color: var(--text);
  resize: none;
  outline: none;
  line-height: 1.5;
}

textarea::placeholder {
  color: var(--text-tertiary);
}
