@charset "UTF-8";
/* reset.css - Modern Cross-Browser Reset (2025 Edition) */

/* 1. Box sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin, padding */
body, h1, h2, h3, h4, h5, h6, p, blockquote,
dl, dd, ol, ul, figure, hr, fieldset, legend, pre {
  margin: 0;
  padding: 0;
}

/* 3. Set base font and background */
html, body {
    width:100;
  font-size: 100%;
  font-family: sans-serif;
  line-height: 1.5;
  background-color: #fff;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 4. Lists */
ul, ol {
  list-style: none;
}

/* 5. Links */
a {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
}
a:active, a:hover {
  outline: none;
}

/* 6. Images, media */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

/* 7. Forms */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  outline: none;
  appearance: none;
}
button {
  cursor: pointer;
  background: transparent;
}
textarea {
  resize: vertical;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/* 8. Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 9. Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/* 10. Quotes */
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
  content: none;
}

/* 11. Buttons */
button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0;
  font-family: inherit;
}

/* 12. Address special mobile tap highlight */
a, button, input, textarea, select {
  -webkit-tap-highlight-color: transparent;
}

/* 13. Custom root font-scaling for rem-based design */
:root {
  font-size: 16px; /* easy rem calculation */
}

/* 14. Set consistent focus styles */
:focus-visible {
  outline: 2px dashed #555;
  outline-offset: 2px;
}

/* 15. Remove scrollbars in Webkit on inputs/textareas (optional) */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
