body {
 overflow: hidden;
}

.body {
  display: grid;
  grid-template-columns: 1fr 3fr;
  overflow: hidden;
}

.container {
  height: 100vh;
  width: 100vw;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 30px 1fr 30px;
}

.header {
  border-bottom: 1px solid lightgrey;
}

.sidebar {
  border-right: 1px solid lightgrey;
  overflow-y: scroll;
  padding: 0px;
}

.content {
  overflow-y: scroll;
  padding: 20px;
}

.footer {
    border-top: 1px solid lightgrey;
}

p {
  max-width: 600px;
}

ul.no-bullets {
  /*list-style-type: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margins */
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 12%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: black;
  font-weight: bold;
  font-size: 22px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  margin-right: 30px;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.5);
}

.grab {
	cursor: grab;
}

.pointer {
	cursor: pointer;
}

/* On hover, add a black background color with a little bit see-through */
.grab:hover, .pointer:hover {
  background-color: rgba(0,0,0,0.1);
}


