@charset "utf-8";

/* ===========================
   SevenTicket Dark Board Skin
   (기존 구조/클래스 그대로, 색/보더/폰트만 덮어씀)
   =========================== */

:root {
  /* 팔레트 */
  --bg-0: #0f1622; /* 페이지 배경과 유사(참조만, body엔 적용 안함) */
  --bg-1: #141b27; /* 카드/박스 */
  --bg-2: #1c2433; /* 헤더/툴바 */
  --bg-3: #1d2534; /* 인풋/버튼 베이스 */
  --line-1: #232e40; /* 기본 보더 */
  --line-2: #2c3546; /* 테이블 보더 */
  --text-0: #fff; /* 기본 글자 */
  --text-1: #fff; /* 보조 글자 */
  --pri: #f0a64a; /* 포커스/링크 */
  --pri-weak: rgba(77, 161, 255, 0.12);
  --acc: #f0a64a; /* 테이블 헤더 하단 라인(스크린샷의 오렌지) */
  --ok: #37d0c8;
  --warn: #ff484f;
}

/* 공통 박스 */
#bo_list,
#bo_v,
#bo_w,
#bo_vc {
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--bg-1) !important;
  border: 1px solid var(--line-1) !important;
  border-radius: 12px;
  color: var(--text-0);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* ---------------------------
   목록 (list)
---------------------------- */
#bo_list {
  position: relative;
}
#bo_list:after {
  content: '';
  display: block;
  clear: both;
}

#bo_btn_top {
  margin: 8px 0;
}
#bo_btn_top:after {
  content: '';
  display: block;
  clear: both;
}
#bo_list_total {
  float: left;
  line-height: 34px;
  font-size: 0.92em;
  color: var(--text-1);
}

.btn_bo_user {
  float: right;
  list-style: none;
  margin: 0;
  padding: 0;
}
.btn_bo_user > li {
  position: relative;
  float: left;
  margin-left: 8px;
}
.btn_bo_user li a,
.btn_bo_user li button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  min-width: 40px;
  padding: 0 12px;
  background: var(--bg-3);
  color: var(--text-0);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  transition: 0.18s;
}
.btn_bo_user li a:hover,
.btn_bo_user li button:hover {
  background: var(--pri);
  color: #fff;
  border-color: var(--pri);
}

.more_opt {
  display: none;
  position: absolute;
  top: 42px;
  right: 0;
  z-index: 999;
  background: var(--bg-1);
  border: 1px solid var(--line-1);
  border-radius: 8px;
  overflow: hidden;
}
.more_opt:before {
  content: '';
  position: absolute;
  top: -8px;
  right: 13px;
  border: 6px solid transparent;
  border-bottom-color: var(--line-1);
}
.more_opt:after {
  content: '';
  position: absolute;
  top: -7px;
  right: 13px;
  border: 6px solid transparent;
  border-bottom-color: var(--bg-1);
}
.more_opt li {
  width: 140px;
  padding: 10px;
  border-bottom: 1px solid var(--line-1);
  color: var(--text-1);
}
.more_opt li:last-child {
  border-bottom: 0;
}
.more_opt li a,
.more_opt li button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: inherit;
}
.more_opt li:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-0);
}

.tbl_head01 {
  background: transparent;
}
.tbl_head01 table {
  width: 100%;
  border-collapse: collapse;
}
.tbl_head01 caption {
  display: none;
}
.tbl_head01 thead th {
  background: var(--bg-2);
  color: var(--text-1);
  font-weight: 600;
  height: 44px;
  border-bottom: 2px solid var(--acc) !important;
}
.tbl_head01 td {
  height: 48px;
  border-bottom: 1px solid var(--line-2) !important;
  color: var(--text-0);
}
#bo_list tbody tr {
  border-left: 2px solid transparent;
}
#bo_list tbody tr:hover {
  border-left: 2px solid var(--pri);
  background: rgba(255, 255, 255, 0.02);
}
#bo_list tbody .even td {
  background: transparent;
}

#bo_list .td_board {
  width: 120px;
  text-align: center;
}
#bo_list .td_chk {
  width: 34px;
  text-align: center;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
