/**
 * ╔══════════════════════════════════════════════════════════════════════════╗
 * ║  ⚠️  DO NOT MODIFY THIS FILE DIRECTLY!  ⚠️                                ║
 * ╠══════════════════════════════════════════════════════════════════════════╣
 * ║  This file is part of the techdoc npm package.                          ║
 * ║  Changes here will be OVERWRITTEN when techdoc is updated.              ║
 * ║                                                                          ║
 * ║  HOW TO CUSTOMIZE CSS:                                                   ║
 * ║  1. ALL visual styling goes in YOUR site's styles.css                   ║
 * ║  2. Override any techdoc CSS with higher specificity                    ║
 * ║  3. Use CSS custom properties (--var-name) for theming                  ║
 * ║                                                                          ║
 * ║  Example in your styles.css:                                            ║
 * ║    .nav { background: var(--color-bg); }  /* Override nav bg */
 * ╚══════════════════════════════════════════════════════════════════════════╝
 *
 * techdoc reset.css
 * Minimal CSS reset NO colors, NO typography choices
 */

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

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  text-decoration-skip-ink: auto;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
