/* Точь-в-точь из ntp-storage/admin/templates/layout.php */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { min-height: 100%; }
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  background: var(--bg);
  color: var(--text);
  transition: background .2s, color .2s;
}

.app-root { flex: 1; min-height: 0; overflow-y: auto; }
a { color: var(--accent); text-decoration: none; }

code { font-family: 'SF Mono', Consolas, monospace; font-size: 13px; background: var(--surface2); padding: 0; border-radius: 3px; }
pre { white-space: pre-wrap; word-break: break-all; font-size: 12px; }
.muted { color: var(--text-dim); }
