/* ======================
   기본 스타일 및 폰트
   ====================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    background-color: #0F0F0F;
    color: #FFFFFF;
}

/* ======================
   스크롤바 커스터마이징
   ====================== */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444444;
}

/* ======================
   입력창 포커스 효과
   ====================== */

.input-focus:focus {
    outline: none;
    box-shadow: 0 0 0 2px #00FF00;
}
