:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body,
#root {
  margin: 0;
  width: 100%;
  min-height: 100%;
}

body {
  font-family: 'Manrope', 'Inter', 'Segoe UI', sans-serif;
  background: #111317;
}

.app-shell {
  min-height: 100vh;
}

.mono-code {
  font-family: 'SFMono-Regular', ui-monospace, Menlo, Monaco, Consolas, monospace;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.code-wrap {
  background: #0b1020;
  border: 1px solid #24304f;
  border-radius: 12px;
  padding: 14px;
}

.clickable-code {
  font-family: 'SFMono-Regular', ui-monospace, Menlo, Monaco, Consolas, monospace;
  background: rgba(0, 0, 0, 0.2);
  padding: 2px 8px;
  border-radius: 8px;
}

.entity-path {
  font-family: 'SFMono-Regular', ui-monospace, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
}

.scroll-x {
  overflow-x: auto;
}

@media (max-width: 900px) {
  .desktop-only {
    display: none !important;
  }
}
