.tab-container {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 30vw;
  height: 30vw;
  border: 2px solid black;
}

.tab-content {
  display: none;
  padding: 0px 20px 20px 20px;
  border-top: none;
  overflow-y: auto;
}

.tab-menu {
  display: flex;
  background-color: black;
  justify-content: center;
}

.tab-btn {
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  border-radius: 0px;
  background: none;
}

/* Style for the active tab */
.tab-btn.active {
  background-color: white;
  color: black;
  border-bottom: none;
}

.website-todo {
  padding: 3px 0px 0px 0px;
}