/* pico-compact.css — include AFTER pico.min.css */
/* Scales down typography, spacing, and form controls */

:root {
  --pico-font-size: 14px;
  --pico-line-height: 1.5;
  --pico-form-element-spacing-vertical: 0.375rem;
  --pico-form-element-spacing-horizontal: 0.625rem;
  --pico-border-radius: 4px;
  --pico-spacing: 0.875rem;
  --pico-typography-spacing-vertical: 0.875rem;
  --pico-nav-element-spacing-vertical: 0.75rem;
  --pico-nav-element-spacing-horizontal: 0.75rem;
  --pico-nav-link-spacing-vertical: 0.375rem;
  --pico-nav-link-spacing-horizontal: 0.75rem;
}

/* --- Typography scale --- */

h1 { font-size: 1.75rem; }
h2 { font-size: 1.375rem; }
h3 { font-size: 1.125rem; }
h4 { font-size: 1rem; }
h5 { font-size: 0.9rem; }
h6 { font-size: 0.825rem; }

p, ul, ol, dl, blockquote, pre, figure { margin-bottom: 0.875rem; }

small { font-size: 0.8em; }

/* --- Form controls --- */

input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
select,
textarea,
button,
[role="button"],
[type="submit"],
[type="reset"],
[type="button"] {
  font-size: 0.875rem;
  padding: var(--pico-form-element-spacing-vertical) var(--pico-form-element-spacing-horizontal);
  min-height: unset;
  height: auto;
}

/* Checkboxes and radios */
[type="checkbox"],
[type="radio"] {
  width: 1rem;
  height: 1rem;
}

/* Range */
[type="range"] {
  height: 1rem;
}

/* Select arrow */
select:not([multiple]):not([size]) {
  background-size: 0.875rem auto;
  padding-right: 2rem;
}

/* Labels */
label {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

/* Helper/hint text */
small:is(:not(sup)) {
  font-size: 0.775rem;
}

/* --- Fieldset / Form groups --- */

fieldset {
  padding: 0.75rem 0.875rem;
  margin-bottom: 0.875rem;
}

fieldset legend {
  font-size: 0.875rem;
  font-weight: 600;
}

/* --- Table --- */

table {
  font-size: 0.875rem;
}

th, td {
  padding: 0.5rem 0.625rem;
}

/* --- Code / Pre --- */

pre, code, kbd, samp {
  font-size: 0.825rem;
}

pre {
  padding: 0.75rem 1rem;
}

/* --- Article / Card-like containers --- */

article {
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

/* --- Details / Summary --- */

details {
  margin-bottom: 0.875rem;
}

details summary {
  font-size: 0.875rem;
  padding: 0.375rem 0;
}

/* --- Nav --- */

nav li a,
nav li [role="link"] {
  font-size: 0.875rem;
}

/* --- Progress --- */

progress {
  height: 0.5rem;
}

/* --- Dialogs --- */

dialog article {
  padding: 1rem 1.25rem;
}

dialog article > header,
dialog article > footer {
  padding: 0.75rem 1.25rem;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

dialog article > header {
  margin-top: -1rem;
  margin-bottom: 1rem;
}

dialog article > footer {
  margin-bottom: -1rem;
  margin-top: 1rem;
}
