/* experimental/users/acmcarther/overlook/frontend/src/index.css */
:root {
  color-scheme: dark;
  --bg: #0b0e14;
  --panel: #151a24;
  --border: #2a3344;
  --text: #d6dbe5;
  --muted: #8a93a6;
  --accent: #5cc8ff;
}
* {
  box-sizing: border-box;
}
html,
body,
#root {
  height: 100%;
  margin: 0;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  overflow: hidden;
}
.overlook-scene {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      #243246 0%,
      #43586d 46%,
      #93a7bb 100%);
}
.overlook-debug {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10;
  padding: 0.5rem 0.7rem;
  background: rgba(21, 26, 36, 0.82);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family:
    ui-monospace,
    "SF Mono",
    Menlo,
    monospace;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text);
  pointer-events: none;
}
.overlook-debug pre {
  margin: 0;
  white-space: pre-wrap;
}
.overlook-debug .debug-row {
  display: flex;
  gap: 0.5rem;
}
.overlook-debug .debug-key {
  color: var(--muted);
}
.overlook-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  padding: 0.7rem 1.1rem;
  background: rgba(21, 26, 36, 0.9);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text);
  text-align: center;
  max-width: 80vw;
  pointer-events: none;
}
.overlook-overlay-error {
  border-color: #b4543a;
  color: #f0c6ba;
}
.overlook-switcher {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
}
.switcher-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  background: rgba(21, 26, 36, 0.82);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.switcher-title {
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  font-size: 0.9rem;
}
.overlook-switcher select,
.overlook-switcher input,
.overlook-switcher button {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.25rem 0.4rem;
  font: inherit;
  font-size: 0.8rem;
}
.overlook-switcher button {
  cursor: pointer;
}
.switcher-custom-toggle {
  width: 1.8rem;
  text-align: center;
}
.switcher-custom {
  display: flex;
  gap: 0.3rem;
  padding: 0.4rem 0.6rem;
  background: rgba(21, 26, 36, 0.82);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.switcher-custom input {
  width: 4.5rem;
}
.overlook-controls {
  position: fixed;
  bottom: 12px;
  right: 12px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.5rem 0.7rem;
  background: rgba(21, 26, 36, 0.82);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text);
}
.overlook-controls .control-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.overlook-attribution {
  position: fixed;
  bottom: 8px;
  left: 10px;
  z-index: 10;
  max-width: 60vw;
  font-size: 0.68rem;
  line-height: 1.3;
  color: var(--muted);
  background: rgba(11, 14, 20, 0.55);
  padding: 0.2rem 0.45rem;
  border-radius: 5px;
}
.overlook-attribution a {
  color: var(--accent);
  text-decoration: none;
}
.overlook-attribution a:hover {
  text-decoration: underline;
}
.overlook-pin-wrapper {
  pointer-events: none;
}
.overlook-pin-label {
  transform: translateY(-50%);
  white-space: nowrap;
  font-family:
    ui-monospace,
    "SF Mono",
    Menlo,
    monospace;
  font-size: 0.7rem;
  color: #f4e7c8;
  background: rgba(21, 26, 36, 0.78);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0.05rem 0.35rem;
  user-select: none;
}
/*# sourceMappingURL=bundle.css.map */
