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

body {
    font-family: 'Noto Sans KR', sans-serif;
}

/* 스크롤바 커스텀 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
 
::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

/* 사이드바 메뉴 활성화 스타일 */
.nav-item.active {
    background-color: #2563eb; /* blue-600 */
    color: white;
}

.nav-item.active i {
    color: white;
}

/* 테이블 스타일 보정 */
.table-container {
    overflow-x: auto;
}