/**
 * Guardian Studio v3 — Layout redesign
 * Tokens: negro editorial #0d0d0d · lima #c8f135 · Playfair Display + Inter
 * Layout: 3 columnas fijas · chat-first · compose anclado al fondo
 * Compatible con el JS existente (todos los IDs/clases preservados)
 */

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  --hme-bg:            #0d0d0d;
  --hme-bg-rail:       #0a0a0a;
  --hme-bg-panel:      #0b0b0b;
  --hme-surface:       rgba(255, 255, 255, 0.035);
  --hme-surface-strong:rgba(255, 255, 255, 0.06);
  --hme-line:          rgba(255, 255, 255, 0.12);
  --hme-line-soft:     rgba(255, 255, 255, 0.07);
  --hme-text:          #ffffff;
  --hme-muted:         rgba(255, 255, 255, 0.62);
  --hme-muted-deep:    rgba(255, 255, 255, 0.38);
  --hme-lime:          #c8f135;
  --hme-lime-soft:     rgba(200, 241, 53, 0.10);
  --hme-lime-border:   rgba(200, 241, 53, 0.30);
  --hme-red:           rgba(255, 80, 80, 0.82);
  --hme-red-border:    rgba(255, 80, 80, 0.35);
  --hme-serif:         "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --hme-sans:          "Inter", system-ui, -apple-system, sans-serif;
  --hme-mono:          ui-monospace, "SF Mono", Menlo, monospace;
  --hme-radius:        4px;
  --hme-radius-card:   6px;
  --topbar-h:          72px;   /* mismo que --nav-header-height del sitio principal */
}

/* ── BASE ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  height: 100%;
  overflow: hidden;
  margin: 0;
}

.gs-body {
  height: 100dvh;
  background: var(--hme-bg);
  color: var(--hme-text);
  font-family: var(--hme-sans);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

.gs-body--app {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.gs-app-shell {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

/* ── TOPBAR ─────────────────────────────────────────────────── */
.gs-topbar {
  flex-shrink: 0;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 28px;              /* mismo padding que .nav-inner del sitio */
  border-bottom: 1px solid var(--hme-line-soft);
  background: var(--hme-bg);
  z-index: 10;
}

.gs-topbar-left,
.gs-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Logo — homologado al .nav-lockup del sitio */
.gs-topbar-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  opacity: 1;
  transition: opacity 0.18s;
}

.gs-topbar-logo-link:hover {
  opacity: 0.8;
}

.gs-topbar-logo {
  height: 46px;   /* mismo que .nav-logo-img del sitio */
  width: auto;
  display: block;
}

/* Separador vertical entre logo y contexto */
.gs-topbar-divider {
  display: block;
  width: 1px;
  height: 20px;
  background: var(--hme-line-soft);
  flex-shrink: 0;
}

/* Texto de contexto "Guardian Studio" junto al logo */
.gs-topbar-context {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hme-muted-deep);
  white-space: nowrap;
}

.gs-topbar-center {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.gs-topbar-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hme-muted-deep);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

/* wordmark: preservado para login.html */
.gs-wordmark {
  font-family: var(--hme-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hme-text);
  flex-shrink: 0;
}

.gs-wordmark--bar {
  font-size: 11px;
  letter-spacing: 0.26em;
  line-height: 1;
}

/* Badge de home con ícono */
.gs-badge-home {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.gs-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--hme-radius);
  border: 1px solid var(--hme-line-soft);
  color: var(--hme-muted);
  background: transparent;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}

.gs-badge-link:hover {
  border-color: var(--hme-lime-border);
  color: var(--hme-lime);
}

.gs-badge-preview {
  border-color: rgba(200, 241, 53, 0.3);
  color: var(--hme-lime);
}

.gs-badge-guardian {
  border-color: var(--hme-line-soft);
  color: var(--hme-text);
}

/* API Error */
.gs-api-banner {
  flex-shrink: 0;
  background: rgba(255, 80, 80, 0.10);
  border-bottom: 1px solid var(--hme-red-border);
  color: rgba(255, 220, 220, 0.95);
  font-size: 13px;
  line-height: 1.45;
}

