


/* =======================
   검색 영역
======================= */
.boardSearchArea {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.searchBox {
    position: relative;
    width: 280px;
}

.searchBox input {
    width: 100%;
    height: 38px;
    padding: 0 44px 0 14px;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    font-size: 14px;
}

.searchBox .btnSearch {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    /*background: none;*/
    cursor: pointer;
    font-size: 16px;
}

/* 검색 버튼 (돋보기 아이콘) */
.btnSearch {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;

    border: none;
    background: url("/images/ico_small_search.png") no-repeat center;
    background-size: contain;

    cursor: pointer;
    padding: 0;
}


/* hover 효과 (선택) */
.btnSearch:hover {
    opacity: 0.7;
}


/* =======================
   게시판 테이블
======================= */
.boardTable {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.boardTable thead th {
    padding: 14px 10px;
    border-bottom: 2px solid #000;
    font-weight: 600;
    font-size: 14px;
}

.boardTable tbody td {
    padding: 16px 10px;
    border-bottom: 1px solid #e6e6e6;
    font-size: 14px;
    color: #333;
}

.boardTable tbody tr {
    cursor: pointer;
}

.boardTable tbody tr:hover {
    background-color: #f7f9fc;
}

/* 컬럼 정렬 */
.boardTable th:nth-child(1),
.boardTable td:nth-child(1) {
    width: 80px;
    text-align: center;
}

.boardTable th:nth-child(2),
.boardTable td:nth-child(2) {
    width: 160px;
    text-align: center;
    white-space: nowrap;  /* 줄바꿈 방지 */
}

.boardTable th:nth-child(3),
.boardTable td:nth-child(3) {
    text-align: center;
}


.boardTable th:nth-child(4),
.boardTable td:nth-child(4) {
    width: 140px;
    text-align: center;
    color: #888;
}

/* =======================
   페이징
======================= */
.pagingArea {
    margin-top: 30px;
    text-align: center;
}

.pagingArea a,
.pagingArea span {
    display: inline-block;
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    margin: 0 4px;
    border-radius: 6px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.pagingArea a:hover {
    background-color: #f0f0f0;
}

.pagingArea .active {
    background-color: #2563eb;
    color: #fff;
    font-weight: 600;
}


/* =========================
   비밀번호 입력 전용 화면
========================= */

/* main은 높이만 책임진다 */
.support.pw-page {
    min-height: calc(100vh - 260px); /* header + footer */
}

/* 중앙 정렬은 section에서 */
.support.pw-page .supportIntro {
    min-height: calc(100vh - 260px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 비밀번호 입력 박스 */
.support.pw-page .pw-inner {
    width: 360px;
    padding: 40px 30px;
    box-sizing: border-box;
}

/* 입력 UI */
.support.pw-page .pw-inner input {
    width: 100%;
    height: 38px;
    margin-bottom: 12px;
    padding: 0 10px;
}

.support.pw-page .pw-inner button {
    width: 100%;
    height: 38px;
    margin-top: 8px;
}


/* =========================
   비밀번호 입력 UI - 클라우드 기술지원 문의 스타일 통일
========================= */

.support.pw-page .pw-inner {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* 타이틀 */
.support.pw-page .pw-inner .titleArea h2 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

/* 입력창 */
.support.pw-page .pw-inner input[type="password"] {
    height: 40px;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.support.pw-page .pw-inner input[type="password"]:focus {
    border-color: #2563eb;
    outline: none;
}

/* 버튼 공통 */
.support.pw-page .pw-inner button {
    height: 40px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* 확인 버튼 (Primary) */
.support.pw-page #btnConfirm {
    background-color: #2563eb;
    color: #fff;
    border: none;
}

.support.pw-page #btnConfirm:hover {
    background-color: #1e4fd8;
}

/* 취소 버튼 (Secondary) */
.support.pw-page #btnCancel {
    background-color: #fff;
    color: #333;
    border: 1px;
}