#bo_list .td_date,
#bo_list .td_datetime {
  width: 90px;
  text-align: center;
}
#bo_list .td_group,
#bo_list .td_mb_id {
  width: 120px;
  text-align: center;
}
#bo_list .td_mng {
  width: 80px;
  text-align: center;
}
#bo_list .td_name {
  width: 140px;
  text-align: center;
  padding: 10px 0;
}
#bo_list .td_nick {
  width: 120px;
  text-align: center;
}
#bo_list .td_num,
#bo_list .td_num2 {
  width: 70px;
  text-align: center;
}
#bo_list .td_numbig {
  width: 90px;
  text-align: center;
}

.td_num strong {
  color: #fff;
}
.td_subject img {
  margin-left: 5px;
}
.bo_tit {
  display: block;
  color: #fff;
  font-weight: 700;
}
.bo_current {
  color: var(--warn);
}

.bo_notice td {
  background: var(--pri-weak) !important;
  border-bottom: 1px solid var(--pri) !important;
}
.bo_notice td a {
  font-weight: 700;
}
.bo_notice .notice_icon {
  display: inline-block;
  line-height: 24px;
  border-radius: 6px;
  font-weight: 700;
  color: #ffd6e8;
}

/* 카테고리 */
#bo_cate {
  margin: 16px 0;
}
#bo_cate h2 {
  position: absolute;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
#bo_cate ul:after {
  content: '';
  display: block;
  clear: both;
}
#bo_cate li {
  display: inline-block;
  padding: 2px;
}
#bo_cate a {
  display: block;
  line-height: 28px;
  padding: 5px 14px;
  border-radius: 24px;
  border: 1px solid var(--line-1);
  color: var(--text-1);
  background: var(--bg-1);
}
#bo_cate a:hover,
#bo_cate a:active {
  background: var(--pri);
  color: #fff;
  border-color: var(--pri);
}
#bo_cate #bo_cate_on {
  background: var(--pri);
  color: #fff;
  font-weight: 700;
  border: 1px solid var(--pri);
  box-shadow: inset 0 2px 5px rgba(33, 135, 202, 0.7);
}
.bo_cate_link {
  float: left;
  margin-right: 10px;
  background: rgba(77, 161, 255, 0.15);
  color: var(--pri);
  height: 24px;
  line-height: 0;
  padding: 12px 8px;
  border-radius: 6px;
  font-size: 0.95em;
}
#bo_list .cnt_cmt {
  background: rgba(77, 161, 255, 0.14);
  color: var(--pri);
  font-size: 11px;
  height: 18px;
  line-height: 18px;
  padding: 0 6px;
  border-radius: 4px;
}

/* 체크박스 */
.selec_chk {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  outline: 0;
  z-index: -1;
  overflow: hidden;
}
.chk_box {
  position: relative;
}
.chk_box input[type='checkbox'] + label {
  position: relative;
  color: var(--text-1);
  cursor: pointer;
}
.chk_box input[type='checkbox'] + label:hover {
  color: var(--pri);
}
.chk_box input[type='checkbox'] + label span {
  position: absolute;
  top: -10px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: transparent;
  border: 1px solid var(--line-2);
}
.write_div .chk_box input[type='checkbox'] + label,
.bo_vc_w .chk_box input[type='checkbox'] + label {
  padding-left: 22px;
}
.chk_box input[type='checkbox']:checked + label {
  color: #fff;
}
.chk_box input[type='checkbox']:checked + label span {
  background: var(--pri);
  border-color: var(--pri);
}

/* 검색 오버레이 */
.bo_sch_wrap {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
}
.bo_sch_bg {
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
}
.bo_sch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  max-height: 360px;
  background: var(--bg-1);
  border: 1px solid var(--line-1);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}
