/* Blossom.css v1.0.0
 * ================
 * Semantic css theme based on Sakura.css v1.5.1 || https://github.com/oxalorg/sakura/
 * Project: https://github.com/kaiserrrrrr/blossom
 */

:root {
  --bg: #f9f9f9;
  --bg-alt: #f1f1f1;
  --text: #4a4a4a;
  --border: #f1f1f1;
  --input-border: #4a4a4a;
  --input-focus: #1d7484;
  --hr: #1d7484;
  --accent: #1d7484;
  --link: #1d7484;
  --link-visited: #144f5a;
  --link-hover: #982c61;
  --btn-bg: #1d7484;
  --btn-fg: #f9f9f9;
  --btn-hover: #982c61;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  --gap-xs: 0.4rem;
  --gap-sm: 0.8rem;
  --gap-md: 1.5rem;
  --gap-lg: 2.5rem;
  --gap-xl: 4rem;
  --max-w: 38em;
  --lh: 1.618;
  --t: 150ms ease;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #222222;
    --bg-alt: #4a4a4a;
    --text: #c9c9c9;
    --border: #4a4a4a;
    --input-border: #c9c9c9;
    --input-focus: #ffffff;
    --hr: #ffffff;
    --accent: #ffffff;
    --link: #ffffff;
    --link-visited: #e6e6e6;
    --link-hover: #c9c9c9;
    --btn-bg: #ffffff;
    --btn-fg: #222222;
    --btn-hover: #c9c9c9;
  }
}

