/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --background: #f8fafc;
  --foreground: #111827;
}

html {
  height: 100%;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  display: flex;
}

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

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

input, select, textarea {
  font-size: 16px;
}

.nav-links {
  align-items: center;
  gap: 6px;
  display: flex;
}

.nav-toggle-label {
  display: none;
}

@media (max-width: 640px) {
  .nav-links {
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px 20px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 4px 12px #00000014;
  }

  .nav-links.nav-links-open {
    display: flex;
  }

  .nav-toggle-label {
    display: inline-flex;
  }
}

/*# sourceMappingURL=src_app_globals_162hn9o.css.map*/