/* /* ==========================================================================
   Soft Lightweight CSS Reset
   A modern, minimal reset that normalizes inconsistencies without being
   overly aggressive about removing useful browser defaults.
   ========================================================================== */

/* Box sizing normalization */
/* *,
*::before,
*::after {
  box-sizing: border-box;
}

Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
}

/* Document defaults */
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* Respect user's motion preferences
@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;
  }
} */

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Media defaults */
/* img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
} */

/* Form elements */


button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* Improved focus visibility for accessibility */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}


/* Semantic text elements */
strong,
b {
  font-weight: 700;
}


code,
kbd,
samp,
pre {
  font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace;
  font-size: 0.9em;
}

