.syllabus-container{
    display: flex;
    height: 100%;
    margin: 0;

  border-radius: 0 0 10px 10px;
  padding: 0px 0px;
  overflow: scroll;
}

.toc-side-container {
    
    
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-items: flex-end;
}

.toc-list {
    max-width: 20px;
    width: 20px;
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: space-around;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 0;
    
    padding: 5px;
}
  
.toc-list-item {
    width: 10px;
    height: 10px;
    border-radius: 20px;
    background-color: #000;
    margin-bottom: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}


.toc-list-item:hover {
    background-color: #e0e0e0;
}