.gs-api-banner--shell {
  margin: 0;
  padding: 10px 20px;
}

/* ── SHELL ──────────────────────────────────────────────────── */
.gs-shell {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

/* ── RAIL ───────────────────────────────────────────────────── */
.gs-side {
  flex: 0 0 228px;
  width: 228px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  background: var(--hme-bg-rail);
  border-right: 1px solid var(--hme-line-soft);
  padding: 16px 12px 12px;
}

.gs-side-head {
  flex-shrink: 0;
  margin-bottom: 14px;
}

.gs-side-label {
  flex-shrink: 0;
  margin: 0 0 8px 2px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hme-muted-deep);
}

.gs-session-empty {
  flex-shrink: 0;
  margin: 0 0 12px 2px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--hme-muted-deep);
}

.gs-session-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.08) transparent;
}

.gs-session-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 10px;
  margin-bottom: 3px;
  border-radius: var(--hme-radius);
  border: 1px solid transparent;
  background: transparent;
  color: var(--hme-muted);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}

.gs-session-item:hover {
  background: var(--hme-surface-strong);
  border-color: var(--hme-line-soft);
  color: var(--hme-text);
}

.gs-session-item.is-active {
  border-color: var(--hme-lime-border);
  background: var(--hme-lime-soft);
  color: var(--hme-text);
}

.gs-session-meta {
  display: block;
  font-family: var(--hme-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--hme-muted-deep);
  margin-top: 4px;
}

.gs-side-nav {
  flex-shrink: 0;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--hme-line-soft);
}

.gs-side-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  color: var(--hme-muted-deep);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--hme-radius);
  border: 1px solid transparent;
  transition: color 0.12s, border-color 0.12s, background 0.12s;
}

.gs-side-link:hover {
  color: var(--hme-lime);
  border-color: var(--hme-lime-border);
  background: rgba(200, 241, 53, 0.05);
}

/* ── MAIN: Chat ─────────────────────────────────────────────── */
.gs-main {
  flex: 1 1 0%;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--hme-bg);
}

/* Empty state */
.gs-empty {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
}

.gs-empty-inner {
  max-width: 400px;
  text-align: center;
}

.gs-empty-eyebrow {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hme-lime);
}

.gs-empty-title {
  font-family: var(--hme-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--hme-text);
}

.gs-empty-copy {
  margin: 0 0 28px;
  font-size: 14px;
  color: var(--hme-muted);
  line-height: 1.65;
}

.gs-empty-cta {
  font-size: 13px;
}

/* Workspace */
.gs-workspace {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Meta bar */
.gs-meta-bar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--hme-line-soft);
  background: rgba(255,255,255,0.02);
}

.gs-title-input {
  flex: 1.4;
  min-width: 0;
}

.gs-tags-input {
  flex: 1;
  min-width: 0;
}

.gs-btn-save-inline {
  flex-shrink: 0;
  font-size: 12px;
  padding: 8px 14px;
}

/* Messages */
.gs-messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.07) transparent;
}

.gs-msg {
  padding: 16px 0 16px 16px;
  border-bottom: 1px solid var(--hme-line-soft);
}

.gs-msg:last-child {
  border-bottom: none;
}

.gs-msg--user,
.gs-msg-user {
  border-left: 2px solid var(--hme-lime);
  padding-left: 16px;
  margin-left: 40px;
}

.gs-msg--assistant,
.gs-msg-assistant {
  border-left: 2px solid rgba(255, 255, 255, 0.18);
  padding-left: 16px;
  margin-right: 40px;
}

.gs-msg-role {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--hme-muted-deep);
  margin-bottom: 8px;
}

.gs-msg--user .gs-msg-role,
.gs-msg-user .gs-msg-role {
  color: rgba(200, 241, 53, 0.65);
}

.gs-msg-body {
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--hme-text);
  font-size: 14px;
  line-height: 1.65;
}

.gs-msg-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.gs-tag-label {
  font-size: 10px;
  color: var(--hme-muted-deep);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gs-tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  cursor: pointer;
  user-select: none;
  color: var(--hme-muted);
}

