body {
  color: #8A2BE2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-wrapper {
  width: 90%;
  max-width: 1000px; /* Set max width of entire layout */
  height: 90vh;       /* So it doesn't touch top/bottom edges */
  display: flex;
  flex-direction: column;
  border: 2px solid #8A2BE2;
  box-shadow: 0 0 20px #8A2BE2;
  background-color: rgba(0, 0, 0, 0.8); /* Optional dark glass effect */
}

.layout {
  display: flex;
  flex: 1;
}

.sidebar {
  width: 180px;
  padding: 10px;
  background-color: #111;
  overflow-y: auto;
}

.left {
  border-right: 1px solid #8A2BE2;
}

.right {
  border-left: 1px solid #8A2BE2;
}

.content {
  flex: 1;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: start;
}

.scroll-box {
  max-height: 100%;
  overflow-y: auto;
  width: 100%;
  padding-right: 10px;
}
