body {
  height: 100vh;
  font-family: 'Orbitron', sans-serif;
  background: #0d0d0d;
  color: white;
  overflow: hidden;
  display: flex;
}

#sidebar-area {
  width: 300px;
  height: 100vh;
  overflow: auto;
}

#remaining-area {
  flex: 1;
  height: 100vh;
  overflow-y: auto;
}

/* Mobile support */
@media (max-width: 768px) {
  #sidebar-area {
    width: 110px; /* Narrower sidebar on mobile */
  }

  #remaining-area {
    flex: 1;
    height: 100vh;
  }
}