.gs-tag-chip input {
  accent-color: var(--hme-lime);
}

.gs-msg-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Composer */
.gs-compose {
  flex-shrink: 0;
  padding: 12px 20px 16px;
  border-top: 1px solid var(--hme-line-soft);
  background: rgba(255,255,255,0.015);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gs-compose-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gs-btn-send {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gs-send-hint {
  font-size: 0.78em;
  opacity: 0.5;
}

/* ── PANEL DERECHO ──────────────────────────────────────────── */
.gs-panel {
  flex: 0 0 272px;
  width: 272px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-left: 1px solid var(--hme-line-soft);
  background: var(--hme-bg-panel);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.07) transparent;
}

.gs-panel-section {
  padding: 18px 16px;
}

.gs-panel-label {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hme-muted-deep);
}

.gs-panel-hint {
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--hme-muted-deep);
  line-height: 1.55;
}

.gs-panel-divider {
  height: 1px;
  background: var(--hme-line-soft);
  margin: 0 16px;
  flex-shrink: 0;
}

/* PDF en panel */
.gs-pdf-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gs-pdf-row {
  padding: 10px 12px;
  border-radius: var(--hme-radius);
  border: 1px solid var(--hme-line-soft);
  background: rgba(255,255,255,0.025);
  color: var(--hme-muted);
  font-family: var(--hme-mono);
  font-size: 11px;
  word-break: break-all;
}

/* Clases legacy PDF (por compatibilidad con JS) */
.gs-pdf-item {
  padding: 10px 12px;
  border-radius: var(--hme-radius);
  border: 1px solid var(--hme-line-soft);
  background: rgba(255,255,255,0.025);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.gs-pdf-status {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hme-lime);
}

.gs-pdf-status.is-fail {
  color: var(--hme-red);
}

/* Export en panel */
.gs-export-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gs-export-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.gs-exp-icon {
  font-size: 0.75em;
  opacity: 0.6;
  flex-shrink: 0;
  min-width: 1.4em;
}

/* KB en panel */
.gs-kb {
  padding-bottom: 24px;
}

.gs-kb-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gs-kb-item {
  border: 1px solid var(--hme-line-soft);
  border-radius: var(--hme-radius);
  padding: 10px 12px;
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s;
}

.gs-kb-item:hover {
  border-color: var(--hme-lime-border);
  background: var(--hme-lime-soft);
}

.gs-kb-item-title {
  font-weight: 600;
  font-size: 13px;
  color: var(--hme-text);
}

.gs-kb-item-preview {
  font-size: 11px;
  color: var(--hme-muted);
  margin-top: 6px;
  max-height: 2.8em;
  overflow: hidden;
}

.gs-kb-block {
  margin-top: 14px;
  padding: 14px 12px;
  border-radius: var(--hme-radius-card);
  border: 1px solid var(--hme-line-soft);
  background: rgba(255,255,255,0.02);
}

.gs-kb-block--add {
  border-color: rgba(255,255,255,0.07);
}

.gs-kb-block--edit {
  border-color: var(--hme-lime-border);
  background: rgba(200, 241, 53, 0.04);
}

.gs-kb-block-title {
  margin: 0 0 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hme-muted);
}

.gs-kb-block-id {
  font-family: var(--hme-mono);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--hme-muted-deep);
  font-size: 10px;
}

.gs-kb-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gs-kb-edit-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.gs-btn {
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--hme-radius);
  padding: 10px 18px;
  border: 1px solid transparent;
  transition: opacity 0.15s, background 0.15s, border-color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.gs-btn-primary {
  background: var(--hme-lime);
  color: var(--hme-bg);
  border-color: var(--hme-lime);
  font-weight: 700;
}

.gs-btn-primary:hover {
  opacity: 0.9;
}

.gs-btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--hme-text);
  font-weight: 500;
}

.gs-btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.38);
}

.gs-btn-destructive {
  background: transparent;
  border: 1px solid var(--hme-red-border);
  color: var(--hme-red);
  font-weight: 500;
}

.gs-btn-destructive:hover {
  background: rgba(255, 80, 80, 0.08);
}

