@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #f8fafc;
}

/* 로딩 스피너 애니메이션 */
.loader {
    border-top-color: #4f46e5;
    animation: spinner 1.5s linear infinite;
}

@keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 다크 모드 기본 대응 */
.dark body {
    background-color: #0f172a; /* slate-900 */
    color: #f1f5f9; /* slate-100 */
}

.scrollbar-none::-webkit-scrollbar {
    display: none;
}
.scrollbar-none {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
