.container-content-with-scroll {
    overflow: auto;
  }
  
  .container-content-with-scroll p:not(:last-child) {
    margin-bottom: 1rem;
  }
  
  .container-content-with-scroll::-webkit-scrollbar {
    width: 5px;
  }
  
  .container-content-with-scroll::-webkit-scrollbar-thumb {
    background: #2e396d;
    border-radius: 4px;
    height: 150px;
  }
  
  .container-content-with-scroll::-webkit-scrollbar-thumb:active {
    background-color: #999999;
  }
  
  .container-content-with-scroll::-webkit-scrollbar-thumb:hover {
    background: #47538d;
    box-shadow: 0 0 2px 1px #566199;
  }
  
  .container-content-with-scroll::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px;
  }
  
  .container-content-with-scroll::-webkit-scrollbar-track:hover,
  .container-content-with-scroll::-webkit-scrollbar-track:active {
    background: #c5d9e6;
  }

.container-content-with-scroll2 {
  overflow: auto;
}

.container-content-with-scroll2 p:not(:last-child) {
  margin-bottom: 1rem;
}

.container-content-with-scroll2::-webkit-scrollbar {
  width: 5px;
}

.container-content-with-scroll2l::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 4px;
  height: 150px;
}

.container-content-with-scroll2::-webkit-scrollbar-thumb:active {
  background-color: #000;
}

.container-content-with-scroll2::-webkit-scrollbar-thumb:hover {
  background: #111212;
  box-shadow: 0 0 2px 1px #000000;
}

.container-content-with-scroll2::-webkit-scrollbar-track {
  background: #0000;
  border-radius: 4px;
}

.container-content-with-scroll2::-webkit-scrollbar-track:hover,
.container-content-with-scroll2::-webkit-scrollbar-track:active {
  background: #000;
}