/* --- layout --- */
.wtabs {
  /* font-family: Arial, sans-serif; */
  margin: 1em 0;
}

.wtabs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  border-bottom: 2px solid #b1b4b6;
  gap: 2px;
  background: #f8f8f8;
}

.wtabs-item {
  margin: 0;
}

.wtab {
  display: inline-block;
  padding: 10px 16px;
  text-decoration: none;
  color: #1d70b8;
  border: 1px solid transparent;
  border-radius: 6px 6px 0 0;
  background: #f8f8f8;
  position: relative;
  top: 2px;
}

.wtab:hover {
  background: #e5e5e5;
}

.wactive .wtab {
  font-weight: bold;
  color: #0b0c0c;
  background: #fff;
  border-color: #b1b4b6 #b1b4b6 #fff; /* hides bottom border */
  z-index: 2;
}

/* --- panels --- */
.wtabs-panel {
  padding: 15px;
  border: 1px solid #b1b4b6;
  border-top: none;
  background: #fff;
  position: relative;
  top: -2px;
  z-index: 1;
}
