/*
Theme Name: ByteChips Shell
Theme URI: https://bytechips.com/
Author: ByteChips
Description: A minimal app shell theme for ByteChips local and headless-style WordPress operation.
Version: 0.1.0
Requires at least: 6.5
Text Domain: bytechips-shell
*/

:root {
  color-scheme: light;
  --bc-shell-bg: #f9fafb;
  --bc-shell-text: #0f172a;
  --bc-shell-muted: #64748b;
}

:root[data-bc-theme="dark"] {
  color-scheme: dark;
  --bc-shell-bg: #0b1020;
  --bc-shell-text: #f8fafc;
  --bc-shell-muted: #9ca3af;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--bc-shell-bg);
  color: var(--bc-shell-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.admin-bar .bytechips-shell {
  min-height: calc(100vh - 32px);
}

.bytechips-shell {
  min-height: 100vh;
  background: var(--bc-shell-bg);
}

.bytechips-shell__main {
  min-height: inherit;
  background: var(--bc-shell-bg);
}

.bytechips-shell__content {
  min-height: inherit;
  background: var(--bc-shell-bg);
}

.bytechips-shell__content > * {
  max-width: none;
}

.bytechips-shell__fallback {
  width: min(960px, calc(100% - 40px));
  margin: 48px auto;
  color: var(--bc-shell-muted);
}

a {
  color: inherit;
}

@media (max-width: 782px) {
  body.admin-bar .bytechips-shell {
    min-height: calc(100vh - 46px);
  }
}
