@charset "UTF-8";
/* ENHANCED CSS RESET */
html {
  height: 100%;
  line-height: 1.15;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

/* Comprehensive element reset */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, ul, li, blockquote, a, address, cite, code, em, img, small, form, label, article, aside, canvas, header, nav, main, footer, audio, video, pre {
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

*.no-scrollbar {
  scrollbar-width: none;
}
*.no-scrollbar::-webkit-scrollbar {
  width: 0px;
}
*.no-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
*.no-scrollbar::-webkit-scrollbar-thumb {
  background-color: transparent;
  border: 1px solid transparent;
}

/* Body improvements */
body {
  min-height: 100%;
  text-rendering: optimizeSpeed;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, main, nav, section, summary {
  display: block;
}

/* List reset */
ol, ul, li {
  list-style: none;
}

/* Quote reset */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: none;
}

/* Image improvements */
img {
  height: auto;
  display: block;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}

/* Media elements */
audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

/* SVG improvements */
svg {
  fill: currentColor;
}

/* Link improvements */
a {
  cursor: pointer;
  background-color: transparent;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a * {
  cursor: pointer;
}

a:focus {
  border: 0;
  outline: none;
}

a:link, a:visited, a:active {
  text-decoration: none;
}

/* Button improvements */
button {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  background: transparent;
}

/* Form element improvements */
button, input, label, select, textarea {
  border: 0;
  margin: 0;
  padding: 0;
  outline: none;
  font-family: inherit;
}

button:focus, input:focus, label:focus, select:focus, textarea:focus {
  border: none;
  outline: none;
}

/* Remove default button styles in Safari */
button, [type=button], [type=reset], [type=submit] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

/* Input improvements */
input::-ms-reveal, input::-ms-clear {
  display: none;
}

/* Remove search input styling */
input[type=search] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  appearance: none;
  -webkit-appearance: none;
}

/* Number input arrows removal */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

input[type=number] {
  -webkit-appearance: textfield;
          appearance: textfield;
  -moz-appearance: textfield;
}

/* Textarea improvements */
textarea {
  overflow: auto;
  resize: vertical;
}

/* Autofill styling */
input:-webkit-autofill,
textarea:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
  caret-color: #313131;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 0 0 1000px #313131 inset !important;
  -webkit-box-shadow: 0 0 0 1000px #313131 inset !important;
}

/* Progress element */
progress {
  vertical-align: baseline;
}

/* Details element */
details {
  display: block;
}

summary {
  cursor: pointer;
  display: list-item;
}

[contenteditable] {
  outline: none; /* Remove blue focus outline */
  border: none; /* Remove default border */
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
  background: transparent;
  color: inherit;
  font: inherit; /* Use parent font */
  letter-spacing: inherit;
  white-space: nowrap; /* Optional – behave like input */
}

[contenteditable]:focus {
  outline: none;
}

/* Template element */
template {
  display: none;
}

/* Hidden attribute */
[hidden] {
  display: none !important;
}

/* Accessibility improvements */
[aria-busy=true] {
  cursor: progress;
}

[aria-disabled=true] {
  cursor: not-allowed;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
  }
}
/* Utility classes */
[data-hidden=true] {
  display: none;
}

.no-scroll {
  height: 100vh !important;
  overflow: hidden !important;
}

/* Screen reader only content */
.sr-only {
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
}

/* Focus visible improvements for better accessibility */
:focus-visible {
  outline-offset: 2px;
  outline: 2px solid currentColor;
}

/* Remove focus outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}