.scroll-container {
  position: relative;
  height: 100%;
  /* height: 300px; */
  overflow: hidden; /* escondemos a scrollbar nativa */
}

.scroll-content {
  overflow: auto;
  scrollbar-width: none; /* Firefox */
}

.scroll-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.scroll-content {
  height: 100%;
  overflow-y: scroll;
  padding-right: 15px; /* espaço para o thumb fake */
  box-sizing: content-box;
  margin-bottom: 1rem;
}

.custom-scrollbar {
  position: absolute;
  top: 0;
  right: 2px;
  width: 6px;
  height: 100%;
  background: transparent;
  overflow: hidden;
}

.custom-thumb {
  width: 100%;
  background: #b09fe3;
  border-radius: 4px;
  position: absolute;
  top: 0;
  height: 50px;
  transition: background 0.3s;
}

.custom-thumb:hover {
  background: #555;
}

.item {
  height: 60px;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}
