/* ===== 비급여항목 페이지 ===== */
.cost_page {
    padding: 120px 0;
    background: #fff;
}

.cost_table_wrap {
    overflow-x: auto;
}

.cost_table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

/* 대제목: 비급여항목 */
.cost_table .cost_main_header th {
    background: #335c7e;
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.6;
    letter-spacing: -0.44px;
    text-align: center;
    padding: 12px 8px;
}

/* 섹션 헤더: 제증명 수수료, 렌즈 및 보장구, 행위료 */
.cost_table .cost_section_header td {
    background: #5a90bd;
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.6;
    letter-spacing: -0.44px;
    text-align: center;
    padding: 10px 8px;
}

/* 컬럼 헤더: 구분, 비용(원) */
.cost_table .cost_col_header td {
    background: #ecf2f7;
    border: 1px solid #c7d9e9;
    color: #404040;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.36px;
    text-align: center;
    padding: 8px;
}

/* 일반 데이터 행 */
.cost_table tbody tr td {
    border-bottom: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    color: #404040;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.36px;
    text-align: center;
    padding: 8px;
}

.cost_table tbody tr td:first-child {
    border-left: 1px solid #e5e5e5;
}

.cost_table tbody tr td:last-child {
    border-right: 1px solid #e5e5e5;
}

/* 모바일 반응형 */
@media screen and (max-width: 768px) {
    .cost_page {
        padding: 60px 20px;
    }

    .cost_table .cost_main_header th {
        font-size: 18px;
        padding: 10px 6px;
    }

    .cost_table .cost_section_header td {
        font-size: 18px;
        padding: 8px 6px;
    }

    .cost_table .cost_col_header td,
    .cost_table tbody tr td {
        font-size: 14px;
        padding: 6px 4px;
    }
}
