/* ===============================
   base.css
   Reset + Global Base
   (절대 디자인/레이아웃 안 함)
================================ */

/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* ===== Body ===== */
body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont,
               'Segoe UI', Roboto, 'Apple SD Gothic Neo',
               'Noto Sans KR', Arial, sans-serif;
  font-size: 14px;
  color: #1e293b;
  background: #f8fafc;
  line-height: 1.5;
}

/* ===== Link ===== */
a {
  color: inherit;
  text-decoration: none;
}

/* ===== List ===== */
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ===== Image ===== */
img {
  max-width: 100%;
  display: block;
}

/* ===== Button Reset ===== */
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ===== Input Reset ===== */
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* ===== Table Reset ===== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ===== Scrollbar (공통) ===== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}
