:root {
  color-scheme: light dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body,
#app,
#chatgpt-frame {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background: #ffffff;
}

#chatgpt-frame {
  display: none;
  border: 0;
  background: #ffffff;
}

#loading,
#error {
  position: fixed;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 24px;
  color: #202123;
  background: #ffffff;
  text-align: center;
}

#loading[hidden],
#error[hidden] {
  display: none;
}

#error-detail {
  max-width: 640px;
  color: #6b6b6b;
  font-size: 14px;
}
