/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
/* 전역 기반 — Asana 참조 리뉴얼 · 애플그린 액센트. 토큰 원본: lib/theme.ts */
:root {
  --brand: #3f9142;
  --brand-strong: #2f7a34;
  --brand-tint: #eaf6ea;
  --brand-text: #256128;
  --bg: #ffffff;
  --surface: #ffffff;
  --line: #ededed;
  --ink: #1e1f21;
  --sub: #6d6e6f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.1px;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

a {
  color: inherit;
}

::selection {
  background: #cdeccb;
  color: #16321a;
}

/* 접근성 포커스 링 — 애플그린 */
:where(button, a, input, select, textarea):focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(63, 145, 66, 0.2);
}

/* 부드러운 스크롤바 */
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-thumb {
  background: #d6dccf;
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: content-box;
}
*::-webkit-scrollbar-thumb:hover {
  background: #c2c9ba;
  background-clip: content-box;
}