.bo_sch h3 {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-1);
  color: var(--text-0);
}
.bo_sch form {
  padding: 14px 16px;
}
.bo_sch select {
  width: 100%;
  height: 40px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  background: var(--bg-3);
  color: var(--text-0);
}
.bo_sch .sch_bar {
  margin-top: 12px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  background: var(--bg-3);
  display: flex;
  align-items: center;
}
.bo_sch .sch_input {
  flex: 1;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--text-0);
  padding: 0 10px;
}
.bo_sch .sch_btn {
  width: 42px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--text-1);
  font-size: 16px;
}
.bo_sch .bo_sch_cls {
  position: absolute;
  right: 0;
  top: 0;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  color: var(--text-1);
}

/* ---------------------------
   보기 (view)
---------------------------- */
#bo_v_table {
  position: absolute;
  top: 0;
  right: 16px;
  margin: 0;
  padding: 0 8px;
  height: 25px;
  background: #ff3061;
  color: #fff;
  font-weight: 700;
  line-height: 25px;
  border-radius: 4px;
}

#bo_v_title .bo_v_cate {
  display: inline-block;
  line-height: 20px;
  background: rgba(77, 161, 255, 0.15);
  color: var(--pri);
  padding: 0 10px;
  border-radius: 6px;
}
#bo_v_title .bo_v_tit {
  display: block;
  font-size: 1.6em;
  margin: 6px 0 0;
  color: var(--pri);
  word-break: break-all;
}

#bo_v_info {
  margin: 0;
  border-bottom: 1px solid var(--line-1);
  color: var(--text-1);
  display: flex;
  justify-content: space-between; /* 왼쪽: 프로필 / 오른쪽: 버튼 */
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

#bo_v_info .profile_info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 10px;
}

#bo_v_info .profile_info .pf_img img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

#bo_v_info .profile_info .profile_info_ct {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.4;
  color: var(--text-1);
}

/* 이름 */
#bo_v_info .profile_info .profile_info_ct strong:first-child {
  font-weight: 700;
  color: var(--text-0);
}

/* 댓글 + 조회수 한 줄 정렬 */
#bo_v_info .profile_info .profile_info_ct .info_line {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}

#bo_v_info .profile_info .profile_info_ct .info_line strong {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-1);
}

/* 아이콘 색상 */
#bo_v_info .profile_info .profile_info_ct .info_line i.fa-comments {
  color: var(--pri);
}

#bo_v_info .profile_info .profile_info_ct .info_line i.fa-eye {
  color: var(--ok);
}

/* 오른쪽 버튼 정렬 */
#bo_v_info #bo_v_top {
  margin-top: 12px;
  margin-left: auto;
}

#bo_v_info .btn_bo_user li a,
#bo_v_info .btn_bo_user li button {
  border-radius: 8px;
  transition: 0.18s;
}

#bo_v_info .btn_bo_user li a:hover,
#bo_v_info .btn_bo_user li button:hover {
  background: var(--pri);
  border-color: var(--pri);
  color: #fff;
}

#bo_v_atc {
  min-height: 200px;
}
#bo_v_con {
  margin: 12px 0 26px;
  line-height: 1.7;
  color: var(--text-0);
  word-break: break-all;
}
#bo_v_con a {
  color: var(--pri);
  text-decoration: underline;
}
#bo_v_con img {
  max-width: 100%;
  height: auto;
}

#bo_v_img {
  width: 100%;
  overflow: hidden;
}
#bo_v_img img {
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
}

#bo_v_share {
  position: relative;
  padding: 14px 0;
}
#bo_v_share:after {
  content: '';
  display: block;
  clear: both;
}
#bo_v_share .btn {
  padding: 0 10px;
  height: 35px;
  line-height: 35px;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  background: var(--bg-3);
  color: var(--text-0);
  font-weight: 500;
}
#bo_v_share .btn:hover {
  background: var(--pri);
  color: #fff;
  border-color: var(--pri);
}

#bo_v_act {
  margin-bottom: 26px;
  text-align: center;
}
#bo_v_act a {
  display: inline-block;
  margin-right: 6px;
  min-width: 84px;
  line-height: 42px;
  border: 1px solid var(--line-2);
  border-radius: 24px;
  background: var(--bg-3);
  color: var(--text-0);
  transition: 0.18s;
}
#bo_v_act a:hover {
  background: #fff;
  color: var(--warn);
  border-color: var(--warn);
}
#bo_v_act .bo_v_good {
  width: 90px;
}
#bo_v_act .bo_v_nogood {
  width: 90px;
}
#bo_v_act_good,
#bo_v_act_nogood {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 9;
  padding: 10px 0;
  width: 165px;
  background: #ff3061;
  color: #fff;
  text-align: center;
}

