/* 전역 폰트 설정 */
* {
    font-family: 'Noto Sans KR', sans-serif;
}

/* 기본 폰트 크기 설정 */
html {
    font-size: 14px;  /* 기본 폰트 사이즈 */
}

/* 제목 크기 설정 */
h1 {
    font-size: 24px;
    font-weight: 600;
}

h2 {
    font-size: 20px;
    font-weight: 600;
}

h3 {
    font-size: 18px;
    font-weight: 500;
}

/* 테이블 폰트 설정 */
.table {
    font-size: 14px;
}

.table th {
    font-weight: 500;
}

/* 폼 요소 폰트 설정 */
.form-control, .form-select {
    font-size: 14px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
}

/* 버튼 폰트 설정 */
.btn {
    font-size: 14px;
}

/* 카드 컴포넌트 폰트 설정 */
.card-title {
    font-size: 18px;
    font-weight: 600;
}

.card-header {
    font-size: 16px;
    font-weight: 500;
}