/* 공통 스타일 초기화 및 기본 설정 */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f3f4f6;
  color: #1f2937;
}

body {
  margin: 0;
  font-family: inherit;
  background-color: var(--surface, #f3f4f6);
  color: inherit;
}

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

button {
  font-family: inherit;
}

