.tab-wrapper {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto 1fr;
}
.tab-wrapper .tab-selector {
  grid-row: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.tab-wrapper .tab-selector .tab-button {
  flex-grow: 1;
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
  text-align: center;
  height: 100%;
}
.tab-wrapper .tab-selector .tab-button.active {
  background-color: #fff;
  border-bottom: 1px solid #fff;
}
.tab-wrapper .tab-content {
  grid-row: 2;
  width: 100%;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 0 0 5px 5px;
  display: none;
  border-top: none;
}
.tab-wrapper .tab-content.active {
  display: block;
}

/*# sourceMappingURL=tab-selector.css.map */
