@charset "utf-8";

/* ==========================================================================
   온라인 상담예약(문의하기) 게시판 전용 스킨 스타일
   목록/작성/상세 화면은 Tailwind 유틸리티 클래스로 스타일링했고,
   이 파일은 (1) 커스텀 입력 컴포넌트 .bdys-input, (2) 관리자 전용 댓글
   화면(view_comment.skin.php, 원본 그대로 유지)에 대한 최소 스타일을 담당한다.
   ========================================================================== */

/* 입력 컴포넌트 */
#bo_w .bdys-input {
    box-sizing: border-box;
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: 1px solid #E5DFD3;
    background: #fff;
    padding: 0 16px;
    font-size: 16px;
    font-family: 'Pretendard', 'Outfit', system-ui, sans-serif;
    color: #2B2621;
    outline: none;
    appearance: none;
    transition: border-color .2s, box-shadow .2s;
}
#bo_w .bdys-input:focus {
    border-color: #DB7233;
    box-shadow: 0 0 0 3px rgba(219,114,51,0.12);
}
#bo_w select.bdys-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%235B534A'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 40px;
}
#bo_w .wr_content textarea {
    width: 100%;
    min-height: 160px;
    border-radius: 14px;
    border: 1px solid #E5DFD3;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    color: #2B2621;
}
#bo_w .wr_content textarea:focus { outline: none; border-color: #DB7233; box-shadow: 0 0 0 3px rgba(219,114,51,0.12); }

/* 캡챠 */
#bo_w #captcha { display: inline-block; }
#bo_w #captcha_img { border-radius: 10px; }
#bo_w #captcha_key { height: 44px; border-radius: 10px; border: 1px solid #E5DFD3; padding: 0 12px; margin-left: 8px; }

/* ===== 관리자 전용 댓글 화면 (view_comment.skin.php) ===== */
.cmt_btn { width: 100%; text-align: left; border: 0; border-bottom: 1px solid #EFE9DC; background: #fff; font-weight: 700; margin: 24px 0 0; padding: 0 0 14px; cursor: pointer; }
.cmt_btn span.total { display: inline-block; margin-right: 5px; font-size: 15px; color: #DB7233; }
.cmt_btn b { font-size: 17px; color: #2B2621; }
.cmt_btn span.cmt_more { float: right; }

#bo_vc { max-width: none; }
#bo_vc article { margin: 18px 0; position: relative; border-bottom: 1px solid #EFE9DC; padding-bottom: 14px; }
#bo_vc article .pf_img { float: left; margin-right: 10px; }
#bo_vc article .pf_img img { border-radius: 50%; width: 40px; height: 40px; }
#bo_vc article .cm_wrap { float: left; max-width: calc(100% - 50px); width: 90%; }
#bo_vc header { position: relative; width: 100%; font-size: 14px; color: #5B534A; }
#bo_vc .bo_vc_hdinfo { color: #9c9488; margin-left: 8px; }
#bo_vc .cmt_contents { line-height: 1.7; padding: 8px 0 6px; font-size: 15px; color: #2B2621; }
#bo_vc_empty { margin: 0; padding: 48px 0 !important; color: #9c9488; text-align: center; }
#bo_vc .bo_vl_opt { position: absolute; top: 0; right: 0; }
#bo_vc .btn_cm_opt { background: none; border: 0; color: #9c9488; cursor: pointer; }
.bo_vc_act { display: none; position: absolute; right: 0; top: 30px; width: 90px; border: 1px solid #E5DFD3; background: #fff; border-radius: 10px; overflow: hidden; z-index: 50; }
.bo_vc_act li a { display: block; padding: 8px 12px; font-size: 13px; color: #5B534A; }
.bo_vc_act li a:hover { background: #FBF7EF; color: #DB7233; }

.bo_vc_w { position: relative; margin: 14px 0; }
.bo_vc_w textarea { border: 1px solid #E5DFD3; background: #fff; color: #2B2621; border-radius: 14px; padding: 12px 16px; width: 100%; height: 100px; font-size: 15px; font-family: inherit; }
.bo_vc_w_info { margin: 10px 0; }
.bo_vc_w_info .frm_input { margin-right: 6px; }
.bo_vc_w .btn_confirm { margin-top: 10px; display: flex; align-items: center; gap: 10px; }
.bo_vc_w .btn_submit { height: 42px; padding: 0 18px; border-radius: 999px; background: #DB7233; color: #fff; font-weight: 600; border: 0; cursor: pointer; }
.secret_cm { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: #5B534A; }
