body {
  padding: 0;
  margin: 0;

  background-color: #09090b;
  color: #d4d4d8;
  font-size: 18px;
}

#wrapper {
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 50px;
  min-height: 100vh;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fafafa;
  text-shadow: 0px 0px 3px #d4d4d8;
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fafafa;
}

footer {
  margin-top: 40px;
  padding: 20px 0;
  color: #e4e4e7;
  border-top: 1px solid #52525b;
}

li {
  margin: 8px 0;
}

a {
  color: #d4d4d8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #fafafa;
}

* {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif !important;
}

ul {
  padding-left: 20px;
}

footer {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}

main {
  margin-top: 40px;
  min-height: 30vh;
}

ul ul {
  font-size: 16px;
}

h1 {
  margin-bottom: 0;
  margin-top: 0;
}

.fakelog-info {
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid #b91c1c70;
  background-color: #b91c1c30;
  color: #f87171;
  font-weight: bold;
  font-size: 16px;
}

code {
  font-size: 14px;
  padding: 2px 4px;
  border-radius: 3px;
  background-color: #fafafa10;
}

.endpoint-info {
  color: #fbbf24;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 28px;
}

tbody tr {
  border-top: 1px solid #fafafa20;
}

th {
  text-align: left;
}

tbody {
  font-size: 13px;
}

tbody th {
  font-size: 13px;
  font-weight: 400;
  color: #fafafa;
}

.method {
  color: #a1a1aa;
}

/* https://uiverse.io/ClawHack1/itchy-bobcat-18 */

.toggle-wrapper {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.toggle-wrapper .toggle-switch {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 24px;
  background-color: #52525b;
  border-radius: 34px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.toggle-wrapper .toggle-switch::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  background-color: #fff;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.toggle-wrapper .toggle-input:checked + .toggle-switch::before {
  transform: translateX(16px);
}

.toggle-wrapper .toggle-input:checked + .toggle-switch {
  background-color: #16a34a;
}

.toggle-wrapper .toggle-input:checked + .toggle-switch::before {
  transform: translateX(16px);
}

.option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
}

.option__description {
  flex: 1;
}

.option__description-cookie {
  font-size: 14px;
  margin-top: 8px;
}

.table__container {
  overflow: auto;
  border-radius: 8px;
  border: 1px solid #fafafa20;
}

label {
  font-size: 15px;
}

input {
  display: block;
  margin: 3px 0;
  padding: 12px 15px;
  border-radius: 7px;
  border: 1px solid #fafafa20;
  background-color: transparent;
  color: white;
  font-size: 16px;
  width: 100%;
}

input:focus {
  outline-color: white;
  outline-style: solid;
  outline-width: 2px;
  outline-offset: -1px;
  transition-property: none;
}

button {
  padding: 12px 15px;
  border-radius: 7px;
  border: none;
  background-color: #fbbf24;
  color: #09090b;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
}