.bo_v_nb {
  margin: 16px 0;
  clear: both;
}
.bo_v_nb li {
  border-top: 1px solid var(--line-1);
  padding: 12px;
}
.bo_v_nb li:last-child {
  border-bottom: 1px solid var(--line-1);
}
.bo_v_nb li:hover {
  background: rgba(255, 255, 255, 0.02);
}
.bo_v_nb li .nb_tit,
.bo_v_nb li .nb_date {
  display: inline-block;
  min-width: 90px; /* "이전글" / "다음글" 라벨 폭 확보 */
  color: var(--text-1);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.bo_v_nb li a {
  flex: 1;
  margin-left: 16px; /* 제목과 라벨 사이 간격 */
  color: var(--text-0);
  line-height: 1.6;
  text-decoration: none;
}

.bo_v_nb li a:hover {
  color: var(--pri);
}

#bo_v_file h2,
#bo_v_link h2 {
  position: absolute;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
#bo_v_file ul,
#bo_v_link ul {
  margin: 0;
  list-style: none;
  padding: 0;
}
#bo_v_file li,
#bo_v_link li {
  padding: 14px;
  margin: 10px 0;
  border: 1px solid var(--line-1);
  border-radius: 8px;
  background: var(--bg-1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
#bo_v_file li i,
#bo_v_link li i {
  float: left;
  color: var(--text-1);
  font-size: 2.2em;
  margin-right: 18px;
}
#bo_v_file a,
#bo_v_link a {
  float: left;
  color: #fff;
}
#bo_v_file a:hover,
#bo_v_link a:hover {
  color: var(--pri);
  text-decoration: underline;
}
#bo_v_file .bo_v_file_cnt,
#bo_v_link .bo_v_link_cnt {
  color: var(--text-1);
}

/* ---------------------------
   댓글 (comment)
---------------------------- */
.cmt_btn {
  width: 100%;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line-1);
  background: transparent;
  font-weight: 700;
  margin: 26px 0 10px;
  padding: 0 0 14px;
  color: var(--text-0);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 댓글 수 (total) */
.cmt_btn span.total {
  position: relative;
  display: inline-block;
  font-size: 1em;
  font-weight: 700;
  color: var(--pri);
  letter-spacing: 0.2px;
}

.cmt_btn span.total::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--pri);
  border-radius: 2px;
}

/* ▼ 댓글 열기/닫기 아이콘 (Font Awesome 사용) */
.cmt_btn span.cmt_more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 4px;
  color: var(--pri);
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 14px;
  background: none;
  cursor: pointer;
  transition: transform 0.25s ease, color 0.2s ease;
}

/* 기본 닫힘 상태 ↓ */
.cmt_btn span.cmt_more::before {
  content: '\f078'; /* fa-chevron-down */
}

/* 열림 상태 ↑ */
.cmt_btn_op span.cmt_more::before {
  content: '\f077'; /* fa-chevron-up */
}

.cmt_btn span.cmt_more:hover {
  color: #fff;
  transform: scale(1.15);
}

#bo_vc h2 {
  position: absolute;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
#bo_vc article {
  margin: 18px 0;
  position: relative;
  border-bottom: 1px solid var(--line-1);
}
#bo_vc article:after {
  content: '';
  display: block;
  clear: both;
}
#bo_vc article .pf_img {
  float: left;
  margin-right: 10px;
}
#bo_vc article .pf_img img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
#bo_vc article .cm_wrap {
  float: left;
  max-width: 870px;
  width: 90%;
}
#bo_vc header {
  position: relative;
  width: 100%;
  color: var(--ok);
}
#bo_vc .cmt_contents {
  line-height: 1.8;
  padding: 0 0 18px;
  color: var(--text-0);
}
#bo_vc p a {
  color: var(--pri);
  text-decoration: underline;
}
#bo_vc p a.s_cmt {
  color: #ed6479;
}
#bo_vc_empty {
  padding: 80px 0 !important;
  color: var(--text-1);
  text-align: center;
}

