:root {
  color-scheme: light dark;
  --background: light-dark(#fff, #161a20);
  --surface: light-dark(#f5f7fa, #202630);
  --text: light-dark(#27313e, #e8edf4);
  --muted: light-dark(#667182, #a1adbf);
  --rule: light-dark(#e4e9ef, #333c49);
  --link: light-dark(#1764b4, #82bbfa);
  --hover: light-dark(#eef5fd, #222f41);
  background: var(--background);
  color: var(--text);
  font: 400 14px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
body { max-width: 1024px; margin: 0 auto; padding: 32px 36px 24px; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
header { padding-bottom: 29px; }
h1 { margin: 0; font: inherit; }
.brand { display: inline-flex; align-items: center; gap: 12px; max-width: 100%; font-size: 23px; line-height: 1.2; font-weight: 500; letter-spacing: -.6px; color: var(--text); }
.brand:hover { color: var(--link); text-decoration: none; }
.brand img { display: block; object-fit: contain; width: 52px; height: 52px; flex: 0 0 auto; }
.brand .packages { font-weight: 400; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; font-size: 13px; overflow-wrap: anywhere; }
.breadcrumbs .separator { color: var(--muted); }
.breadcrumbs a { padding: 3px 0; }
.breadcrumbs a[aria-current="page"] { color: var(--text); font-weight: 500; }
.directory { container-type: inline-size; border: 1px solid var(--rule); border-radius: 9px; overflow: hidden; }
table { width: 100%; border-collapse: collapse; table-layout: fixed; }
thead { background: var(--surface); }
th { padding: 11px 15px; font-size: 12px; font-weight: 400; text-align: left; color: var(--muted); border-bottom: 1px solid var(--rule); }
td { padding: 7px 15px; border-bottom: 1px solid var(--rule); vertical-align: middle; }
tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: var(--hover); }
.entry { display: flex; align-items: center; gap: 11px; min-width: 0; color: var(--text); }
.entry:hover { color: var(--link); }
.entry span { overflow-wrap: anywhere; }
.entry-details { min-width: 0; }
.entry-icon { width: 17px; height: 17px; flex: 0 0 auto; fill: none; stroke: var(--muted); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.folder .entry-icon { stroke: var(--link); fill: var(--hover); }
.parent { color: var(--muted); }
.modified { width: 160px; color: var(--muted); font-size: 12px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.modified-inline { display: none; color: var(--muted); font-size: 11px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.size { width: 104px; text-align: right; font-size: 12px; font-variant-numeric: tabular-nums; color: var(--muted); white-space: nowrap; }
.empty { color: var(--muted); }
.pagination { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 18px; font-size: 12px; color: var(--muted); }
.pagination:empty { display: none; }
@media (scripting: none) {
  .pagination { display: none; }
}
.pagination-top { margin-top: 0; margin-bottom: 14px; }
.page-links { display: flex; align-items: center; flex-wrap: wrap; gap: 5px; }
.page-link { display: inline-flex; align-items: center; justify-content: center; min-width: 30px; min-height: 30px; padding: 4px 8px; border: 1px solid transparent; border-radius: 5px; }
a.page-link:hover { background: var(--hover); text-decoration: none; }
.page-link[aria-current] { background: var(--hover); border-color: var(--rule); font-weight: 500; }
.page-link[aria-disabled] { opacity: .35; }
.page-gap { min-width: 20px; text-align: center; }
.icon-definitions { position: absolute; overflow: hidden; }
@media (max-width: 540px) {
  body { padding: 24px 16px 20px; }
  .brand { font-size: 21px; }
  .breadcrumbs { gap: 5px; }
  th, td { padding-left: 10px; padding-right: 10px; }
  .size { width: 80px; font-size: 11px; }
  .entry { gap: 8px; font-size: 13px; }
  .pagination { flex-direction: column; align-items: stretch; gap: 6px; }
  .page-count { text-align: center; }
  .page-links { justify-content: center; flex-wrap: nowrap; gap: 3px; }
  .pagination .page-links .page-link { flex: 0 1 44px; min-width: 0; min-height: 44px; padding-inline: 4px; }
  .page-gap { flex: 0 0 12px; min-width: 0; }
}
@media (pointer: coarse) {
  td { padding-top: 12px; padding-bottom: 12px; }
  .breadcrumbs a { padding-top: 10px; padding-bottom: 10px; }
  .pagination .page-link { min-height: 44px; min-width: 44px; }
}
@container (max-width: 520px) {
  th.modified, td.modified { display: none; }
  .modified-inline { display: block; margin: 2px 0 0 28px; }
}

/* Shared by the introduction and directory pages. */
header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.guide-link { font-size: 12px; padding: 8px 0; }
a:focus-visible, pre:focus-visible { outline: 2px solid var(--link); outline-offset: 4px; border-radius: 3px; }
h2 { margin: 0 0 12px; font-size: 20px; font-weight: 500; letter-spacing: -.3px; }
p { margin: 0 0 16px; }
p a:not(.browse-link) { text-decoration: underline; text-underline-offset: 3px; }
.intro { margin: 0 0 24px; max-width: 700px; }
.lead { font-size: 17px; line-height: 1.6; }
.browse-link { display: inline-flex; align-items: center; gap: 18px; min-height: 44px; padding: 8px 14px; background: var(--hover); border: 1px solid var(--rule); border-radius: 6px; font-weight: 500; }
.release-note { max-width: 620px; color: var(--muted); font-size: 13px; }
.setup { max-width: 760px; }
code { font: .9em/1.65 ui-monospace, SFMono-Regular, Consolas, monospace; overflow-wrap: anywhere; }
pre { max-width: 100%; margin: 18px 0; padding: 18px 20px; border: 1px solid var(--rule); border-radius: 9px; background: var(--surface); overflow-x: auto; }
pre code { font-size: 12px; overflow-wrap: normal; }
footer a { display: inline-flex; align-items: center; min-height: 44px; }
footer { margin-top: 32px; padding-top: 12px; border-top: 1px solid var(--rule); font-size: 12px; }
footer nav { display: flex; flex-wrap: wrap; gap: 4px 24px; }
footer a { color: var(--muted); }
@media (max-width: 540px) {
  .intro { margin-bottom: 20px; }
  .lead { font-size: 16px; }
  pre { padding: 12px; }
  footer nav { column-gap: 20px; }
}

.setup-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--rule); margin-bottom: 16px; }
.setup-tabs button { font: inherit; color: var(--muted); background: transparent; border: 0; border-bottom: 2px solid transparent; padding: 10px 16px; min-height: 44px; cursor: pointer; }
.setup-tabs button[aria-selected="true"] { color: var(--link); border-bottom-color: var(--link); }
.setup-tabs button:focus-visible { outline: 2px solid var(--link); outline-offset: -4px; border-radius: 3px; }
.tab-detail { font-size: 12px; }
.setup-tool { font-size: 16px; font-weight: 500; }
@media (scripting: enabled) {
  .setup-panel[data-inactive], .setup-tool { display: none; }
}
@media (scripting: none) {
  .setup-tabs, .copy-button { display: none; }
}

.repository { border-top: 1px solid var(--rule); padding-top: 24px; }
.repository-heading { margin-bottom: 18px; }
.repository-heading h2 { margin-bottom: 6px; }
.repository-heading p { margin: 0 0 14px; color: var(--muted); }
.repository .release-note { margin-bottom: 28px; }
.setup h3 { font-size: 17px; font-weight: 500; margin: 0 0 12px; }
.code-block { margin: 18px 0; border: 1px solid var(--rule); border-radius: 9px; background: var(--surface); overflow: hidden; }
.code-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 12px; border-bottom: 1px solid var(--rule); font-size: 12px; color: var(--muted); }
.code-block pre { border: 0; border-radius: 0; margin: 0; }
.copy-button { min-width: 78px; min-height: 32px; padding: 4px 10px; border: 1px solid var(--rule); border-radius: 5px; background: var(--background); color: var(--link); font: inherit; cursor: pointer; }
.copy-button:hover { background: var(--hover); }
.copy-button:focus-visible { outline: 2px solid var(--link); outline-offset: 2px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.more-information { max-width: 760px; margin-top: 28px; }
@media (pointer: coarse) {
  .copy-button { min-height: 44px; }
}
