<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* 공통 스타일 정의 - 그누보드 게시판 스킨 */

/* 기본 레이아웃 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 공통 게시판 컨테이너 스타일 */
#bo_list, #bo_v, #bo_w {
    position: relative;
    margin-bottom: 30px;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
}

/* 공통 버튼 스타일 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    height: 40px;
    border-radius: 5px;
    background: var(--input-bg);
    color: var(--body-color);
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.btn i {
    font-size: 1.1rem;
    margin-right: 5px;
}

.btn_submit {
    background: var(--accent-color);
    color: white;
    font-weight: 600;
}

.btn_submit:hover {
    background: var(--button-hover);
    box-shadow: 0 3px 8px rgba(93, 95, 239, 0.25);
}

.btn_cancel {
    background: var(--input-bg);
    color: var(--body-color);
}

.btn_cancel:hover {
    background: var(--border-color);
}

/* 아이콘 버튼 스타일 */
.icon_btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10%;
    background: var(--input-bg);
    color: var(--secondary-color);
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
    position: relative;
}

.icon_btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.icon_btn i {
    font-size: 1.1rem;
}

/* 공통 폼 요소 스타일 */
.frm_input {
    width: 100%;
    height: 45px;
    padding: 0 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    background: var(--input-bg);
    color: var(--body-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.frm_input:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(93, 95, 239, 0.15);
}

/* 공통 체크박스 스타일 */
.chk_box {
    position: relative;
}

.chk_box input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.chk_box input[type="checkbox"] + label {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    font-weight: normal;
    color: var(--body-color);
}

.chk_box input[type="checkbox"] + label span {
    position: absolute;
    top: -15px;
    left: 0;
    width: 18px;
    height: 18px;
    display: block;
    background: var(--card-bg) !important; /* 강제 배경색 적용 */
    border: 1px solid var(--accent-color) !important; /* 테두리 색상 강조 */
    border-radius: 3px;
    transition: all 0.3s ease;
}

.chk_box input[type="checkbox"]:checked + label span {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.chk_box input[type="checkbox"]:checked + label span:after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    color: white;
    position: absolute;
    top: 0;
    left: 3px;
}

/* 공통 텍스트 영역 스타일 */
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--input-bg);
    color: var(--body-color);
    font-size: 1rem;
    line-height: 1.5;
    resize: vertical;
    transition: all 0.3s ease;
}

textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(93, 95, 239, 0.15);
}

/* 공통 페이지네이션 스타일 */
.pg_wrap {
    margin-top: 20px;
    text-align: center;
}

.pg_page, .pg_current {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: var(--input-bg);
    color: var(--body-color);
    text-align: center;
    margin: 0 2px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pg_page:hover {
    background: var(--accent-color);
    color: white;
}

.pg_current {
    background: var(--accent-color);
    color: white;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(93, 95, 239, 0.3);
}

/* 공통 더보기 메뉴 스타일 */
.more_opt {
    display: none;
    position: absolute;
    top: 45px;
    right: 0;
    z-index: 999;
    width: 150px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.more_opt:before {
    content: "";
    position: absolute;
    top: -8px;
    right: 13px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 8px 6px;
    border-color: transparent transparent var(--card-bg) transparent;
}

.more_opt li {
    border-bottom: 1px solid var(--border-color);
}

.more_opt li:last-child {
    border-bottom: 0;
}

.more_opt li a, 
.more_opt li button {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px;
    background: transparent;
    color: var(--body-color);
    font-size: 0.9rem;
    text-align: left;
    border: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.more_opt li a:hover, 
.more_opt li button:hover {
    background: var(--input-bg);
    color: var(--accent-color);
}

.more_opt li a i, 
.more_opt li button i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

/* 자동등록 방지 영역 개선 스타일 */
.captcha_wrap {
    margin: 15px 0;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--input-bg);
}

#captcha {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

#captcha legend {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
}

/* CAPTCHA 이미지와 입력 필드를 나란히 배치 */
#captcha #captcha_img {
    flex: 0 0 auto;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    vertical-align: middle;
}

#captcha #captcha_key {
    flex: 1;
    min-width: 150px;
    height: 40px; /* 이미지와 동일한 높이 */
    padding: 0 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--card-bg);
    font-size: 1rem;
    color: var(--body-color);
    vertical-align: middle;
}

/* 오디오 및 새로고침 버튼 스타일 */
#captcha_audio {
    display: flex;
    gap: 5px;
}

#captcha #captcha_mp3,
#captcha #captcha_reload {
    flex: 0 0 auto;
    padding: 0 12px;
    height: 40px; /* 이미지와 동일한 높이 */
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--body-color);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    vertical-align: middle;
}

#captcha #captcha_mp3:hover,
#captcha #captcha_reload:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* 공통 아이콘 스타일 */
.notice_icon {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--accent-second);
    color: white;
    font-size: 0.8rem;
    margin-right: 5px;
}

.new_icon {
    display: inline-block;
    margin-left: 5px;
    padding: 2px 6px;
    border-radius: 3px;
    background: var(--success-color);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    vertical-align: middle;
}

/* 공통 프로필 이미지 스타일 */
.pf_img {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.pf_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 숨김 요소 */
.sound_only {
    display: inline-block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0;
    line-height: 0;
    border: 0 !important;
    overflow: hidden !important;
}

/* 반응형 스타일 */
@media (max-width: 992px) {
    #bo_list, #bo_v, #bo_w {
        width: 95% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 768px) {
    #bo_list, #bo_v, #bo_w {
        width: 98% !important;
        border-radius: 8px;
    }
    
    /* 모바일에서 CAPTCHA 최적화 */
    #captcha {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        grid-gap: 10px;
    }
    
    #captcha #captcha_img {
        grid-column: 1;
        grid-row: 1;
        height: 38px;
    }
    
    #captcha #captcha_key {
        grid-column: 2;
        grid-row: 1;
        height: 38px;
    }
    
    #captcha_audio {
        grid-column: 1 / span 2;
        grid-row: 2;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    
    #captcha #captcha_mp3,
    #captcha #captcha_reload {
        height: 38px;
        padding: 0 10px;
    }
    
    .btn_confirm .btn_cancel,
    .btn_confirm .btn_submit {
        width: 100%;
        margin: 0 0 10px 0;
    }
}

@media (max-width: 576px) {
    #bo_list, #bo_v, #bo_w {
        width: 100% !important;
        border-radius: 6px;
        box-shadow: 0 2px 5px var(--shadow);
    }
    
    .container {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    
    /* 매우 작은 화면에서도 CAPTCHA 레이아웃 유지 */
    #captcha {
        display: grid;
        grid-template-columns: auto 1fr;
    }
    
    #captcha #captcha_mp3,
    #captcha #captcha_reload {
        font-size: 0.85rem;
    }
}

/* 특별히 모든 CAPTCHA 입력 필드에 동일한 높이 적용 */
input[type="text"][name="captcha_key"], 
.captcha_box, 
#captcha_key { 
    height: 40px !important; 
    min-height: 40px !important; 
}

/* 댓글 영역 CAPTCHA 스타일 일관성 유지 */
.comment_form .captcha_wrap {
    background: transparent;
    border: none;
    padding: 10px 0;
}

.comment_form #captcha #captcha_img,
.comment_form #captcha #captcha_key,
.comment_form #captcha #captcha_mp3,
.comment_form #captcha #captcha_reload {
    height: 38px;
}</pre></body></html>