.bo_vc_act {
  display: none;
  position: absolute;
  right: 0;
  top: 40px;
  width: 120px;
  text-align: right;
  border: 1px solid var(--line-1);
  list-style: none;
  background: var(--bg-1);
  z-index: 9999;
  border-radius: 8px;
  overflow: hidden;
}
.bo_vc_act:before {
  content: '';
  position: absolute;
  top: -8px;
  right: 8px;
  border: 6px solid transparent;
  border-bottom-color: var(--line-1);
}
.bo_vc_act:after {
  content: '';
  position: absolute;
  top: -7px;
  right: 8px;
  border: 6px solid transparent;
  border-bottom-color: var(--bg-1);
}
.bo_vc_act li {
  border-bottom: 1px solid var(--line-1);
}
.bo_vc_act li:last-child {
  border-bottom: 0;
}
.bo_vc_act li a {
  display: block;
  padding: 10px 14px;
  color: var(--text-1);
}
.bo_vc_act li a:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

/* 댓글쓰기 */
.bo_vc_w {
  position: relative;
  margin: 10px 0;
  display: block;
}
.bo_vc_w:after {
  content: '';
  display: block;
  clear: both;
}
.bo_vc_w #char_cnt {
  display: block;
  margin: 0 0 6px;
  color: var(--text-1);
}
.bo_vc_w textarea {
  width: 100%;
  height: 120px;
  padding: 10px;
  border-radius: 8px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  color: var(--text-0);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
}
.bo_vc_w .btn_submit {
  height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 700;
  background: var(--pri);
  color: #fff;
  border: 0;
}
.bo_vc_w .btn_submit:hover {
  filter: brightness(1.07);
}
.secret_cm label {
  font-size: 1em !important;
}

/* 댓글쓰기 입력줄 정렬 (이름 + 비밀번호 한줄, 그 아래 캡챠) */
.bo_vc_w_info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 이름 + 비밀번호 한 줄 가로 배치 */
.bo_vc_w_info .guest_inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bo_vc_w_info .guest_inputs input {
  flex: 1 1 160px;
  height: 40px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  color: var(--text-0);
  padding: 0 10px;
}

/* 캡챠는 아래 줄 가로정렬 */
.bo_vc_w_info #captcha,
.bo_vc_w_info #captcha_box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bo_vc_w_info #captcha img,
.bo_vc_w_info #captcha_box img {
  height: 42px;
  border-radius: 6px;
  border: 1px solid var(--line-2);
}

.bo_vc_w_info #captcha input[type='text'],
.bo_vc_w_info #captcha_box input[type='text'] {
  width: 90px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  background: var(--bg-3);
  color: var(--text-0);
  text-align: center;
}

/* ---------------------------
   쓰기 (write)
---------------------------- */
#char_count_desc {
  margin: 0 0 6px;
}
#char_count_wrap {
  text-align: right;
  margin: 6px 0 0;
}
#char_count {
  font-weight: 700;
}

#autosave_wrapper {
  position: relative;
}
#autosave_pop {
  display: none;
  position: absolute !important;
  top: 38px;
  right: 0;
  z-index: 10;
  width: 350px;
  max-height: 200px;
  background: var(--bg-1);
  border: 1px solid var(--line-1);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}
#autosave_pop ul {
  padding: 14px;
  list-style: none;
  height: 140px;
  overflow: auto;
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
}
#autosave_pop li {
  padding: 8px 6px;
  border-bottom: 1px solid var(--line-1);
  background: rgba(255, 255, 255, 0.02);
}
.autosave_close {
  cursor: pointer;
  width: 100%;
  height: 32px;
  background: transparent;
  color: var(--text-1);
  font-weight: 700;
}

