section.cdntest {
  flex: 1;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 4.5ex minmax(0px, 60em) 0px;
  grid-template-rows: max-content;
  align-content: start;
  justify-content: center;
  gap: 1em 0;
  padding-top: 1em;
  margin: auto;
}
section.cdntest h1 {
  grid-column: 1 / -1;
  text-align: center;
}
section.cdntest h2 {
  font-size: 180%;
  grid-column: 1 / -1;
  text-align: center;
}
section.cdntest > ol {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: subgrid;
  gap: 1em 0;
  counter-reset: link;
}
section.cdntest li {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: subgrid;
  counter-increment: link;
}
section.cdntest li::before {
  content: counter(link) ".";
  font-size: 150%;
  padding-right: 0.5ex;
  line-height: 1;
  align-self: center;
  justify-self: end;
}
section.cdntest li:only-child button {
  visibility: hidden;
}
section.cdntest li input {
  padding-right: 2rem;
}
section.cdntest li.invalid input {
  border-color: var(--button-color-alert);
  background-color: color-mix(in oklab, yellow, var(--header-bg) 90%);
}
section.cdntest button {
  background-color: var(--button-color);
}
section.cdntest button.disabled {
  background-color: var(--text-disabled);
}
section.cdntest [data-action="delete"] {
  position: absolute;
  top: 2px;
  right: 0;
  padding: 0;
  font-size: 2rem;
  line-height: 2.5rem;
  width: 2rem;
  color: var(--button-color-alert);
  background-color: transparent;
}
section.cdntest [data-action="add"] {
  padding: 0;
  font-size: 2rem;
  line-height: 2.5rem;
  width: 2.5rem;
  margin: 0 calc((4.5rex - 2.5rem) / 2);
}
section.cdntest [data-action="start"] {
  grid-column: span 2;
  justify-self: end;
}
.sitereport {
  width: 100%;
  max-width: 375px;
  max-height: 100dvh;
  background-color: var(--header-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  overflow: auto;
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: max-content;
  gap: 0.75em;
  animation: showup 250ms ease-out;
}
.sitereport .report {
  background-color: var(--button-color);
}
.sitereport header {
  margin: -1rem -1rem -1.5rem;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
}
.sitereport .close {
  width: 1.2em;
  height: 1.2em;
  padding: 0;
  display: flex;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background-color: transparent;
  color: var(--font-main);
}
.sitereport .close:hover {
  background-color: var(--button-color-alert);
  color: var(--header-bg);
}
.sitereport h2 {
  font-size: 1.5rem;
  text-align: center;
}
.sitereport textarea {
  height: 10rem;
  line-height: 1.5;
  resize: none;
  accent-color: var(--red-accent);
  outline-color: var(--input-color-hovered);
  border: 1px solid var(--input-border);
  border-radius: var(--border-radius);
  padding: 0.5em 0.75em;
}
.sitereport input {
  padding: 0 0.75em;
}
.sitereport textarea,
.sitereport input {
  outline-offset: -2px;
}
.sitereport textarea::placeholder,
.sitereport input::placeholder {
  font-style: normal;
  opacity: 0.5;
}
.sitereport button {
  cursor: pointer;
}
.sitereport p {
  text-align: center;
  font-size: 120%;
  padding: 1em 0;
  opacity: 0.7;
}
.sitereport p:first-of-type {
  font-size: 170%;
  padding-bottom: 0;
}
.sitereport > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
}
.sitereport .social {
  font-size: 120%;
  justify-content: center;
  padding-bottom: 1em;
}
.sitereport .social > div {
  width: 100%;
  text-align: center;
}
.sitereport .pre {
  background-color: var(--button-color-alert);
  flex: 1;
  white-space: nowrap;
}
.sitereport label.attach {
  line-height: 2.5em;
  border-radius: var(--border-radius);
  background-color: var(--button-color);
  color: var(--header-bg);
  font-weight: bolder;
  cursor: pointer;
}
.sitereport label.attach input {
  width: 1px;
  height: 1px;
  opacity: 0;
}
