/* ==========================================================================
   reset.css — Minimal CSS Reset
   ERP CFA Branding — Shared Infrastructure
   ========================================================================== */

/* Box sizing for all elements */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
}

/* Body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Images and media: prevent overflow */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Inherit fonts on form elements */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove list styles on ul/ol with a list role */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Smooth anchor scrolling */
html:focus-within {
  scroll-behavior: smooth;
}

/* Remove animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
