/* =========================================================
   SHARED BASE RESET
   Minimal global reset — normalize cross-browser inconsistencies
========================================================= */

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

/* Remove default margins on common elements */
html,
body {
  margin: 0;
  padding: 0;
}

/* Normalize images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Normalize button appearance */
button {
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

/* Normalize input elements */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}
