/* ============================================================================
   [V2] 차량 표준 대여료 보기 - 토글 영역 스타일
   ============================================================================
   - 회색 박스 + 헤더 클릭 토글
   - 표 스타일은 엑셀 이미지 참조 (헤더 노란빛, "시간당" 컬럼은 강조 박스)
   - 모바일 대응 : 좁은 화면에서 가로 스크롤
   ============================================================================ */

/* ----------------------------------------------------------------
   섹션 컨테이너 (기존 page-sub.css 의 .section 와 충돌하지 않게 max-width 등 그대로 사용)
   ---------------------------------------------------------------- */
.standard-fee-section {
    /* 다른 섹션과 간격 맞춤 - 필요시 페이지 스타일에 맞게 조정 */
    padding: 0;
}

.standard-fee-section .contents {
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px 15px 0;
}

/* ----------------------------------------------------------------
   회색 박스 본체
   ---------------------------------------------------------------- */
.standard-fee-box {
    background-color: #F5F5F5;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    overflow: hidden;
}

/* ----------------------------------------------------------------
   토글 헤더 (클릭 영역)
   ---------------------------------------------------------------- */
.standard-fee-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.15s ease;
}

.standard-fee-header:hover {
    background-color: #EEEEEE;
}

.standard-fee-box.open .standard-fee-header {
    background-color: #ECECEC;
    border-bottom: 1px solid #E0E0E0;
}

.standard-fee-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    letter-spacing: -0.3px;
}

.standard-fee-arrow {
    font-size: 12px;
    color: #888;
    transition: transform 0.2s ease;
}

/* ----------------------------------------------------------------
   토글 본문
   ---------------------------------------------------------------- */
.standard-fee-body {
    padding: 16px 20px 20px;
    background-color: #FFFFFF;
}

/* VAT 안내 문구 (우측 정렬) */
.standard-fee-vat {
    text-align: right;
    color: #E52F45;
    font-weight: 600;
    font-size: 13px;
    margin: 0 0 8px;
}

/* ----------------------------------------------------------------
   가격표
   ---------------------------------------------------------------- */
.standard-fee-table-wrap {
    overflow-x: auto;     /* 모바일 가로 스크롤 */
    -webkit-overflow-scrolling: touch;
}

.standard-fee-table {
    width: 100%;
    min-width: 720px;     /* 좁아져도 가독성 유지 */
    border-collapse: collapse;
    font-size: 13px;
    color: #333;
}

/* 헤더 */
.standard-fee-table thead th {
    background-color: #FFF6CC;       /* 엑셀 이미지의 노란빛 헤더 */
    color: #333;
    font-weight: 600;
    padding: 10px 6px;
    border: 1px solid #E0E0E0;
    text-align: center;
    white-space: nowrap;
}

/* 시간당 컬럼은 강조 (파란 톤) */
.standard-fee-table thead th.col-hour {
    background-color: #E8F1FB;
    color: #2A6FCB;
}

/* 본문 셀 */
.standard-fee-table tbody td {
    padding: 10px 6px;
    border: 1px solid #E0E0E0;
    text-align: center;
    background-color: #FFFFFF;
}

/* 차종 셀 (rowspan) - 좌측 회색 톤 */
.standard-fee-table tbody td.cat-cell {
    background-color: #F4F8FC;
    font-weight: 600;
    color: #2A6FCB;
}

/* 차량명 셀은 좌측 정렬 */
.standard-fee-table tbody td.car-name {
    text-align: center;
    color: #333;
    font-weight: 400;
}

/* 시간당 컬럼은 본문도 파란 글씨로 */
.standard-fee-table tbody td.col-hour {
    color: #2A6FCB;
    font-weight: 600;
    background-color: #FAFCFF;
}

/* 행 hover */
.standard-fee-table tbody tr:hover td {
    background-color: #FCFCFC;
}
.standard-fee-table tbody tr:hover td.cat-cell {
    background-color: #ECF3FA;
}
.standard-fee-table tbody tr:hover td.col-hour {
    background-color: #F0F6FC;
}

/* ----------------------------------------------------------------
   모바일 대응
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
    .standard-fee-header {
        padding: 12px 16px;
    }
    .standard-fee-title {
        font-size: 14px;
    }
    .standard-fee-body {
        padding: 12px 12px 16px;
    }
    .standard-fee-table {
        font-size: 12px;
    }
    .standard-fee-table thead th,
    .standard-fee-table tbody td {
        padding: 8px 4px;
    }
}