/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: var(--bkg-color);
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-image: linear-gradient(-45deg, black, gray, black);
  background-color: gray;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 4px 4px;
  transition: 0.3s;
}

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

/* Create an active/current tablink class */
.tab button.active {
  border-radius: 5px;
  background-image: linear-gradient(-45deg, #024f22, blue, #6eaa2e);
  background-color:blue;
  color:white;
  margin:3px;
  text-shadow: 2px 2px 3px black;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}