/* global.css — page-specific styles for global.html */

/* Charts always visible on this page (shared default is display:none) */
#charts { display: block; }

/* Side panel (this page uses #side-panel, not #content) */
#side-panel {
  flex: 1; overflow-y: auto; background: #0d1118;
  padding: 20px; font-size: 15px;
}

/* Intro modal overlay */
#intro-modal {
  position: fixed; inset: 0;
  background: rgba(13,17,24,0.88);
  display: flex; align-items: center; justify-content: center;
  z-index: 300;
}
#intro-modal.hidden { display: none; }

/* Intro card max-width for this page */
.intro-card { max-width: 520px; }
