/* Critical CSS loaded before React to prevent CLS (Cumulative Layout Shift) */
html, body { background-color: #0c0a12; }

/* Reserve sidebar space on desktop so layout doesn't shift when React hydrates */
@media (min-width: 1024px) {
  #shell-sidebar {
    display: block !important;
    width: 16rem;
    flex-shrink: 0;
    background: #13111d;
    border-right: 1px solid #352f4a;
  }
}