#bo_w .write_div {
  margin: 10px 0;
  position: relative;
}
#bo_w .bo_w_info .frm_input {
  float: left;
  margin-bottom: 1%;
}
#bo_w #wr_password,
#bo_w #wr_homepage {
  margin-left: 1%;
}
#bo_w .bo_w_tit .frm_input {
  padding-right: 120px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  color: var(--text-0);
  border-radius: 8px;
  height: 40px;
}
#bo_w .bo_w_tit #btn_autosave {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 30px;
  line-height: 30px;
  background: var(--bg-3);
  color: var(--text-0);
  border: 1px solid var(--line-2);
  border-radius: 6px;
}
#bo_w .bo_w_tit #btn_autosave:hover {
  background: var(--pri);
  color: #fff;
  border-color: var(--pri);
}

#bo_w .wr_content.smarteditor2 iframe {
  background: var(--bg-3);
}
#bo_w .bo_w_select select {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  background: var(--bg-3);
  color: var(--text-0);
}

#bo_w .bo_w_link label {
  position: absolute;
  top: 1px;
  left: 1px;
  height: 38px;
  line-height: 38px;
  width: 40px;
  font-size: 1.1em;
  text-align: center;
  color: var(--text-1);
}
#bo_w .bo_w_link .frm_input {
  padding-left: 50px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  color: var(--text-0);
  border-radius: 8px;
  height: 40px;
}

#bo_w .bo_w_flie .lb_icon {
  position: absolute;
  top: 0;
  left: 0;
  height: 38px;
  line-height: 38px;
  width: 40px;
  text-align: center;
  color: var(--text-1);
}
#bo_w .bo_w_flie .frm_file {
  padding-left: 50px;
  margin-top: 3px;
  color: var(--text-1);
}
#bo_w .bo_w_flie .file_wr {
  position: relative;
  border: 1px solid var(--line-1);
  background: var(--bg-3);
  color: var(--text-0);
  border-radius: 8px;
  padding: 5px;
  height: 40px;
  margin: 0;
}
#bo_w .bo_w_flie .frm_input {
  margin: 10px 0 0;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  color: var(--text-0);
  border-radius: 8px;
  height: 40px;
}
#bo_w .bo_w_flie .file_del {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.92em;
  color: var(--text-1);
}

#bo_w .btn_submit,
#bo_w .btn_cancel {
  padding: 0 20px;
  height: 44px;
  font-size: 1.06em;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  background: var(--bg-3);
  color: var(--text-0);
  font-weight: 700;
}
#bo_w .btn_submit {
  background: var(--pri);
  border-color: var(--pri);
  color: #fff;
}
#bo_w .btn_submit:hover {
  filter: brightness(1.07);
}
#bo_w .btn_cancel:hover {
  color: var(--pri);
  border-color: var(--pri);
}

/* 아이콘/상징 */
#bo_list .bo_tit .fa-lock {
  display: inline-block;
  width: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 3px;
  background: #203a45;
  border: 1px solid #2a5561;
  color: #8ad3e3;
  font-size: 12px;
  vertical-align: middle;
}
#bo_list .bo_tit .new_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pri);
  color: #0d111a;
  box-shadow: 0 0 8px rgba(240, 166, 74, 0.6);
  vertical-align: middle;
}
#bo_list .bo_tit .hot_icon {
  display: inline-block;
  width: 16px;
  line-height: 16px;
  border-radius: 3px;
  background: #4a2525;
  color: #ff8080;
  vertical-align: middle;
}
#bo_list .bo_tit .fa-download {
  display: inline-block;
  width: 16px;
  line-height: 16px;
  border-radius: 3px;
  margin-left: 5px;
  background: #4a4022;
  color: #ffd87a;
  vertical-align: middle;
}
#bo_list .bo_tit .fa-link {
  display: inline-block;
  width: 16px;
  line-height: 16px;
  border-radius: 3px;
  margin-left: 5px;
  background: #3c2c56;
  color: #d5b9ff;
  vertical-align: middle;
}

@media (max-width: 768px) {
  /* 헤더 + 본문 모두 글쓴이, 날짜 숨김 */
  #bo_list th.l_name,
  #bo_list th.l_date,
  #bo_list td.td_name,
  #bo_list td.td_datetime {
    display: none;
  }

  /* 제목 확장 */
  #bo_list .td_subject {
    width: auto;
  }
}
