/* ----------------------------------------
   MINIMAL RESET
   Normalize browser defaults for consistent component rendering.
   Intentionally minimal — only resets that affect component styling.
---------------------------------------- */

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

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

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

table {
  border-collapse: collapse;
  width: 100%;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}
