
.pagination{
  text-align: center;
  margin: 30px 30px 60px;
  user-select: none;
}

.pagination li{
  display: inline-block;
  margin: 5px;
  box-shadow: 0 5px 25px rgb(1 1 1 / 10%);
}

.pagination li a{
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  line-height: 45px;
}

.previous-page, .next-page{
  background: #fd8f44;
  width: 80px;
  border-radius: 45px;
  cursor: pointer;
  transition: 0.3s ease;
}

.previous-page:hover{
  transform: translateX(-5px);
}

.next-page:hover{
  transform: translateX(5px);
}

.current-page, .dots{
  background: #ccc;
  width: 45px;
  border-radius: 50%;
  cursor: pointer;
}

.active{
  background: #fd8f44;
}

.disable{
  background: #ccc;
}
.video-notes {
    text-align: center;
    margin: 10px auto;
    width: 68%;
    border: 1px solid #270cd3;
    border-radius: 10px;
    background: #ede9cb;
}


.video-notes pre {
    display: table;
    margin: 0 auto;
    text-align: left;
    font-family: monospace;
    color:blue
}