.tab {
  overflow: hidden;
  background-color: #333;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #b5179e;
}

.tabcontent {
    display: none;
    flex: 1;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    background-color: transparent;
}

.tabcontent::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

.tabcontent::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #4cc9f0
  );
  border-radius: 6px;
}

.tabcontent::-webkit-scrollbar-thumb:hover {
  opacity: 0.8;
}

.tabcontent {
  scrollbar-width: thin;
  scrollbar-color: #4cc9f0 rgba(255,255,255,0.1);
}