body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #e0e0e0;
  font-family: Arial, sans-serif;
}

#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin-left: 0;
}

#mainHeader {
  background-color: #2a0033; /* lighter than #1a001a */
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 8px #330033;
}

.logoTitle {
  font-size: 48px;
  font-weight: bold;
  background: linear-gradient(135deg, #ffe066, #ffcc00, #f2c200, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px #000;
  margin: 0;
}

.subtitle {
  font-size: 20px;
  color: #f5f5dc;
  margin-top: 8px;
  text-shadow: 1px 1px 2px #000;
}


#mainFooter {
  background-color: #1a001a;
  padding: 15px;
  text-align: center;
  color: #999;
  box-shadow: 0 -2px 5px #330033;
}

/* Sidebar Toggle Button */
#sidebarToggle {
  position: fixed;
  top: 15px;
  left: 15px;
  font-size: 28px;
  color: #ccc;
  cursor: pointer;
  z-index: 1001;
}

/* Sidebar Navigation */
#sideNav {
pointer-events: auto;
  position: fixed;
  top: 0;
  left: -220px;
  width: 220px;
  height: 100%;
  background-color: #1a001a;
  color: #ccc;
  box-shadow: 2px 0 10px #000;
  transition: left 0.3s ease-in-out;
  z-index: 1000;
}

#sideNav ul {
  list-style: none;
  margin: 0;
  padding: 60px 20px 20px 20px; /* Top padding pushes text down */
}

.contentWrapper {
  width: 75%;
  margin: 0 auto;
  padding: 30px;
  background-color: #000; /* Now pure black */
  border-radius: 8px;
  box-shadow: 0 0 10px #330033;
  min-height: 300px;
}



#sideNav li {
  margin: 15px 0;
  cursor: pointer;
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 4px;
}

#sideNav li:hover {
  background-color: #330033;
  color: #fff;
}

/* Sidebar Active */
#sideNav.open {
  left: 0;
}

#mainContent {
  flex: 1;
  padding: 30px;
  background-color: #0a0a0a;
  color: #eee;
  font-size: 18px;
}
