@font-face {
  font-family: JetbrainsMonoNerdFont;
  src: url("/.www/img/JetBrainsMonoNerdFont-Medium.ttf");
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
    font-size: 62.5%;
}

body {
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: white;
  background-color: var(--success-dark);
}

div.table-container {
  margin: 2rem 0;
  padding: 2rem;

  border: 1px solid var(--success-success);
  border-radius: 5px;
  box-shadow: 1px 1px var(--success-almost-black);
}

table {
  width: 100%;
  border-collapse: collapse;

}

tbody tr td {
  padding: 0 1rem;
  overflow: visible;
}

th a:link, th a:visited {
  color: #ff9999;
  opacity: 1;
}

tbody tr:nth-child(even) {
  border-top: 1px solid var(--success-darkest);
  border-bottom: 1px solid var(--success-darkest);
}

tbody tr:last-child {
  border-bottom: none;
}

a {
  list-style: none;
  text-decoration: none;
  transition: .2s ease-out;
}

a:link, a:visited {
  color: white;
  opacity: 1;
}

a:hover, a:active, a:focus {
  color: var(--success-lightest);
  opacity: 0.5;
  list-style: none;
  text-decoration: none;
}

.pre-container {
  max-width: 80vw;
  margin: 10vh 10vw;
  font-size: 2rem;
}

.guide-link {
  margin-top: 3rem;
  color: var(--muted-text-color);
}

a.guide-link:link {
  color: #ff9999;
  opacity: 1;
}

a.guide-link:hover, a.guide-link:active, a.guide-link:focus {
  color: var(--success-lightest);
  opacity: 0.5;
  list-style: none;
  text-decoration: none;
}

li code {
  background-color: #222222;
  color: #ffffff;
  border-radius: 2px;
  padding: 3px;
}

ul.guide-summary {
  padding: 1rem 2rem 2rem 2rem;
  margin: 0;
  background-color: #2b2b2b;
  border-radius: 5px;
}

ul.guide-summary li {
  margin-left: 4rem;
}

@media only screen and (max-device-width: 480px) {

  body div.pre-container {
    margin: 0 0.5rem;
    font-size: 110%;
  }

  div div.breadcrumb-container {
    min-width: 95vw;
    margin: 1vw;
    flex-direction: column;
    justify-content: flex-start;
  }

  div div.breadcrumb-container input#filter-input {
    max-height: 5vw;
    font-size: 110%;
  }
  table#list {
    min-width: 98vw;
  }
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
}