.gs-btn-block {
  width: 100%;
  justify-content: flex-start;
}

.gs-btn-sm {
  font-size: 12px;
  padding: 7px 12px;
}

.gs-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.gs-btn-logout {
  font-size: 11px;
  padding: 7px 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}



/* Enlace al miniportal interno (sin logout) */
a.gs-topbar-lab-link {
  text-decoration: none;
  font-size: 12px;
  padding: 8px 14px;
  flex-shrink: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(220px, 36vw);
}

.gs-btn-new-session {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--hme-lime);
  color: var(--hme-lime);
  background: transparent;
}

.gs-btn-new-session:hover {
  background: rgba(200, 241, 53, 0.08);
}

/* ── INPUTS ─────────────────────────────────────────────────── */
.gs-input,
.gs-textarea {
  width: 100%;
  box-sizing: border-box;
  border-radius: var(--hme-radius);
  border: 1px solid var(--hme-line);
  background: rgba(255,255,255,0.04);
  color: var(--hme-text);
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  transition: border-color 0.15s;
  outline: none;
}

.gs-input:focus,
.gs-textarea:focus {
  border-color: var(--hme-lime);
}

.gs-textarea {
  resize: vertical;
  min-height: 78px;
  line-height: 1.55;
}

.gs-meta-bar .gs-input {
  font-size: 13px;
  padding: 8px 10px;
}

/* ── MISC ───────────────────────────────────────────────────── */
.gs-error {
  flex: 1;
  color: var(--hme-red);
  font-size: 13px;
  margin: 0;
  line-height: 1.45;
}

.gs-muted {
  font-size: 13px;
  color: var(--hme-muted);
  margin: 0 0 12px;
  line-height: 1.6;
}

.gs-eyebrow {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hme-lime);
}

.gs-version-footer {
  flex-shrink: 0;
  padding: 10px 16px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hme-muted-deep);
  border-top: 1px solid var(--hme-line-soft);
  background: rgba(0,0,0,0.3);
}

/* ── FILE INPUT ─────────────────────────────────────────────── */
.gs-file-label {
  display: inline-block;
  margin-bottom: 4px;
  cursor: pointer;
}

.gs-file-input {
  display: none;
}

/* ── LOGIN (preservado para login.html) ─────────────────────── */
.gs-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 40px);
}

.gs-login-card {
  width: 100%;
  max-width: 440px;
  background: var(--hme-surface-strong);
  border: 1px solid var(--hme-line-soft);
  border-radius: var(--hme-radius-card);
  padding: 36px 32px 32px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.55);
}

.gs-wordmark--login {
  display: block;
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.32em;
}

.gs-brand {
  font-family: var(--hme-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 8px;
}

.gs-login-hint {
  font-size: 14px;
  color: var(--hme-muted);
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 36ch;
}

.gs-login-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gs-login-footer-nav {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--hme-line-soft);
  text-align: center;
}

.gs-login-public-link {
  font-size: 13px;
  color: var(--hme-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.gs-login-public-link:hover {
  color: var(--hme-lime);
  border-bottom-color: rgba(200, 241, 53, 0.45);
}

.gs-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--hme-muted-deep);
  display: block;
  margin-bottom: 4px;
}

/* ── SCROLLBARS ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.18); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .gs-panel {
    display: none;
  }
  /* Panel removed from flex flow; main must absorb the full row minus the rail */
  .gs-main {
    flex: 1 1 0%;
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .gs-side {
    display: none;
  }
  .gs-main {
    flex: 1 1 0%;
    min-width: 0;
    width: 100%;
  }
  .gs-topbar {
    flex-wrap: nowrap;
    height: var(--topbar-h);
    min-height: var(--topbar-h);
    max-height: var(--topbar-h);
    padding: 0 16px;
    gap: 8px;
  }
  .gs-topbar-left,
  .gs-topbar-right {
    min-width: 0;
  }
  .gs-topbar-center {
    flex: 1;
    min-width: 0;
    text-align: center;
  }
  .gs-topbar-logo { height: 36px; }
  .gs-topbar-context { display: none; }
  .gs-topbar-divider { display: none; }
}
