@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url('/material-symbols.v1.woff2') format('woff2');
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* 사이트 공통 테마 스크롤바 (데스크탑) — 기본 회색 대체 */
* {
  scrollbar-width: thin;
  scrollbar-color: #8BAA9A transparent;
}
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background: #8BAA9A;
  border-radius: 6px;
  border: 2px solid transparent;
  background-clip: content-box;
}
*::-webkit-scrollbar-thumb:hover {
  background: #4A6B56;
  background-clip: content-box;
}
*::-webkit-scrollbar-corner {
  background: transparent;
}
body.dark-mode * {
  scrollbar-color: #4A6B56 transparent;
}
body.dark-mode *::-webkit-scrollbar-thumb {
  background: #3D5A48;
  background-clip: content-box;
}
body.dark-mode *::-webkit-scrollbar-thumb:hover {
  background: #5A7D67;
  background-clip: content-box;
}
