.byun_content {
    border-top: none; /* 상단 보더 제거 */
      background-color: #f7f8f9; 
}
	
.byun_viyong {
    max-width: 1000px; /* PC 최대 폭 제한 */
    width: 100%;       /* 모바일에서는 화면에 맞게 100% */
    padding: 40px 20px 60px;
    margin: 0 auto;
    box-sizing: border-box; /* 패딩이 폭에 영향을 주지 않도록 설정 */

} /* background-color: #f3f4f8*/

/* 헤더 영역 스타일 */
.table-header {
    text-align: center;
    margin-bottom: 35px;
}

.table-header h1 {
    font-size: 30px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-align: left;
}

.table-header p {
    font-size: 17px;
    color: #495057;
    font-weight: 400;
    text-align: left;
}

/* 테이블 스타일 */
.table-responsive {
    width: 100%;
    overflow-x: auto; /* 모바일 화면 가로 스크롤 보호 */
    -webkit-overflow-scrolling: touch;
    background-color: #ffffff;
    /* 드롭 쉐도우 및 라운드 효과 없음 */
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.cost-table th, 
.cost-table td {
    padding: 14px 12px;
    border: 1px solid #dee2e6; /* 모노톤의 깔끔한 경계선 */
    font-size: 15px;
    color: #343a40;
    vertical-align: middle;
    line-height: 1.5;
    font-family: 'Pretendard', sans-serif;
    word-break: keep-all; /* 단어 단위 줄바꿈 */
    text-align: center;
}

/* 헤더 행 스타일 */
.cost-table th {
    background-color: #e9ecef; /* 가독성을 높이는 톤다운된 회색 헤더 */
    font-weight: 600;
    color: #212529;
}

/* 구분(대분류) 열 스타일 */
.cost-table td.category {
    background-color: #f8f9fa; /* 본문과 구분되는 연한 회색 */
    font-weight: 600;
    color: #495057;
}

/* 유틸리티 스타일 클래스 */
.text-left {
    text-align: left !important;
    padding-left: 15px !important;
}

.sub-text {
    color: #6c757d;
    font-size: 13px;
    display: block;
    margin-top: 5px;
    font-weight: 400;
}

.text-gray {
    color: #868e96;
}

.text-alert {
    color: #dc3545; /* 회색조와 잘 어우러지는 차분한 레드 포인트 */
    font-weight: 500;
    display: block;
    margin-top: 4px;
    font-size: 13px;
}

/* 하단 푸터 고지 영역 */
.table-footer {
    background-color: #e9ecef;
    padding: 20px;
    text-align: center;
    margin-top: 35px;
    border-radius: 0px;
}

.table-footer p {
    font-size: 15px;
    color: #495057;
    line-height: 1.6;
    word-break: keep-all;
    margin: 4px 0;
}

.table-footer strong {
    font-weight: 700;
    color: #212529;
}

/* 모바일 및 태블릿 반응형 최적화 (화면 폭 768px 이하일 때) */
@media screen and (max-width: 768px) {
    .byun_viyong {
        padding: 25px 15px 40px;
    }
    
    .table-header {
        margin-bottom: 25px;
    }

    .table-header h1 {
        font-size: 24px;
    }
    
    .table-header p {
        font-size: 15px;
    }
    
    .cost-table th, 
    .cost-table td {
        padding: 12px 8px;
        font-size: 13px; /* 모바일 틀어짐 방지 */
    }
    
    .sub-text {
        font-size: 11px;
    }
    
    .table-footer p {
        font-size: 12px;
    }
}