
/* MVP presentation mode */

.mini-mode-toggle {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1000;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: #17212b;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.16);
  cursor: pointer;
  font-weight: 700;
}

body.mini-mode .hero,
body.mini-mode .settings-panel,
body.mini-mode .result-panel {
  display: none !important;
}

body.mini-mode .shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

body.mini-mode .workspace {
  width: min(760px, calc(100vw - 32px));
  display: block;
}

body.mini-mode .chat-panel {
  width: 100%;
  max-width: 760px;
}

body.mini-mode .messages {
  height: min(68vh, 640px);
}
