/**/

:root {
    --header-height: 56px;
    --side-padding: 0px;
    --icon-size: 24px;
}

body {
    min-width: 360px;
    margin: 0;
}

/* 헤더 전체 */
.app-header {
    display: flex;
    /*display: none;*/
    align-items: center;
    justify-content: space-between; /* 좌/중앙 제목(가운데 요소) / 우 */
    /*height: var(--header-height);*/
    /*padding: 0 var(--side-padding);*/
    height: 56px;
    padding: 0 0;
    box-sizing: border-box;
    border-bottom: 1px solid #e6e6e6;
    background: #fff;
    position: relative;
}

/* 좌측 버튼(아이콘) */
.header-left {
    display: flex;
    align-items: center;
    min-width: 44px; /* 터치 대상 확보 */
    height: 100%;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    border-radius: 8px;
    color: #666;
}

.btn-icon:active {
    transform: scale(0.98);
}

/* 제목을 가운데로 고정 (flex 중앙 요소) */
.header-title {
    position: absolute; /* 중앙 고정용 — 화면 중앙에 정확히 배치 */
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 600;
    white-space: nowrap;
    /*max-width: calc(100% - 160px); !* 좌우 여백 확보 *!*/
    max-width: calc(100% - 80px); /* 좌우 여백 확보 */
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
}

/* 오른쪽 빈 요소: 왼쪽 버튼과 균형을 맞추기 위해 같은 너비 유지 */
.header-right {
    min-width: 44px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden; /* 눈에 보이지 않지만 공간은 차지 */
}

/* 반응형 예시(작게 줄이면 아이콘/텍스트 크기 조정) */
@media (max-width: 360px) {
    .header-title {
        /*font-size: 15px;*/
    }

    :root {
        /*--header-height: 52px;*/
    }

    .app-header {
        /*height: 52px;*/
    }
}

.accordion-section .accordion .question {
    margin: 20px 20px;
}

.accordion-section .accordion .question::after {
    top: 22px;
    width: 24px;
    height: 24px;
    right: 8px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="black" d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"/></svg>');
}

.contents {
    padding: 10px !important;
    width: auto;
    height: auto;
}

.content_title {
    text-align: center;
    font-size: 27px;
    line-height: 1.2em;
}

.p_tag_def {
    margin: 0;
    /*line-height: 1.5em;*/
}

.p_tag_pad {
    font-size: 8px;
}

.p_tag_bold {
    font-weight: 500;
}

.title_tr_01 {
    /*text-align: center;*/
    word-break:break-all;
}

td.col-1 {
    width: 30%;
}

td.col-2 {
    width: 70%;
}

.title_tr_01 td {
    padding: 4px;
}
