/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
  } */
  
  .sidebar {
    background-color: #f4f4f4;
    padding: 20px;
    box-sizing: border-box;
    border-right: 2px solid #ddd;
  }
  
  .sidebar a {
    text-decoration: none;
    color: #007bff;
    margin-bottom: 10px;
    display: block;
    font-size: 16px;
  }
  
  .sidebar a:hover {
    text-decoration: underline;
  }

  .sidebar ul.b {
    list-style-type: square;
  }
  
  /* .content {
    width: 70%;
    padding: 20px;
    box-sizing: border-box;
  } */
  
  /* .hidden {
    display: none;
  } */


/* Documentation Topics Back Button  */
.subTopics button {
    margin-bottom: 10px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
}
.subTopics button:hover {
  background-color: #dc3545;
  color: white;
}

.circle-list {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
}

.circle-list li {
  position: relative;
  margin: 1.5em 0 1.5em 3.5em; /* More vertical spacing here */
}

.circle-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: -3.5em; /* match with li margin to align well */
  top: 0.05em;
  width: 2.2em;
  height: 2.2em;
  background-color: black;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}