/**
 * @file
 * Visual styles for tabs.
 */

div.tabs {
  margin: 1em 0;
}
ul.tabs {
  margin: 0 0 .5em;
  padding: 0;
  list-style: none;
}
.tabs > li {
  border: 1px solid #000;
  display: inline-block;
  margin-right: .25em; /* LTR */
  margin-bottom: .5em;
  text-transform: uppercase;
}
[dir="rtl"] .tabs > li {
  margin-right: 0;
  margin-left: .25em;
}
.tabs a {
  display: block;
  padding: .2em 1em;
  text-decoration: none;
}
.tabs a:focus,
.tabs a:hover,
.tabs a.is-active {
  background-color: #121212;
  color: #e0e0e0;
}

@media screen and (prefers-color-scheme: dark) {
  .tabs > li {
    border: 1px solid #e0e0e0;
  }
  .tabs a.is-active {
    color: #e0e0e0;
  }
  .tabs a.is-active:hover {
    color: #fff;
  }
  .tabs a:focus,
  .tabs a:hover {
    background-color: #000;
  }
}
