/* Container that holds both boxes side-by-side */
.layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-top: 60px;
}

/* Main big box */
.content-box {
  width: 60%;
  max-width: 700px;
  height: 400px;

  background: #000000;
  color: #ffffff;

  padding: 20px;
  overflow-y: auto;

  border: 0;
  border-radius: 0;
}

/* Sidebar box */
.side-box {
  width: 180px;
  height: 400px;

  background: #000000;
  color: #ffffff;

  padding: 10px;
  overflow-y: auto;

  border: 0;
  border-radius: 0;
}
