/* buildnyc-shared.css — Universal reset and base styles for all buildnyc.ai app pages */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}

input, textarea, select {
  font: inherit;
}

img, svg {
  display: block;
  max-width: 100%;
}

/* Global thin scrollbar base — components override width/color via local CSS vars */
* {
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-track {
  background: transparent;
}