@media (forced-colors: active) {
  :root {
    --accent: Highlight;
    --link: LinkText;
    --text: CanvasText;
    --bg: Canvas;
    --border: ButtonBorder;
    --input-border: ButtonBorder;
    --input-focus: Highlight;
    --btn-bg: ButtonFace;
    --btn-fg: ButtonText;
  }
  a {
    color: LinkText;
  }
  button,
  input[type="submit"],
  input[type="reset"],
  input[type="button"] {
    forced-color-adjust: none;
  }
  input,
  select,
  textarea {
    forced-color-adjust: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body > a[href^="#"]:first-child {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: var(--gap-sm) var(--gap-md);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  text-decoration: none;
  transition: top var(--t);
}

body > a[href^="#"]:first-child:focus {
  top: 0;
}

html {
  font-size: 62.5%;
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 1.8rem;
  line-height: var(--lh);
  max-width: var(--max-w);
  margin: auto;
  color: var(--text);
  background-color: var(--bg);
  padding: 13px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (max-width: 684px) {
  body {
    font-size: 1.53rem;
  }
}

@media (max-width: 382px) {
  body {
    font-size: 1.35rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
  font-family: var(--font-sans);
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
}

h1 { font-size: 2.35em; }
h2 { font-size: 2em; }
h3 { font-size: 1.75em; }
h4 { font-size: 1.5em; }
h5 { font-size: 1.25em; }
h6 { font-size: 1em; }

p {
  margin-top: 0;
  margin-bottom: 2.5rem;
  text-wrap: pretty;
}

small,
sub,
sup {
  font-size: 75%;
}

sub { vertical-align: sub; }
sup { vertical-align: super; }

b,
strong {
  font-weight: bolder;
}

i,
em {
  font-style: italic;
}

cite {
  font-style: italic;
}

u {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

s {
  text-decoration: line-through;
}

mark {
  background-color: var(--bg-alt);
  color: var(--text);
  padding: 0.1em 0.3em;
}

ins {
  background-color: var(--bg-alt);
  text-decoration: none;
  padding: 0.1em 0.3em;
}

del {
  text-decoration: line-through;
  padding: 0.1em 0.3em;
  opacity: 0.7;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

dfn {
  font-style: italic;
  text-decoration: underline dotted;
  cursor: help;
}

var {
  font-family: var(--font-mono);
  font-style: italic;
  font-size: 0.9em;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

q::before { content: open-quote; }
q::after { content: close-quote; }

bdi { unicode-bidi: isolate; }
bdo { unicode-bidi: bidi-override; }

a {
  text-decoration: none;
  color: var(--link);
}

a:visited {
  color: var(--link-visited);
}

a:hover {
  color: var(--link-hover);
  border-bottom: 2px solid var(--text);
}

a:active {
  color: var(--link-hover);
}

a:focus-visible {
  outline: 2px solid var(--input-focus);
  outline-offset: 2px;
}

:target {
  scroll-margin-top: 1.5rem;
}

a[target="_blank"]::after {
  content: "\00A0\2197";
  font-size: 0.75em;
  opacity: 0.7;
  vertical-align: super;
}

a[download]::after {
  content: "\00A0\2193";
  font-size: 0.75em;
  opacity: 0.7;
  vertical-align: super;
}

address {
  font-style: normal;
  margin-bottom: 2.5rem;
  line-height: var(--lh);
}

ul,
ol {
  padding-left: 1.4em;
  margin-top: 0;
  margin-bottom: 2.5rem;
}

li {
  margin-bottom: 0.4em;
}

li > ul,
li > ol {
  margin-top: var(--gap-xs);
  margin-bottom: 0;
}

dl {
  margin-top: 0;
  margin-bottom: 2.5rem;
}

dt {
  font-weight: 700;
  margin-top: var(--gap-sm);
}

dd {
  margin-left: 1.4em;
  margin-bottom: var(--gap-xs);
}

menu {
  padding-left: 1.4em;
  margin-top: 0;
  margin-bottom: 2.5rem;
}

blockquote {
  margin-left: 0;
  margin-right: 0;
  padding-left: 1em;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  padding-right: 0.8em;
  border-left: 5px solid var(--accent);
  margin-bottom: 2.5rem;
  background-color: var(--bg-alt);
}

blockquote p {
  margin-bottom: 0;
}

blockquote footer,
blockquote cite {
  display: block;
  margin-top: var(--gap-sm);
  font-size: 0.85em;
  opacity: 0.8;
}

blockquote footer::before {
  content: "\2014\00A0";
}

hr {
  border-color: var(--hr);
  border-style: solid;
  border-width: 1px 0 0 0;
  margin-top: 0;
  margin-bottom: 2.5rem;
}

img,
video {
  height: auto;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 2.5rem;
}

img:not([loading]) {
  content-visibility: auto;
}

svg {
  max-width: 100%;
  display: block;
  margin-bottom: 2.5rem;
}

canvas {
  max-width: 100%;
  display: block;
  margin-bottom: 2.5rem;
}

picture {
  display: contents;
}

figure {
  margin: 0 0 2.5rem;
}

figure img,
figure video,
figure svg,
figure canvas,
figure picture {
  margin-bottom: 0;
}

figcaption {
  font-size: 0.85em;
  opacity: 0.8;
  margin-top: var(--gap-xs);
  font-style: italic;
}

audio {
  display: block;
  width: 100%;
  margin-bottom: 2.5rem;
  accent-color: var(--accent);
}

iframe,
embed,
object {
  border: 0;
  max-width: 100%;
  display: block;
  margin-bottom: 2.5rem;
}

iframe[src*="youtube"],
iframe[src*="youtu.be"],
iframe[src*="vimeo"],
iframe[src*="dailymotion"],
iframe[src*="player.twitch"],
iframe[src*="embed"] {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

map {
  display: block;
}

area:focus-visible {
  outline: 2px solid var(--input-focus);
  outline-offset: 2px;
}

pre {
  background-color: var(--bg-alt);
  display: block;
  padding: 1em;
  overflow-x: auto;
  margin-top: 0;
  margin-bottom: 2.5rem;
  font-size: 0.9em;
  tab-size: 2;
  -webkit-overflow-scrolling: touch;
}

code,
kbd,
samp {
  font-size: 0.9em;
  padding: 0 0.5em;
  background-color: var(--bg-alt);
  white-space: pre-wrap;
  font-family: var(--font-mono);
}

pre > code {
  padding: 0;
  background-color: transparent;
  white-space: pre;
  font-size: 1em;
}

kbd {
  border: 1px solid var(--input-border);
  border-bottom-width: 2px;
  border-radius: 2px;
  box-shadow: inset 0 -1px 0 var(--input-border);
  white-space: nowrap;
}

kbd kbd {
  font-size: 1em;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

table {
  text-align: justify;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 480px) {
  table {
    display: table;
  }
}

caption {
  caption-side: bottom;
  font-size: 0.85em;
  opacity: 0.8;
  font-style: italic;
  padding: var(--gap-xs) 0;
  text-align: center;
}

thead {
  background-color: var(--bg-alt);
}

tbody tr:hover {
  background-color: var(--bg-alt);
}

tfoot tr {
  font-style: italic;
  opacity: 0.8;
}

th {
  padding: 0.5em;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  text-align: left;
}

td {
  padding: 0.5em;
  border-bottom: 1px solid var(--border);
}

tfoot td,
tfoot th {
  border-top: 1px solid var(--border);
  border-bottom: none;
}

form {
  margin-bottom: 2.5rem;
}

fieldset {
  border: 1px solid var(--border);
  padding: var(--gap-md);
  margin-bottom: 2.5rem;
}

fieldset:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

legend {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  padding: 0 var(--gap-xs);
  color: var(--accent);
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  cursor: pointer;
}

label:has(> input[type="checkbox"]),
label:has(> input[type="radio"]) {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  font-weight: normal;
}

textarea,
select,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"] {
  color: var(--text);
  padding: 6px 10px;
  margin-bottom: 10px;
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1em;
  line-height: var(--lh);
}

textarea:focus,
select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus {
  border: 1px solid var(--input-focus);
  outline: 0;
}

textarea:focus-visible,
select:focus-visible,
input:focus-visible {
  outline: 2px solid var(--input-focus);
  outline-offset: 2px;
}

textarea:hover,
select:hover,
input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="url"]:hover,
input[type="tel"]:hover,
input[type="number"]:hover,
input[type="search"]:hover,
input[type="date"]:hover,
input[type="datetime-local"]:hover,
input[type="month"]:hover,
input[type="week"]:hover,
input[type="time"]:hover {
  border-color: var(--input-focus);
}

textarea:disabled,
select:disabled,
input:disabled {
  cursor: default;
  opacity: 0.5;
}

textarea:read-only,
input:read-only {
  opacity: 0.75;
  cursor: default;
}

input:required,
textarea:required,
select:required {
  border-left-width: 3px;
}

input:not(:placeholder-shown):invalid,
textarea:not(:placeholder-shown):invalid {
  border-color: var(--link-hover);
}

input:not(:placeholder-shown):valid,
textarea:not(:placeholder-shown):valid {
  border-color: var(--accent);
}

::placeholder {
  color: var(--text);
  opacity: 0.5;
}

@supports (-webkit-touch-callout: none) {
  input,
  textarea,
  select {
    font-size: max(1em, 16px);
  }
}

textarea {
  width: 100%;
  min-height: 8em;
  resize: vertical;
}

select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234a4a4a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75em center;
  padding-right: 2.5em;
}

@media (prefers-color-scheme: dark) {
  select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9c9c9' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  }
}

select[multiple],
select[size]:not([size="1"]) {
  background-image: none;
  padding-right: 10px;
  height: auto;
}

optgroup {
  font-weight: 700;
  font-style: normal;
}

option {
  background-color: var(--bg-alt);
  color: var(--text);
}

option:checked {
  background-color: var(--accent);
  color: var(--btn-fg);
}

input[type="search"] {
  -webkit-appearance: none;
  appearance: none;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

button,
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="file"]::file-selector-button {
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background-color: var(--btn-bg);
  color: var(--btn-fg);
  border-radius: 1px;
  border: 1px solid var(--btn-bg);
  cursor: pointer;
  box-sizing: border-box;
  font-family: var(--font-sans);
  font-size: 1em;
  line-height: var(--lh);
  min-height: 44px;
  min-width: 44px;
  vertical-align: middle;
}

button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
input[type="file"]::file-selector-button:hover {
  background-color: var(--btn-hover);
  border-color: var(--btn-hover);
  color: var(--btn-fg);
  outline: 0;
}

button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
  opacity: 0.85;
}

button:focus-visible,
input[type="submit"]:focus-visible,
input[type="reset"]:focus-visible,
input[type="button"]:focus-visible,
input[type="file"]:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-color: var(--input-focus);
  outline-offset: 2px;
}

button[disabled],
input[type="submit"][disabled],
input[type="reset"][disabled],
input[type="button"][disabled],
input[type="file"][disabled] {
  cursor: default;
  opacity: 0.5;
}

input[type="checkbox"],
input[type="radio"] {
  width: 1.1em;
  height: 1.1em;
  margin: 0;
  accent-color: var(--accent);
  cursor: pointer;
  vertical-align: middle;
  flex-shrink: 0;
}

input[type="checkbox"]:focus,
input[type="radio"]:focus {
  outline: 1px dotted var(--input-focus);
}

input[type="checkbox"]:focus-visible,
input[type="radio"]:focus-visible {
  outline: 2px solid var(--input-focus);
  outline-offset: 3px;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
  accent-color: var(--accent);
}

input[type="checkbox"]:indeterminate {
  accent-color: var(--accent);
  opacity: 0.6;
}

input[type="checkbox"]:disabled,
input[type="radio"]:disabled {
  opacity: 0.5;
  cursor: default;
}

input[type="range"] {
  width: 100%;
  margin-bottom: 10px;
  cursor: pointer;
  accent-color: var(--accent);
}

input[type="range"]:disabled {
  opacity: 0.5;
  cursor: default;
}

input[type="range"]:focus-visible {
  outline: 2px solid var(--input-focus);
  outline-offset: 3px;
}

input[type="color"] {
  padding: 2px;
  width: 3.5em;
  height: 2.5em;
  cursor: pointer;
  background: var(--bg-alt);
  border: 1px solid var(--input-border);
  border-radius: 4px;
  margin-bottom: 10px;
}

input[type="color"]:hover {
  border-color: var(--input-focus);
}

input[type="color"]:focus {
  border-color: var(--input-focus);
  outline: 0;
}

input[type="color"]:disabled {
  opacity: 0.5;
  cursor: default;
}

input[type="file"] {
  cursor: pointer;
  padding: 6px 0;
  background: none;
  border: none;
  width: 100%;
  margin-bottom: 10px;
  color: var(--text);
  font-family: var(--font-sans);
}

input[type="file"]:disabled {
  opacity: 0.5;
  cursor: default;
}

input[type="hidden"] {
  display: none;
}

input[type="image"] {
  cursor: pointer;
  border: none;
  background: none;
  max-width: 100%;
  margin-bottom: 10px;
}

input[type="image"]:disabled {
  opacity: 0.5;
  cursor: default;
}

input[type="image"]:focus-visible {
  outline: 2px solid var(--input-focus);
  outline-offset: 2px;
}

output {
  display: inline-block;
  font-weight: 700;
  color: var(--accent);
}

progress {
  display: block;
  width: 100%;
  height: 0.6em;
  margin-bottom: 2.5rem;
  background-color: var(--bg-alt);
  border: none;
  border-radius: 4px;
  overflow: hidden;
  accent-color: var(--accent);
  appearance: none;
  -webkit-appearance: none;
}

progress::-webkit-progress-bar {
  background-color: var(--bg-alt);
  border-radius: 4px;
}

progress::-webkit-progress-value {
  background-color: var(--accent);
  border-radius: 4px;
}

progress::-moz-progress-bar {
  background-color: var(--accent);
  border-radius: 4px;
}

meter {
  display: block;
  width: 100%;
  height: 0.6em;
  margin-bottom: 2.5rem;
  background: var(--bg-alt);
  border: none;
  border-radius: 4px;
  overflow: hidden;
  accent-color: var(--accent);
}

meter::-webkit-meter-bar {
  background: var(--bg-alt);
  border: none;
  border-radius: 4px;
}

meter::-webkit-meter-optimum-value,
meter::-webkit-meter-suboptimum-value,
meter::-webkit-meter-even-less-good-value {
  border-radius: 4px;
}

header {
  margin-bottom: var(--gap-xl);
}

body > header {
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--gap-md);
}

nav {
  margin-bottom: 2.5rem;
}

nav ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-xs) var(--gap-sm);
}

nav ul li {
  margin-bottom: 0;
}

nav a {
  padding: var(--gap-xs) var(--gap-sm);
  font-weight: 600;
}

nav a:hover {
  border-bottom: none;
  background-color: var(--bg-alt);
}

nav a[aria-current="page"] {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

main {
  display: block;
}

article {
  margin-bottom: var(--gap-xl);
}

article + article {
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

section {
  margin-bottom: var(--gap-xl);
}

aside {
  border-left: 3px solid var(--border);
  padding-left: var(--gap-md);
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.95em;
  opacity: 0.85;
}

footer {
  margin-top: var(--gap-xl);
  border-top: 1px solid var(--border);
  padding-top: var(--gap-md);
  font-size: 0.9em;
  opacity: 0.85;
}

search {
  display: block;
  margin-bottom: 2.5rem;
}

hgroup {
  margin-bottom: 1.5rem;
}

hgroup > * {
  margin-top: 0;
  margin-bottom: 0;
}

hgroup > *:last-child {
  margin-bottom: 0;
  opacity: 0.8;
  font-weight: normal;
}

details {
  background-color: var(--bg-alt);
  padding: var(--gap-sm) var(--gap-md);
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
}

details[open] > *:not(summary) {
  margin-top: var(--gap-sm);
}

summary {
  cursor: pointer;
  font-weight: 700;
  padding: var(--gap-xs) 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  color: var(--accent);
  user-select: none;
}

summary::before {
  content: "\25B6";
  font-size: 0.65em;
  transition: transform var(--t);
  flex-shrink: 0;
}

details[open] > summary::before {
  transform: rotate(90deg);
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  content: none;
}

summary:focus-visible {
  outline: 2px solid var(--input-focus);
  outline-offset: 2px;
}

dialog {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  padding: var(--gap-lg);
  max-width: min(90vw, var(--max-w));
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

dialog[open] {
  animation: dialog-in 200ms ease;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

dialog :is(h1, h2, h3, h4, h5, h6):first-child {
  margin-top: 0;
}

[popover] {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  padding: var(--gap-md);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

ruby {
  ruby-align: center;
}

rt {
  font-size: 0.6em;
  color: var(--accent);
  text-align: center;
}

rp {
  opacity: 0.5;
}

noscript {
  display: block;
  padding: var(--gap-sm) var(--gap-md);
  background-color: var(--bg-alt);
  border-left: 5px solid var(--accent);
  margin-bottom: 2.5rem;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--input-focus);
  outline-offset: 2px;
}

::selection {
  background-color: var(--bg-alt);
  color: var(--text);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--border) var(--bg-alt);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
  background: var(--input-border);
  border: 2px solid var(--bg-alt);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  body {
    max-width: 100%;
    font-size: 12pt;
    line-height: 1.5;
    padding: 0;
  }
  a,
  a:visited {
    color: #000 !important;
    text-decoration: underline;
  }
  a[href]:not([href^="#"]):not([href^="javascript"]):not([href^="tel"]):not([href^="mailto"])::after {
    content: " (" attr(href) ")";
    font-size: 0.75em;
    word-break: break-all;
  }
  a[target="_blank"]::after,
  a[download]::after {
    content: none;
  }
  nav,
  body > a[href^="#"]:first-child,
  [aria-hidden="true"] {
    display: none;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  blockquote,
  figure,
  table,
  pre {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  h2,
  h3 {
    break-after: avoid;
    page-break-after: avoid;
  }
  p {
    orphans: 3;
    widows: 3;
  }
  img {
    max-width: 100% !important;
  }
  pre {
    white-space: pre-wrap;
    border: 1px solid #aaa;
  }
}
