@charset "utf-8";

#bo_w{
  margin-bottom: 50px!important;
}

/* 서브비주얼이 없는 데스크톱 글쓰기 화면에서 고정 헤더 높이 확보 */
@media (min-width: 821px) {
  body:not(:has(.sub_visual)) #bo_w {
    padding-top: calc(var(--header-height, 90px) + 40px);
  }
}
/* === LIST COLUMN CONFIG (여기 값만 바꾸세요) === */
#bo_list{
  --w-chk: 5%;
  --w-num: 6%;
  --w-name: 10%;
  --w-date: 12%;
  --w-subject-min: 200px; /* 제목 최소폭 */
}

#fboardlist {
  max-width: var(--layout-width);
  margin: 0 auto;
}
#bo_list_admin {
  width: var(--layout-width);
  margin: 0 auto;
}
#bo_sch {
  width: var(--layout-width);
  margin: 0 auto;
}
/* 게시판 표 - 전체 구조 */
.tbl_head01 table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px; /* 행 사이 여백 */
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-table-text);
  font-family: var(--font-main);
}

/* 게시판 각 행 디자인 */
.tbl_head01 tbody tr {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  border-radius: 8px;
}

/* hover 시 부드럽게 떠오름 효과 */
.tbl_head01 tbody tr:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transform: translateY(-2px);
  background-color: var(--color-table-highlight);
}

.tbl_head01 tbody tr td {
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.tbl_head01 tbody tr:hover td:first-child {
  border-left: 3px solid var(--color-main);
}
.tbl_head01 tbody tr:hover td:last-child {
  border-right: 3px solid var(--color-main);
}
/* 셀 여백 및 테두리 부드럽게 */
.tbl_head01 td, .tbl_head01 th {
  padding: 20px 0;
  border: none;
}

/* 헤더 셀만 하단 테두리 추가 */
.tbl_head01 thead th {
  font-weight: 600;
  color: #555;
  font-size: 14px;
}

/* 공지사항 강조 */
.bo_notice td {
  background: var(--color-table-notice);
  font-weight: bold;
}

/* 댓글 수 배지 */
.cnt_cmt {
  background: var(--color-sub-3);
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 20px;
  margin-left: 6px;
}

/* 게시판 목록 */
#bo_list {position:relative;margin-bottom:20px}
#bo_list:after {display:block;visibility:hidden;clear:both;content:""}
#bo_list .td_board {width:120px;text-align:center}
/* 게시판 목록 열 리팩토링 — variables 매핑 */
#bo_list .td_chk{
  width: var(--w-chk);
  min-width: 30px;
  text-align: center;
}

/* 내부 요소(.chk_box)는 폭 지정 제거 권장 — 열폭은 td로만 제어 */
#bo_list .chk_box{
  /* width: 2%;  ← 삭제/주석 처리 */
  min-width: 30px;
  text-align: center;
  padding-left: 10px !important;
}

#bo_list .td_num,
#bo_list .td_num2{
  width: var(--w-num);
  min-width: 50px;
  text-align: center;
}

#bo_list .td_name,
#bo_list .td_nick{
  width: var(--w-name);
  min-width: 80px;
  text-align: center;
}

#bo_list .td_date,
#bo_list .td_datetime{
  width: var(--w-date);
  min-width: 80px;
  text-align: center;
}

/* 제목은 나머지 폭 자동/유동 */
#bo_list .td_subject{
  width: auto;
  min-width: var(--w-subject-min);
  max-width: 100%;
  word-break: break-word;
}


#bo_list .td_group,
#bo_list .td_mb_id,
#bo_list .td_mng {
  width: 8%;
  min-width: 70px;
  text-align: center;
}#bo_list .td_numbig {width:80px;text-align:center}
#bo_list .txt_active {color:#5d910b}
#bo_list .txt_expired {color:#ccc}
#bo_list tbody tr {border-left:2px solid transparent}
#bo_list tbody tr:hover {border-left:2px solid #253dbe}
#bo_list tbody .even td {background:#fbfbfb}

.donation-list-table th,
.donation-list-table td {
  text-align: center;
  vertical-align: middle;
}

.donation-list-table tbody td {
  cursor: default;
}

.donation-list-table .donation-date {
  width: 13%;
  cursor: pointer;
}

.donation-list-table .donation-donor {
  width: 15%;
}

.donation-list-table .donation-amount {
  font-weight: 600;
  white-space: nowrap;
}

.donation-detail-link {
  color: #222;
  font-weight: 600;
}

.donation-detail-link:hover {
  color: var(--color-main);
}

.donation-new {
  display: inline-block;
  margin-left: 4px;
  padding: 1px 5px;
  border-radius: 10px;
  background: #e8f5ee;
  color: #18794e;
  font-size: 10px;
  font-weight: 700;
}

.donation-status {
  display: inline-flex;
  min-width: 58px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
}

.donation-status.is-requested,
.donation-status.is-pending {
  background: #fff3d6;
  color: #8a5a00;
}

.donation-status.is-complete {
  background: #e6f4ea;
  color: #176b3a;
}

.donation-status.is-none {
  background: #f1f3f5;
  color: #687078;
}

.donation-status.is-review {
  background: #fde8e8;
  color: #a61b1b;
}

#bo_cate {margin:25px 0}
#bo_cate h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#bo_cate ul {zoom:1}
#bo_cate ul:after {display:block;visibility:hidden;clear:both;content:""}
#bo_cate li {display:inline-block;padding:2px}
#bo_cate a {display:block;line-height:28px;padding:5px 15px;border-radius:30px;border:1px solid #d6e9ff;color:#6794d3}
#bo_cate a:focus, #bo_cate a:hover, #bo_cate a:active {text-decoration:none;background:#3a8afd;color:#fff}
#bo_cate #bo_cate_on {z-index:2;background:#3a8afd;color:#fff;font-weight:bold;border:1px solid #3a8afd;
-webkit-box-shadow:inset 0 2px 5px rgb(33, 135, 202);
-moz-box-shadow:inset 0 2px 5px rgb(33, 135, 202);
box-shadow:inset 0 2px 5px rgb(33, 135, 202)}
.td_subject img {margin-left:5px}

/* 게시판 목록 공통 */
.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:#676e70}
.chk_box input[type="checkbox"] + label:hover {color:#2172f8}
.chk_box input[type="checkbox"] + label span {float:left;width:15px;height:15px;display:block;background:#fff;border:1px solid #d0d4df;border-radius:3px}
.write_div .chk_box input[type="checkbox"] + label, .bo_vc_w .chk_box input[type="checkbox"] + label {padding-left:20px}
.write_div .chk_box input[type="checkbox"] + label span, .bo_vc_w .chk_box input[type="checkbox"] + label span {position:absolute;top:2px;left:0;width:15px;height:15px;display:block;margin:0;background:#fff;border:1px solid #d0d4df;border-radius:3px}
.chk_box input[type="checkbox"]:checked + label {color:#000}
.chk_box input[type="checkbox"]:checked + label span {background:url(./img/chk.png) no-repeat 50% 50% #3a8afd;border-color:#1471f6;border-radius:3px}


#bo_btn_top {margin:30px 0;}
.bo_fx {margin-bottom:5px;float:right;zoom:1}
.bo_fx:after {display:block;visibility:hidden;clear:both;content:""}
.bo_fx ul {margin:0;padding:0;list-style:none}
#bo_list_total {float:left;line-height:34px;font-size:0.92em;color:#4e546f}

.btn_bo_user {float:right;margin:0;padding:0;list-style:none}
.btn_bo_user li {float:left;width:40px;text-align:center;margin-left:5px;background:#fff}
.btn_bo_user > li {position:relative}
.btn_bo_adm {float:left}
.btn_bo_adm li {float:left;margin-right:5px}
.btn_bo_adm input {padding:0 8px;border:0;background:#d4d4d4;color:#666;text-decoration:none;vertical-align:middle}
.bo_notice td a {font-weight:bold}
.bo_notice .notice_icon {display:inline-block;line-height:25px;border-radius:5px;font-weight:bold;color:#f9267f}

.more_opt {display:none;position:absolute;top:45px;right:0;background:#fff;border:1px solid #b8bfc4;z-index:999}
.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 #b8bfc4 transparent}
.more_opt:after {content:"";position:absolute;top:-6px;right:13px;width:0;height:0;border-style:solid;border-width:0 6px 8px 6px;border-color:transparent transparent #fff transparent}
.more_opt li {border-bottom:1px solid #f1f1f1;padding:10px;float:inherit;width:90px;margin:0;color:#6b757c;text-align:left}
.more_opt li:last-child {border-bottom:0}
.more_opt li button, .more_opt li a {width:100%;border:0;background:#fff;color:#6b757c}
.more_opt li:hover a,
.more_opt li:hover button {color:#000}
.more_opt li i {float:right;line-height:20px}

.td_num strong {color:#000}
.bo_cate_link {float:left;display:inline-block;margin-right:10px;background:#e2eaf6;color:#3a8afd;font-weight:normal !important;height:20px;line-height:10px;padding:5px 8px;border-radius:5px;font-size:0.95em} /* 글제목줄 분류스타일 */
.bo_cate_link:hover {text-decoration:none}
#bo_list .bo_tit {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
}

#bo_list .bo_tit_link {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#bo_list .bo_icons {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85em;
}


.bo_current {color:#e8180c}
#bo_list .profile_img img {border-radius:50%}
#bo_list .bo_icons {
  display: inline-flex;
  gap: 4px;
  margin-left: 5px;
  vertical-align: middle;
}

#bo_list .bo_icons i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  font-size: 12px;
  border-radius: 3px;
  background: #f5f5f5;
  color: #666;
  transition: all 0.2s ease-in-out;
}

/* 각각의 상태별 강조 색상 */
#bo_list .bo_icons .text-new {
  background: #dbfbe4;
  color: #23b36b;
}

#bo_list .bo_icons .text-hot {
  background: #ffe2e2;
  color: #f14444;
}

#bo_list .bo_icons .text-file {
  background: #fff5cc;
  color: #b78d00;
}

#bo_list .bo_icons .text-link {
  background: #e5edff;
  color: #446fe0;
}

/* 마우스 오버 효과 (선택사항) */
#bo_list .bo_icons i:hover {
  transform: scale(1.1);
  opacity: 0.9;
}


/* 1) 팝업 래퍼: 화면 전체 fixed → 일반 흐름으로 */
.bo_sch_wrap{
  display:block;                /* 항상 표시 */
  position:static;              /* fixed 제거 */
  width:auto; height:auto;
  top:auto; left:auto; right:auto; bottom:auto;
  z-index:auto;
  background:transparent;       /* 배경 제거 */
}

/* 2) 검색 폼 컨테이너: 중앙 팝업 → 상단 카드형 */
.bo_sch{
  position:static;              /* absolute + 50% 중앙 정렬 제거 */
  top:auto; left:auto; transform:none;
  background:#fff;
  box-shadow:none;
  width:100%;
  max-width: var(--layout-width, 1100px);
  margin:16px auto;             /* 상/하 여백 */

  font-family: var(--font-main), sans-serif;
  display: flex;
  gap: 5px;
  justify-content: center;
}

/* 3) 어두운 오버레이는 불필요 → 제거 */
.bo_sch_bg{
  display:none;
  background:transparent;
  width:0; height:0;
}

/* 4) 폼 내부 레이아웃 정리(가로 정렬), 닫기 버튼 숨김 */
.bo_sch h3{
  /* 보이게 쓰고 싶으면 이 블록 삭제 */
  position:absolute;
  width:1px; height:1px;
  margin:-1px; padding:0;
  overflow:hidden; clip:rect(0 0 0 0);
  white-space:nowrap; border:0;
  font-family: inherit;
}
.bo_sch legend{ /* 시각적으로 숨김(접근성 유지) */
  position:absolute;
  width:1px; height:1px;
  margin:-1px; padding:0;
  overflow:hidden; clip:rect(0 0 0 0);
  white-space:nowrap; border:0;
}
.bo_sch .bo_sch_cls{ display:none; } /* 닫기(X) 버튼 숨김 */

.bo_sch form{
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  max-width: 600px;
  font-size: 1em;
  line-height: 1.4;
}

.bo_sch select{
  height:40px;
  border:1px solid #d1d5db; border-radius:6px;
  background:#fff;
  font-family: inherit;
}

.bo_sch .sch_bar{
  display:flex; gap:8px; align-items:center;
  margin:0; border:0; box-shadow:none; width:100%;
  font-family: inherit;
}

.bo_sch .sch_input{
  flex:1 1 auto;
  height:40px;
  border:1px solid #d1d5db; border-radius:6px;
  padding:0 12px; background:#fff;
  font-family: inherit;
}

.bo_sch .sch_btn{
  height:40px; padding:0 14px;
  border: 1px solid var(--color-main-hover); border-radius:6px;
  background:var(--color-main); color:#fff;
  line-height:40px;
}


/* 5) 반응형: 모바일에서는 세로 스택 */
@media (max-width:768px){
  .bo_sch{ margin:12px auto; border-radius:6px; }
  .bo_sch form{ grid-template-columns: 1fr; gap:8px; margin: 20px 0;}
  .bo_sch .sch_bar{
    display:grid; grid-template-columns: 1fr auto; gap:8px;
  }
  .bo_sch .sch_input{ width:100%; }
  .bo_sch select{ height:38px; }
  .bo_sch .sch_btn{ height:38px; line-height:38px; }
}

/* 게시판 쓰기 */
#char_count_desc {display:block;margin:0 0 5px;padding:0}
#char_count_wrap {margin:5px 0 0;text-align:right}
#char_count {font-weight:bold}

#autosave_wrapper {position:relative}
#autosave_pop {display:none;z-index:10;position:absolute !important;top:34px;right:0;width:350px;height:auto !important;height:180px;max-height:180px;border:1px solid #565656;background:#fff;
-webkit-box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2);
-moz-box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2);
box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2)}
#autosave_pop:before {content:"";position:absolute;top:-8px;right:45px;width:0;height:0;border-style:solid;border-width:0 6px 8px 6px;border-color:transparent transparent #000 transparent}
#autosave_pop:after {content:"";position:absolute;top:-7px;right:45px;width:0;height:0;border-style:solid;border-width:0 6px 8px 6px;border-color:transparent transparent #fff transparent}
html.no-overflowscrolling #autosave_pop {height:auto;max-height:10000px !important} /* overflow 미지원 기기 대응 */
#autosave_pop strong {position:absolute;font-size:0;line-height:0;overflow:hidden}
#autosave_pop div {text-align:center;margin:0 !important}
#autosave_pop button {margin:0;padding:0;border:0}
#autosave_pop ul {padding:15px;border-top:1px solid #e9e9e9;list-style:none;overflow-y:scroll;height:130px;border-bottom:1px solid #e8e8e8}
#autosave_pop li {padding:8px 5px;border-bottom:1px solid #fff;background:#eee;zoom:1}
#autosave_pop li:after {display:block;visibility:hidden;clear:both;content:""}
#autosave_pop a {display:block;float:left}
#autosave_pop span {display:block;float:right;font-size:0.92em;font-style:italic;color:#999}
.autosave_close {cursor:pointer;width:100%;height:30px;background:none;color:#888;font-weight:bold;font-size:0.92em}
.autosave_close:hover {background:#f3f3f3;color:#3597d9}
.autosave_content {display:none}
.autosave_del {background:url(./img/close_btn.png) no-repeat 50% 50%;text-indent:-999px;overflow:hidden;height:20px;width:20px}

/* 게시판 읽기 */
#bo_v {margin-bottom:20px;background:#fff;box-sizing:border-box}

#bo_v_table {position:absolute;top:0;right:16px;margin:0;padding:0 5px;height:25px;background:#ff3061;color:#fff;font-weight:bold;line-height:2.2em}

#bo_v_title {}
#bo_v_title .bo_v_cate {display:inline-block;line-height:20px;background:#e2eaf6;color:#3a8afd;padding:0 10px;border-radius:3px;}
#bo_v_title .bo_v_tit {display:block;font-size:2em;margin:5px 0 0;word-break:break-all}

#bo_v_info {margin-top:0;border-bottom:1px solid #f1f1f1;color:#666}
#bo_v_info:after {display:block;visibility:hidden;clear:both;content:""} 
#bo_v_info h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}

#bo_v_info .profile_info {margin:20px 0 10px;display:inline-block;float:left}
#bo_v_info .profile_info .pf_img {float:left;margin-right:10px}
#bo_v_info .profile_info .pf_img img {border-radius:50%;width:50px;height:50px}
#bo_v_info .profile_info .profile_info_ct {float:left;padding:5px 0;line-height:18px}

#bo_v_info strong {display:inline-block;margin:0 10px 0 0;font-weight:normal}
#bo_v_info .sv_member,
#bo_v_info .sv_guest,
#bo_v_info .member,
#bo_v_info .guest {font-weight:bold}
#bo_v_info .profile_img {display:none}
#bo_v_info .sv_member {color:#000}
#bo_v_info .if_date {margin:0;color:#888}

#bo_v_file h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#bo_v_file ul {margin:0;list-style:none}
#bo_v_file li {padding:15px;position:relative;margin:10px 0;border:1px solid #dfdfdf;border-radius:5px;
-webkit-box-shadow:1px 1px 5px 0px hsl(232, 36%, 96%);
-moz-box-shadow:1px 1px 5px 0px hsl(232, 36%, 96%);
box-shadow:1px 1px 5px 0px hsl(232, 36%, 96%)}
#bo_v_file li i {float:left;color:#b2b2b2;font-size:2.35em;margin-right:20px}
#bo_v_file a {float:left;display:block;text-decoration:none;word-wrap:break-word;color:#000}
#bo_v_file a:focus, #bo_v_file li:hover a, #bo_v_file a:active {text-decoration:underline;color:#3a8afd}
#bo_v_file img {float:left;margin:0 10px 0 0}
#bo_v_file .bo_v_file_cnt {color:#b2b2b2;font-size:0.92em}
#bo_v_file li:hover {border-color:#bed4f4;color:#bed4f4}
#bo_v_file li:hover i {color:#3a8afd}
#bo_v_file li:hover .bo_v_file_cnt {color:#99c2fc}


#bo_v_link li {padding:15px;position:relative;margin:10px 0;border:1px solid #dfdfdf;border-radius:5px;
-webkit-box-shadow:1px 1px 5px 0px hsl(232, 36%, 96%);
-moz-box-shadow:1px 1px 5px 0px hsl(232, 36%, 96%);
box-shadow:1px 1px 5px 0px hsl(232, 36%, 96%)}
#bo_v_link li i {float:left;color:#b2b2b2;font-size:2.35em;margin-right:20px}
#bo_v_link a {float:left;display:block;text-decoration:none;word-wrap:break-word;color:#000}
#bo_v_link a:focus, #bo_v_link li:hover a, #bo_v_link a:active {text-decoration:underline;color:#3a8afd}
#bo_v_link .bo_v_link_cnt {color:#b2b2b2;font-size:0.92em}
#bo_v_link li:hover {border-color:#bed4f4;color:#bed4f4}
#bo_v_link li:hover i {color:#3a8afd}
#bo_v_link li:hover .bo_v_link_cnt {color:#99c2fc}

#bo_v_top {zoom:1; display: flex; justify-content: space-between;}
/* #bo_v_top:after {display:block;visibility:hidden;clear:both;content:""} */
#bo_v_top h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#bo_v_top ul {padding:0;list-style:none;word-break:break-all;background:#fff}

#bo_v_bot {zoom:1}
#bo_v_bot:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_bot h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#bo_v_bot ul {padding:0;list-style:none}

.bo_v_com {margin:20px 0;float:right}
.bo_v_com > li {position:relative;float:left;margin-left:5px}

.bo_v_nb {position:relative;margin:20px 0;clear:both;}
.bo_v_nb_bot {display: flex; flex-direction: column;}

.nb_tit_bot{
  /* 글꼴/색은 기존 유지 */
  font-size: 1.3em;
  color: var(--color-text);
  padding-left: 20px;

  /* 말줄임 핵심 */
  display: inline-block;   /* 또는 block */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  /* flex 컨텍스트에서 shrink 허용 */
  min-width: 0;

  /* 또는 flex:1 로 남은 공간만큼 차지 */
  flex: 1 1 auto;
}

@media (max-width: 640px) {


  .bo_v_nb_bot li{
    flex: 1;
  }
  .bo_v_nb_bot .btn_b01{
    max-width: 100px;
  }
  .bo_v_nb li:last-child { border-bottom: 0 !important; }
}
.bo_v_nb li {border-top:1px solid #f1f1f1;padding:0; display: flex; align-items: center;}

/* 한 행 전체를 클릭 가능하게 */
.bo_v_nb .nb_row{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px;              /* ← 패딩을 링크로 이동 */
  width: 100%;
  text-decoration: none;
  color: inherit;
}

/* 버튼 모양(span) */
.bo_v_nb .btn_b01{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 10px;
  border: 1px solid #d0d3db;
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
}

/* 제목 말줄임 */
.nb_tit_bot{
  font-size: 1.3em;
  color: var(--color-text);
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;               /* flex 수축 허용 */
  flex: 1;
}
.bo_v_nb li:last-child {border-bottom:1px solid #f1f1f1}
.bo_v_nb li:hover {background:#f6f6f6}
.bo_v_nb li i {font-size:13px;color:#b3b3b3}
.bo_v_nb li .nb_tit {display:inline-block;padding-right:20px;color:#b3b3b3}
.bo_v_nb li .nb_date {float:right;color:#b3b3b3}

#bo_v_atc {min-height:200px;height:auto !important;height:200px}
#bo_v_atc_title {position:absolute;font-size:0;line-height:0;overflow:hidden}

#bo_v_img {width:100%;overflow:hidden;zoom:1}
#bo_v_img:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_img a.view_image {display:block}
#bo_v_img img {margin-bottom:20px;max-width:100%;height:auto}

#bo_v_con {margin:10px 0 30px;width:100%;line-height:1.7em;min-height:200px;word-break:break-all;overflow:hidden}
#bo_v_con a {color:#000;text-decoration:underline}
#bo_v_con img {max-width:100%;height:auto}

#bo_v_act {margin-bottom:30px;text-align:center}
#bo_v_act .bo_v_act_gng {position:relative}
#bo_v_act a {margin-right:5px;vertical-align:middle;color:#4a5158}
#bo_v_act a:hover {background-color:#fff;color:#ff484f;border-color:#ff484f}
#bo_v_act i {font-size:1.4em;margin-right:5px}
#bo_v_act_good, #bo_v_act_nogood {display:none;position:absolute;top:30px;left:0;z-index:9999;padding:10px 0;width:165px;background:#ff3061;color:#fff;text-align:center}
#bo_v_act .bo_v_good {display:inline-block;border:1px solid #dedede;width:70px;line-height:46px;border-radius:30px}
#bo_v_act .bo_v_nogood {display:inline-block;border:1px solid #dedede;width:70px;line-height:46px;border-radius:30px}

#bo_v_sns {padding:0;list-style:none;zoom:1;float:left;display:inline-block}
#bo_v_sns:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_sns li {float:left;width:135px;margin-right:5px;text-align:left}
#bo_v_sns li a {height:35px;line-height:35px;text-align:center;border-radius:5px;color:#fff;font-size:0.95em}
#bo_v_sns li img {vertical-align:middle;margin-right:5px}
#bo_v_sns li .sns_f {display:block;background:#3b5997}
#bo_v_sns li .sns_t {display:block;background:#09aeee}
#bo_v_sns li .sns_g {display:block;background:#ea4026}
#bo_v_sns li .sns_k {display:block;background:#fbe300}

#bo_v_share {position:relative;padding:20px 0}
#bo_v_share:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_share .btn {padding:0 10px;color:#555;font-weight:normal;font-size:1em;width:80px;line-height:35px;height:35px;border-color:#d5d5d5;border-radius:5px}
#bo_v_share .btn:hover {background:#fff}
#bo_v_share .btn i {margin-right:5px;color:#4b5259;vertical-align:middle}

/* 게시판 댓글 */
.cmt_btn {width:100%;text-align:left;border:0;border-bottom:1px solid #f0f0f0;background:#fff;font-weight:bold;margin:30px 0 0px;padding:0 0 15px;font-family: var(--font-main), sans-serif;}
.cmt_btn span.total {position:relative;display:inline-block;margin-right:5px;font-size:1em;color:#3a8afd}
.cmt_btn span.cmt_more {float:right;display:inline-block;width:15px;height:10px;background:url(./img/btn_cmt.png) no-repeat right 2px;margin-top:5px}
.cmt_btn_op span.cmt_more {background-position:right -8px}
.cmt_btn b {font-size:1.2em;color:#000}
.cmt_btn span.total:after {position:absolute;bottom:-17px;left:0;display:inline-block;background:#3a8afd;content:"";width:100%;height:2px}
#bo_vc {}
#bo_vc h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#bo_vc article {margin:20px 0;position:relative;border-bottom:1px solid #f0f0f0}
#bo_vc article:after {display:block;visibility:hidden;clear:both;content:""}
#bo_vc article .profile_img img {border-radius:50%}
#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%}
#bo_vc header:after {display:block;visibility:hidden;clear:both;content:""}
#bo_vc header .profile_img {display:none}
#bo_vc header .icon_reply {position:absolute;top:15px;left:-20px}
#bo_vc .member, #bo_vc .guest, #bo_vc .sv_member, #bo_vc .sv_guest {font-weight:bold}
.bo_vc_hdinfo {color:#777}
#bo_vc h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#bo_vc .cmt_contents {line-height:1.8em;padding:0 0 20px}
#bo_vc p a {text-decoration:underline}
#bo_vc p a.s_cmt {text-decoration:underline;color:#ed6479}
#bo_vc_empty {margin:0;padding:80px 0 !important;color:#777;text-align:center}
#bo_vc #bo_vc_winfo {float:left}
#bo_vc .bo_vl_opt {position:absolute;top:0;right:0}

.bo_vc_act {display:none;position:absolute;right:0;top:40px;width:58px;text-align:right;border:1px solid #b8bfc4;margin:0;list-style:none;background:#fff;zoom:1;z-index:9999}
.bo_vc_act:before {content:"";position:absolute;top:-8px;right:5px;width:0;height:0;border-style:solid;border-width:0 6px 8px 6px;border-color:transparent transparent #b8bfc4 transparent}
.bo_vc_act:after {content:"";position:absolute;top:-6px;right:5px;width:0;height:0;border-style:solid;border-width:0 6px 8px 6px;border-color:transparent transparent #fff transparent}
.bo_vc_act li {border-bottom:1px solid #f0f0f0}
.bo_vc_act li:last-child {border-bottom:0}
.bo_vc_act li a {display:inline-block;padding:10px 15px}
.bo_vc_act li a:hover {color:#3a8afd}

.bo_vc_w {position:relative;margin:10px 0;display:block}
.bo_vc_w:after {display:block;visibility:hidden;clear:both;content:""}
.bo_vc_w h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
.bo_vc_w #char_cnt {display:block;margin:0 0 5px}
.bo_vc_w textarea {border:1px solid #ccc;background:#fff;color:#000;vertical-align:middle;border-radius:3px;padding:5px;width:100%;height:120px;
-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1)}
#wr_secret {}
.bo_vc_w_info {margin:10px 0;float:left}
.bo_vc_w_info:after {display:block;visibility:hidden;clear:both;content:""}
.bo_vc_w_info .frm_input {float:left;margin-right:5px}
.bo_vc_w_info #captcha {padding-top:10px;display:block;clear:both}
.bo_vc_w .btn_confirm {clear:both;margin-top:10px}
.bo_vc_w .btn_confirm label {display:inline-block;margin-right:10px;border-radius:3px;font-size:1.5em;text-align:center}
.bo_vc_w .btn_confirm .secret_cm label {font-size:1em !important}
.bo_vc_w_wr:after {display:block;visibility:hidden;clear:both;content:""}
.secret_cm {display:inline-block;float:left}

#bo_vc_send_sns {display:inline-block;float:left}
#bo_vc_sns {display:inline-block;margin:0;padding:0;list-style:none;zoom:1}
#bo_vc_sns:after {display:block;visibility:hidden;clear:both;content:""}
#bo_vc_sns li {float:left;margin:0 5px 0 0}
#bo_vc_sns .sns_li_f {border-radius:3px;background:#3a589b;height:40px;line-height:40px;padding:0 0 0 10px}
#bo_vc_sns .sns_li_t {border-radius:3px;background:#00aced;height:40px;line-height:40px;padding:0 0 0 10px}
#bo_vc_sns .sns_li_off {background:#bbb}
#bo_vc_sns a {display:inline-block;padding:0 15px 0 5px}
#bo_vc_sns input {margin:0 5px 0 0}

/*글쓰기*/
#bo_w .bo_v_option li {display:inline-block;float:left;text-align:left;margin:0 5px 0 0}
#bo_w .bo_v_option li label {vertical-align:baseline}
#bo_w .bo_v_option .chk_box input[type="checkbox"] + label span {margin-left:0;margin-right:5px}
#bo_w .write_div {margin:10px 0;position:relative}
#bo_w .write_div:after {display:block;visibility:hidden;clear:both;content:""}
#bo_w .bo_w_info:after {display:block;visibility:hidden;clear:both;content:""}
#bo_w .bo_w_info .frm_input {float:left;margin-bottom:1%}
#bo_w .wr_content.smarteditor2 iframe {background:#fff}
#bo_w .bo_w_tit {position:relative}
#bo_w .bo_w_tit #btn_autosave {position:absolute;top:5px;right:5px;line-height:30px;height:30px}
#bo_w .bo_w_link label {position:absolute;top:1px;left:1px;border-radius:3px 0 0 3px;height:38px;line-height:38px;width:40px;font-size:1.2em;text-align:center;color:#b2b2b2}
#bo_w .bo_w_link .frm_input {padding-left:50px}
#bo_w .bo_w_flie .lb_icon {position:absolute;top:0px;left:0px;border-radius:3px 0 0 3px;height:38px;line-height:38px;width:40px;font-size:1.2em;text-align:center;color:#b2b2b2}
#bo_w .bo_w_flie .frm_file {padding-left:50px;margin-top:3px}
#bo_w .bo_w_flie .file_wr {position:relative;border:1px solid #ccc;background:#fff;color:#000;vertical-align:middle;border-radius:3px;padding:5px;height:40px;margin:0}
#bo_w .bo_w_flie .frm_input {margin:10px 0 0}
#bo_w .bo_w_flie .file_del {position:absolute;top:10px;right:10px;font-size:0.92em;color:#7d7d7d}
#bo_w .bo_w_select select {border:1px solid #d0d3db;width:100%;height:40px;border-radius:3px}
#bo_w .btn_submit {padding:0 20px;font-size:1.167em}
#bo_w .btn_cancel {border-radius:3px;font-size:1.167em}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* 태블릿에서는 날짜를 MM.DD 형식으로만 보여줌 (위 PHP 코드와 중복 처리) */
}

@media screen and (max-width: 767px) {
  .donation-list-table thead {
    display: none;
  }

  .donation-list-table,
  .donation-list-table tbody,
  .donation-list-table tr,
  .donation-list-table td {
    display: block;
    width: 100% !important;
  }

  .donation-list-table tbody tr {
    margin-bottom: 12px;
    padding: 12px 14px;
  }

  .donation-list-table tbody td {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    align-items: center;
    min-height: 38px;
    padding: 7px 0;
    text-align: right;
    border-bottom: 1px solid #edf0f2;
  }

  .donation-list-table tbody td:last-child {
    border-bottom: 0;
  }

  .donation-list-table tbody td::before {
    content: attr(data-label);
    color: #687078;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
  }

  .donation-list-table .td_chk {
    display: none;
  }
}

/* 기본은 데스크탑용 */
#bo_list .date-short { display: none; }
#bo_list .date-full { display: inline; }

/* 모바일 (예: 820px 이하) */
@media (max-width: 820px) {
  #bo_list .date-short { display: inline; }
  #bo_list .date-full { display: none; }
  #bo_list .bo_tit{margin-left: 10px;}
}
  
.label_wrap{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.table-form{
    text-align: center;
}

.excel-container{
    display: flex;
    justify-content: center;
}

.btn-excel {
  display: inline-block;
  padding: 10px 20px;
  background: #28a745;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  margin-bottom: 30px;
}
.btn-excel i {
  margin-right: 5px;
}

.btn-excel:hover,
.btn-excel:focus {
  background: #20963f;
  outline: none;
}

/* Select 박스 디자인 */
.ca_update {
  /* 기본 박스 스타일 */
  display: inline-block;
  padding: 6px 32px 6px 12px;  /* 오른쪽 화살표 공간 확보 */
  font-size: 14px;
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  line-height: 1.4;
  cursor: pointer;
  /* 브라우저 기본 화살표 제거 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* 커스텀 화살표 아이콘(아래 SVG) */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6H0z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 6px;
}

/* 포커스/호버 시 강조 */
.ca_update:hover,
.ca_update:focus {
  border-color: #3981BF;
  box-shadow: 0 0 0 2px rgba(57, 129, 191, 0.2);
  outline: none;
}



/* 항상 3px 자리 확보 (투명) */
.tbl_head01 tbody tr td:first-child { border-left: 3px solid transparent; }
.tbl_head01 tbody tr td:last-child  { border-right: 3px solid transparent; }

/* hover 시 색만 변경 (폭 불변 → 텍스트 안 밀림) */
.tbl_head01 tbody tr:hover td:first-child { border-left-color: var(--color-main); }
.tbl_head01 tbody tr:hover td:last-child  { border-right-color: var(--color-main); }

/* 부드럽게 */
.tbl_head01 tbody tr td:first-child,
.tbl_head01 tbody tr td:last-child {
  transition: border-color .2s ease;
}


/* ================================
   VIEW DETAIL TABLE (read-only)
   - HTML 변경 없음
   - #bo_v 내부에서 "th[scope=row]"를 가진 테이블만 타깃
   ================================ */
:root{
  --view-bd: #e5eefc;
  --view-th-bg: #f7fbff;
  --view-text: #111827;
  --view-muted: #6b7280;
  --view-radius: 12px;
  --view-pad: 14px 16px;
  /* 포인트 컬러는 기존 --color-main 을 사용 (없으면 아래 라인 주석 해제)
  --color-main: #3a8afd;
  */
}

/* 테이블 자체를 '행 간 여백'이 있는 카드 리스트처럼 */
#bo_v table:has(th[scope="row"]) {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 0 10px !important; /* 행 사이 간격 */
  font-size: 15px;
  line-height: 1.6;
}

/* 각 행을 카드처럼 보이도록: 셀 배경/보더/라운드 분할 */
#bo_v table:has(th[scope="row"]) tbody tr > th,
#bo_v table:has(th[scope="row"]) tbody tr > td{
  background: #fff;
  border: 1px solid var(--view-bd);
  padding: var(--view-pad);
}

/* 왼쪽(라벨) */
#bo_v table:has(th[scope="row"]) tbody tr > th{
  width: 200px;            /* 화면 넓을 때 라벨 폭 고정 */
  white-space: nowrap;
  color: var(--view-text);
  font-weight: 700;
  background: var(--view-th-bg);
  border-right: 0;         /* 라벨/값 경계선 하나로 보이게 */
  border-radius: var(--view-radius) 0 0 var(--view-radius);
  position: relative;
}

/* 라벨 앞 포인트 바(레이아웃 안 흔들림) */
#bo_v table:has(th[scope="row"]) tbody tr > th::before{
  content:"";
  position:absolute; left:0; top:0; bottom:0;
  width: 3px; border-radius: var(--view-radius) 0 0 var(--view-radius);
  background: transparent;
  transition: background .2s ease;
}

/* 오른쪽(값) */
#bo_v table:has(th[scope="row"]) tbody tr > td{
  border-left: 0;
  border-radius: 0 var(--view-radius) var(--view-radius) 0;
  color: var(--view-text);
}

/* 같은 셀 안에 여러 줄(div) 간격 */
#bo_v table:has(th[scope="row"]) tbody tr > td > div{ margin: 2px 0; }
#bo_v table:has(th[scope="row"]) tbody tr > td > div:last-child{ margin-bottom: 0; }

/* 도움말 문구 */
#bo_v table:has(th[scope="row"]) .help{
  margin-top: 4px;
  color: var(--view-muted);
  font-size: 0.92em;
}

/* hover 포커스 — 박스섀도 inset으로 좌측 포인트 표시(밀림 없음) */
#bo_v table:has(th[scope="row"]) tbody tr:hover > th{
  box-shadow: inset 3px 0 0 0 var(--color-main);
}
#bo_v table:has(th[scope="row"]) tbody tr:hover > th,
#bo_v table:has(th[scope="row"]) tbody tr:hover > td{
  border-color: var(--color-main);
}

/* 모바일: 라벨/값을 위아래로 스택 (하나의 카드로 보이게) */
@media (max-width: 720px){
  /* 행을 블록처럼 쪼개 표시 */
  #bo_v table:has(th[scope="row"]) tbody tr{
    display: block;
  }
  #bo_v table:has(th[scope="row"]) tbody tr > th,
  #bo_v table:has(th[scope="row"]) tbody tr > td{
    display: block;
    width: 100% !important;
    border-radius: 0 !important; /* 카드 전체 라운드는 아래에서 지정 */
  }
  /* 라벨 카드 윗부분, 값 카드 아랫부분처럼 */
  #bo_v table:has(th[scope="row"]) tbody tr > th{
    border-right: 1px solid var(--view-bd); /* 모바일에선 끊김 없이 보더 유지 */
    border-bottom: 0;
    border-radius: var(--view-radius) var(--view-radius) 0 0 !important;
  }
  #bo_v table:has(th[scope="row"]) tbody tr > td{
    border-left: 1px solid var(--view-bd);
    border-top: 0;
    border-radius: 0 0 var(--view-radius) var(--view-radius) !important;
  }
  /* 모바일 포커스 바(왼쪽 → 위쪽으로 바꿔도 됨: 원하면 여기 수정) */
  #bo_v table:has(th[scope="row"]) tbody tr > th::before{
    width: 0; /* 필요 시 위쪽 바로 변경 가능 */
  }
}

/* 선택: 행 그림자 살짝 (취향) */
#bo_v table:has(th[scope="row"]) tbody tr > th,
#bo_v table:has(th[scope="row"]) tbody tr > td{
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
#bo_v table:has(th[scope="row"]) tbody tr:hover > td{
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
}



/* ===============================
   WRITE FORM — 카드형/반응형 스킨
   대상: #bo_w .tbl_frm018 안의 th[scope=row] 테이블
   HTML 수정 없음
==================================*/
:root{
  --color-main: #3d89a7;       /* 메인 */
  --color-sub: #f28c8c;        /* 보조 포인트 */
  --w-th: 200px;               /* 데스크탑 라벨 폭 */

  --bd: #d7e2e8;               /* 기본 보더 */
  --bd-strong: #b8cbd4;        /* 강조 보더 */
  --bg-th: #f4f8fa;            /* th 배경 */
  --bg-soft: #f9fbfc;          /* 은은한 배경 */
  --text: #2b2b2b;             /* 본문 */
  --muted: #6f7b83;            /* 보조텍스트 */

  --radius: 14px;
  --radius-sm: 10px;
  --pad: 14px 16px;

  --shadow-soft: 0 6px 18px rgba(61, 137, 167, 0.08);
}

/* 테이블을 '행 간격 있는 카드 리스트'처럼 */
#bo_w .tbl_frm018 table:has(th[scope="row"]){
  width:100%;
  border-collapse:separate !important;
  border-spacing:0 12px !important;    /* 행 간 여백 */
  font-size:15px; line-height:1.6;
}

/* 각 행의 두 셀(th/td)을 이어진 한 카드처럼 */
#bo_w .tbl_frm018 table:has(th[scope="row"]) tbody tr > th,
#bo_w .tbl_frm018 table:has(th[scope="row"]) tbody tr > td{
  background:#fff;
  border:1px solid var(--bd);
  padding:var(--pad);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

/* 왼쪽 라벨(th) */
#bo_w .tbl_frm018 table:has(th[scope="row"]) tbody tr > th{
  width:var(--w-th);
  white-space:nowrap;
  font-weight:700; color:var(--text);
  background:var(--bg-th);
  border-right:0;                         /* 라벨/값 경계선 하나로 */
  border-radius:var(--radius) 0 0 var(--radius);
  position:relative;
}

/* 값(td) */
#bo_w .tbl_frm018 table:has(th[scope="row"]) tbody tr > td{
  border-left:0;
  border-radius:0 var(--radius) var(--radius) 0;
  color:var(--text);
}

/* 행 포커스: 레이아웃 안 흔들리게 inset shadow로 표시 */
#bo_w .tbl_frm018 table:has(th[scope="row"]) tbody tr:hover > th,
#bo_w .tbl_frm018 table:has(th[scope="row"]) tbody tr:hover > td{
  border-color:var(--color-main);
}
#bo_w .tbl_frm018 table:has(th[scope="row"]) tbody tr:has(:focus-within) > th{
  box-shadow: inset 3px 0 0 0 var(--color-main);
}

/* 인풋 공통 */
#bo_w .frm_input,
#bo_w input[type="text"], #bo_w input[type="password"],
#bo_w input[type="email"], #bo_w input[type="url"], #bo_w input[type="number"],
#bo_w textarea, #bo_w select{
  width:100%; box-sizing:border-box;
  background:#fff; border:1px solid var(--bd); border-radius:10px;
  padding:5px 13px; font-size:15px; color:var(--text); outline:none;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
#bo_w .frm_input:focus, #bo_w textarea:focus, #bo_w select:focus{
  border-color:var(--color-main);
  box-shadow:0 0 0 3px rgba(58,138,253,.18);
}
#bo_w ::placeholder{ color:#9ca3af; }

/* 날짜 인풋 */
#bo_w #birth_ui{ max-width:220px; }

/* jQuery UI datepicker 최소 톤 */
.ui-datepicker{ font-size:14px; }
.ui-datepicker .ui-datepicker-title{ font-weight:600; }

/* 주소 묶음 */
#bo_w .zip-wrap{ display:flex; align-items:center; gap:10px; margin-bottom:10px; }
#bo_w .zip-wrap .btn_frmline{ background-color: var(--color-main); color:#fff; }
#bo_w .frm_address{ margin-top:8px; }
#bo_w .btn_frmline{
  border:1px solid var(--bd); background:#fff; border-radius:10px; cursor:pointer;
  transition:border-color .15s ease, box-shadow .15s ease;
}
#bo_w .btn_frmline:hover{
  border-color:var(--color-main);
  box-shadow:0 0 0 3px rgba(58,138,253,.12);
}

/* 라디오/체크 정렬 및 칩 스타일 */
#bo_w input[type="radio"], #bo_w input[type="checkbox"]{ width:auto; margin-right:6px; transform:translateY(1px); }
#bo_w td label{ display:inline-flex; align-items:center; gap:6px; margin-right:12px; }
#bo_w #amountRow td label{
  padding:7px 12px; border:1px solid var(--bd); border-radius:999px; background:#fff; cursor:pointer;
  transition:border-color .15s ease, box-shadow .15s ease;
}
#bo_w #amountRow input[type="radio"]:checked + *{
  border-color:var(--color-main);
  box-shadow:0 0 0 3px rgba(58,138,253,.12);
}

/* CMS 블록 */
#bo_w #cmsBlock p{ margin:0 0 10px; }
#bo_w #cmsBlock b{ display:inline-block; width:110px; color:#374151; }

/* 에디터/텍스트영역 */
#bo_w .wr_content textarea{ min-height:240px; }

/* 개인정보 박스 */
#bo_w .privacy-box{
  background:#fff; border:1px solid var(--bd) !important; border-radius:12px;
  padding:12px !important; font-size:.95em;
}
#bo_w .privacy-box::-webkit-scrollbar{ width:10px; }
#bo_w .privacy-box::-webkit-scrollbar-thumb{ background:#e5e7eb; border-radius:10px; }

/* 캡챠 */
#bo_w #captcha{ border:1px dashed var(--bd); border-radius:10px; padding:10px 12px; }
#bo_w #captcha img{ display:inline-block; vertical-align:middle; margin-right:8px; border-radius:6px; }
#bo_w #captcha .captcha_box{ width:110px; }
#bo_w #captcha button{
  height:36px; padding:0 10px; border:1px solid var(--bd); border-radius:8px; margin-left:6px; cursor:pointer;
}
#bo_w #captcha_info{ display:block; margin-top:6px; color:var(--muted); }

/* 버튼 영역(스킨에 btn_confirm이 있다면) */
#bo_w .btn_confirm{ display:flex; gap:10px; justify-content:center; margin-top:24px; }
#bo_w .btn_submit, #bo_w .btn_cancel{
  appearance:none; border:0; border-radius:12px; padding:12px 22px; font-weight:700; font-size:15px; cursor:pointer;
  transition: transform .06s ease, box-shadow .15s ease, background-color .15s ease;
}
#bo_w .btn_submit{ background:var(--color-main); color:#fff; }
#bo_w .btn_submit:hover{ transform:translateY(-1px); }
#bo_w .btn_cancel{ background:#eef2f7; color:#374151; }

/* 여러 줄 div(주소/헬프 등) 간격 */
#bo_w td > div{ margin:2px 0; }

/* 모바일 스택: 라벨/값 위아래 */
@media (max-width: 720px){
  #bo_w .tbl_frm018 table:has(th[scope="row"]) tbody tr{ display:block; }
  #bo_w .tbl_frm018 table:has(th[scope="row"]) tbody tr > th,
  #bo_w .tbl_frm018 table:has(th[scope="row"]) tbody tr > td{
    display:block; width:100% !important; border-radius:0 !important;
  }
  #bo_w .tbl_frm018 table:has(th[scope="row"]) tbody tr > th{
    border-right:1px solid var(--bd); border-bottom:0;
    border-radius:var(--radius) var(--radius) 0 0 !important;
  }
  #bo_w .tbl_frm018 table:has(th[scope="row"]) tbody tr > td{
    border-left:1px solid var(--bd); border-top:0;
    border-radius:0 0 var(--radius) var(--radius) !important;
  }
  #bo_w .zip-wrap{ flex-direction:column; align-items:stretch; }
  #bo_w #birth_ui{ max-width:100%; }
  #bo_w .btn_frmline{ width:100%; text-align:center;}
}


/* 선택: 개인정보 안내 상자 타이포 튜닝 */
#bo_w .privacy-box p{ margin: 0 0 8px; }
#bo_w .privacy-box ul{ margin: 6px 0 10px 18px; list-style: disc; }
#bo_w .privacy-box strong{ font-weight: 700; }

/* 주민등록번호 분리 입력 및 보안키패드 */
#bo_w .rrn-input-wrap{
  display:block;
  max-width:560px;
}
#bo_w .rrn-fields-line{
  display:grid;
  grid-template-columns:minmax(100px, 150px) 16px minmax(110px, 150px) minmax(96px, auto);
  align-items:center;
  gap:8px;
  width:100%;
}
#bo_w .rrn-front,
#bo_w .rrn-back{
  width:100%;
  min-width:0;
  text-align:center;
  letter-spacing:2px;
}
#bo_w .rrn-hyphen{
  font-size:20px;
  font-weight:700;
}
#bo_w .rrn-saved-help,
#bo_w #receiptConsentWrap{
  display:block;
}
#bo_w #receiptConsentWrap{
  margin-top:8px;
}
#bo_w .rrn-keypad-toggle{
  min-height:42px;
  padding:0 14px;
  border:1px solid var(--color-main);
  border-radius:8px;
  background:var(--color-main);
  color:#fff;
  font-weight:700;
  white-space:nowrap;
  cursor:pointer;
}
#bo_w .rrn-validation-message{
  min-height:20px;
  margin-top:6px;
  font-size:13px;
  font-weight:700;
}
#bo_w .rrn-validation-message.is-valid{ color:#087a46; }
#bo_w .rrn-validation-message.is-invalid{ color:#c62828; }
#bo_w .rrn-keypad-panel[hidden]{ display:none; }
#bo_w .rrn-keypad-panel{
  width:100%;
  margin-top:10px;
  padding:16px;
  border:1px solid #c8d6dc;
  border-radius:12px;
  background:#f4f8fa;
  box-shadow:0 8px 22px rgba(27,60,75,.1);
}
#bo_w .rrn-keypad-heading{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom:10px;
}
#bo_w .rrn-keypad-panel h3{
  margin:0 0 8px;
  font-size:17px;
}
#bo_w .rrn-keypad-panel p{
  margin:0;
  color:#555;
}
#bo_w .rrn-keypad-close{
  padding:6px 10px;
  border:1px solid #aebdc4;
  border-radius:7px;
  background:#fff;
  color:#34454d;
  cursor:pointer;
}
#bo_w .rrn-keypad-status{
  margin-bottom:14px;
  padding:10px;
  border-radius:8px;
  background:#dfecef;
  font-weight:700;
  text-align:center;
}
#bo_w .rrn-keypad-numbers{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:10px;
}
#bo_w .rrn-keypad-number{
  min-height:50px;
  border:1px solid #315b70;
  border-radius:9px;
  background:#315b70;
  color:#fff;
  font-size:21px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 2px 5px rgba(0,0,0,.12);
}
#bo_w .rrn-keypad-number:hover,
#bo_w .rrn-keypad-number:focus{
  border-color:#173d50;
  background:#173d50;
}
#bo_w .rrn-keypad-actions{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:8px;
  margin-top:14px;
}
#bo_w .rrn-keypad-actions button{
  min-height:42px;
  border:1px solid #8fa3ad;
  border-radius:8px;
  background:#e2ebef;
  color:#263940;
  font-weight:700;
  cursor:pointer;
}
#bo_w .rrn-keypad-actions .is-primary{
  border-color:var(--color-main);
  background:var(--color-main);
  color:#fff;
}
#bo_w .phone-input{
  width:180px;
  letter-spacing:.5px;
}
#bo_w .phone-validation-message{
  display:block;
  min-height:20px;
  margin-top:5px;
  font-size:13px;
  font-weight:700;
}
#bo_w .phone-validation-message.is-valid{ color:#087a46; }
#bo_w .phone-validation-message.is-invalid{ color:#c62828; }
@media (max-width:600px){
  #bo_w .rrn-fields-line{
    grid-template-columns:minmax(78px, 1fr) 10px minmax(88px, 1fr) 82px;
    gap:5px;
  }
  #bo_w .rrn-front,
  #bo_w .rrn-back{
    padding-left:7px;
    padding-right:7px;
    letter-spacing:1px;
  }
  #bo_w .rrn-keypad-toggle{
    min-height:40px;
    padding:0 7px;
    font-size:12px;
  }
  #bo_w .rrn-keypad-numbers{
    grid-template-columns:repeat(5, 1fr);
    gap:6px;
  }
  #bo_w .rrn-keypad-number{
    min-height:45px;
  }
  #bo_w .phone-input{
    width:100%;
  }
}

/* ======================================
   VIEW BUTTONS (수정/삭제/목록/답변/글쓰기/이전/다음)
   대상: #bo_v 영역의 .btn_b01, .btn_b02, .btn_admin
   ====================================== */
:root{
  --btn-h: 38px;
  --btn-r: 10px;
  --btn-px: 14px;
  --btn-bd: #d0d3db;
  --btn-fg: #374151;
  --btn-bg: #fff;
  --btn-bg-hover: #f8fafc;
  --btn-shadow: 0 1px 2px rgba(0,0,0,.06);
  --btn-primary: var(--color-main, #3a8afd);
  --btn-primary-hover: #2f74ea;
}

/* 상단 액션 영역 정렬 개선 (float → flex) */
#bo_v_top .bo_v_com{
  display:flex; flex-wrap:wrap; gap:8px;
  justify-content:flex-end;
  float:none; margin:12px 0;
}
#bo_v_top .bo_v_com > li{ float:none; margin:0; }

/* 이전글/다음글 영역도 버튼 느낌 나게 */
#bo_v_top .bo_v_nb{ margin:12px 0; display: flex; justify-content: end;}
@media (max-width: 640px){
  #bo_v_top .bo_v_nb li{ flex: 1 1 auto; }
  #bo_v_top { flex-direction: column; }
  
}
#bo_v_top .bo_v_nb li{ border:0; padding:0; }
#bo_v_top .bo_v_nb li + li{ margin-left:8px; }

/* 하단 링크 버튼 정렬 */
#bo_v_bot .bo_v_com{ display:flex; flex-wrap:wrap; gap:8px; justify-content:center; }

/* 공통 버튼 베이스 */
#bo_v a.btn_b01,
#bo_v a.btn_b02,
#bo_v a.btn_admin,
.bo_v_nb .btn_b01,
.bo_vc_w .btn_submit{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  height:var(--btn-h); line-height:var(--btn-h);
  padding:0 var(--btn-px);
  border-radius:var(--btn-r);
  border:1px solid var(--btn-bd);
  background:var(--btn-bg);
  color:var(--btn-fg);
  text-decoration:none;
  font-weight:600; font-size:14px;
  box-shadow:var(--btn-shadow);
  transition: transform .06s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
  vertical-align:middle;
  font-family: inherit;
}

/* 기본형(회색) */
#bo_v a.btn_b01:hover{ background:var(--btn-bg-hover); border-color:#c7cdd6; transform:translateY(-1px); }
.bo_v_nb .btn_b01:hover{ background:var(--btn-bg-hover); border-color:#c7cdd6; transform:translateY(-1px); }

/* 주요 버튼(파란) */
#bo_v a.btn_b02{
  background:var(--btn-primary);
  border-color:var(--btn-primary);
  color:#fff;
}
#bo_v a.btn_b02:hover{
  background:var(--btn-primary-hover);
  border-color:var(--btn-primary-hover);
  transform:translateY(-1px);
}

/* 관리자/이동/복사 같은 보조 버튼 */
#bo_v a.btn_admin{
  background:#f3f6fb;
  border-color:#d7e2f3;
  color:#2b4a8f;
}
#bo_v a.btn_admin:hover{
  background:#e9f0fe;
  border-color:#c7d9fd;
  transform:translateY(-1px);
}

/* 아이콘 간격 정리 (Font Awesome 사용 시) */
#bo_v a.btn_b01 i,
#bo_v a.btn_b02 i,
#bo_v a.btn_admin i{ font-size:1em; }

/* 모바일에서 버튼 줄바꿈 여유 */
@media (max-width: 640px){
  #bo_v_top .bo_v_com,
  #bo_v_bot .bo_v_com{ justify-content:stretch; }
  #bo_v_top .bo_v_com > li,
  #bo_v_bot .bo_v_com > li{ flex:1 1 auto; }
  #bo_v a.btn_b01,
  #bo_v a.btn_b02,
  #bo_v a.btn_admin{ width:100%; }
}

/* (선택) 추천/비추천 영역 버튼도 통일하고 싶다면 */
#bo_v_act a{
  display:inline-flex; align-items:center; justify-content:center;
  height:var(--btn-h); line-height:var(--btn-h);
  padding:0 var(--btn-px);
  border-radius:var(--btn-r);
  border:1px solid var(--btn-bd);
  background:#fff; color:var(--btn-fg);
  font-weight:600; text-decoration:none;
  transition: transform .06s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease;
}
#bo_v_act a:hover{ background:var(--btn-bg-hover); transform:translateY(-1px); }


/* ============================
   VIEW 공통 토큰
============================ */
:root{
  --view-bd: #e6ecf5;
  --view-radius: 14px;
  --view-gap: 12px;
  --view-pad: 14px 16px;
}

/* ============================
   상단 정보 헤더(#bo_v_info)
============================ */
#bo_v_info{
  display:flex; flex-wrap:wrap; align-items:center; gap:10px;
  background:#fff; border:1px solid var(--view-bd); border-radius:var(--view-radius);
  padding:14px 20px; margin:20px 0 14px;
  box-shadow:0 1px 2px rgba(0,0,0,.04);
}
#bo_v_info header{ flex:1 1 auto; min-width:0; }
#bo_v_title{ margin:0; font-size:1.25rem; line-height:1.4; word-break:break-word; color:#111827;font-family: var(--font-main), sans-serif; }

/* 접근성용 H2 숨김 */
#bo_v_info h2{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

/* 인라인 float 제거(원본에 style="float:right;"가 있어서 강제 해제) */
#bo_v_info > span[style*="float:right"]{ float:none !important; margin-left:auto; }

/* 작성자/조회수/날짜를 칩 느낌으로 */
#bo_v_info > strong,
#bo_v_info > span > strong{
  display:inline-flex; align-items:center; gap:6px;
  background:#f3f6fb; border:1px solid #d7e2f3; color:#2b4a8f;
  border-radius:999px; padding:6px 10px; font-weight:700; font-size:13.5px;
}
#bo_v_info .sv_member{ color:#2b4a8f; }

/* 모바일 줄바꿈 */
@media (max-width: 640px){
  #bo_v_info{ gap:8px; }
  #bo_v_info > span[style*="float:right"]{ margin-left:0; }
}

/* ============================
   섹션 제목 (신청정보)
============================ */
h5.board_consult.hidden{  /* hidden 클래스를 보여주기 */
  display:block !important;
  margin:18px 0 6px; font-size:14px; letter-spacing:.02em; color:#374151;
}
h5.board_consult.hidden::before{
  content:""; display:inline-block; width:6px; height:6px; border-radius:50%;
  background:var(--color-main, #3a8afd); margin-right:8px; transform:translateY(-1px);
}

/* ============================
   VIEW 테이블(신청정보 표) 카드화 — 최종
============================ */
#bo_v table:has(th[scope="row"]){
  width:100%;
  border-collapse:separate !important;
  border-spacing:0 var(--view-gap) !important;
  font-size:15px;
  line-height:1.6;
}

/* 행 단위 기본 보더 색 토큰 */
#bo_v table:has(th[scope="row"]) tbody tr{
  --row-bd: var(--view-bd);
}

/* 셀 공통 */
#bo_v table:has(th[scope="row"]) tbody tr > th,
#bo_v table:has(th[scope="row"]) tbody tr > td{
  background:#fff;
  border:1px solid var(--row-bd); /* ← 행 토큰 사용 */
  padding:var(--view-pad);
  transition:border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

/* 라벨(th) */
#bo_v table:has(th[scope="row"]) tbody tr > th{
  width:220px;
  white-space:nowrap;
  font-weight:700;
  color:#111827;
  background:#f7fbff;
  border-right:0;
  border-radius:var(--view-radius) 0 0 var(--view-radius);
}

/* 값(td) */
#bo_v table:has(th[scope="row"]) tbody tr > td{
  border-left:0;
  border-radius:0 var(--view-radius) var(--view-radius) 0;
  color:#111827;
}

/* 행 호버/포커스: 토큰만 변경(레이아웃 흔들림 없음) */
#bo_v table:has(th[scope="row"]) tbody tr:hover,
#bo_v table:has(th[scope="row"]) tbody tr:has(:focus-within){
  --row-bd: var(--color-main, #3a8afd);
}
#bo_v table:has(th[scope="row"]) tbody tr:has(:focus-within) > th{
  box-shadow: inset 3px 0 0 0 var(--color-main, #3a8afd);
}

/* 모바일 스택 */
@media (max-width: 720px){
  #bo_v table:has(th[scope="row"]) tbody tr{
    display:block;
    margin-bottom: 15px;
  }
  #bo_v table:has(th[scope="row"]) tbody tr > th,
  #bo_v table:has(th[scope="row"]) tbody tr > td{
    display:block;
    width:100% !important;
    border-radius:0 !important;
  }
  /* 모바일에서도 좌우/경계 보더가 행 토큰 색으로 통일되게 */
  #bo_v table:has(th[scope="row"]) tbody tr > th{
    border-right:1px solid var(--row-bd);
    border-bottom:0;
    border-radius:var(--view-radius) var(--view-radius) 0 0 !important;
  }
  #bo_v table:has(th[scope="row"]) tbody tr > td{
    border-left:1px solid var(--row-bd);
    border-top:0;
    border-radius:0 0 var(--view-radius) var(--view-radius) !important;
  }
}


/* ============================
   본문(#bo_v_con) 카드화 & 타이포
============================ */
#bo_v_con{
  background:#fff; border:1px solid var(--view-bd); border-radius:var(--view-radius);
  padding:16px 18px; margin:14px 0 20px;
  font-size:15px; line-height:1.8; color:#111827;
}
#bo_v_con p{ margin:0 0 12px; }
#bo_v_con a{ color:var(--color-main, #3a8afd); text-decoration:underline; }
#bo_v_con img{ max-width:100%; height:auto; border-radius:8px; }

/* 첨부/링크 카드 간격 미세 조정(있으면) */
#bo_v_file li, #bo_v_link li{ border-radius:12px; }


/* =========================================================
   LIST 상단 버튼줄 — view(.bo_v_com)와 동일한 룩&필
   대상: .btn_bo_user a.btn_b01 / a.btn_b02 / a.btn_admin
   + 아이콘 숨기고 글자(= .sound_only)를 표시
========================================================= */

#bo_btn_top{
  display: flex;
  justify-content: space-between;
}

/* 0) 컨테이너: 가로 나열 / 우측 정렬 */
.btn_bo_user{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  font-family: var(--font-main, sans-serif); /* 부모 폰트 상속 */ 
  float: none;  /* 기존 float 해제 */
}

.flex_column{
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.btn_bo_user div{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 0.5rem;
}
.btn_bo_user div> li{
  float: none;               /* 기존 float 해제 */
  width: auto;               /* 아이콘폭(40px) 제거 */
  margin: 0; padding: 0;
  background: transparent;   /* 배경 제거 */
  position: relative;
}
.btn_bo_user li{
  float: none;               /* 기존 float 해제 */
  width: auto;               /* 아이콘폭(40px) 제거 */
  margin: 0; padding: 0;
  background: transparent;   /* 배경 제거 */
  position: relative;
}

/* 1) 버튼 베이스(뷰와 통일) */
.btn_bo_user a.btn_b01,
.btn_bo_user a.btn_b02,
.btn_bo_user a.btn_admin,
.btn_bo_user button.btn_b01{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: var(--btn-h, 38px);
  line-height: var(--btn-h, 38px);
  padding: 0 var(--btn-px, 14px);
  border-radius: var(--btn-r, 10px);
  border: 1px solid var(--btn-bd, #d0d3db);
  background: var(--btn-bg, #fff);
  color: var(--btn-fg, #374151);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--btn-shadow, 0 1px 2px rgba(0,0,0,.06));
  transition: transform .06s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
  vertical-align: middle;
  cursor: pointer;
  font-family: var(--font-main, sans-serif); /* 부모 폰트 상속 */ 
}

/* 1-1) hover */
.btn_bo_user a.btn_b01:hover,
.btn_bo_user button.btn_b01:hover{
  background: var(--btn-bg-hover, #f8fafc);
  border-color: #c7cdd6;
  transform: translateY(-1px);
}

/* 1-2) 주요 버튼(파란) */
.btn_bo_user a.btn_b02{
  background: var(--btn-primary, var(--color-main, #3a8afd));
  border-color: var(--btn-primary, var(--color-main, #3a8afd));
  color: #fff;
}
.btn_bo_user a.btn_b02:hover{
  background: var(--btn-primary-hover, #2f74ea);
  border-color: var(--btn-primary-hover, #2f74ea);
  transform: translateY(-1px);
}

/* 1-3) 관리자/보조 버튼 */
.btn_bo_user a.btn_admin{
  background: #f3f6fb;
  border-color: #d7e2f3;
  color: #2b4a8f;
}
.btn_bo_user a.btn_admin:hover{
  background: #e9f0fe;
  border-color: #c7d9fd;
  transform: translateY(-1px);
}


/* 원래 시각장애인용 텍스트(.sound_only)를 시각화 */
.btn_bo_user .sound_only{
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  border: 0 !important;
}

/* 3) '더보기(옵션)' 버튼도 텍스트 버튼처럼 보이게 */
.btn_bo_user .btn_more_opt{
  /* 이미 .btn_b01 클래스가 붙어 있어도 OK, 없으면 아래 스타일 부여 */
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  height: var(--btn-h, 38px); line-height: var(--btn-h, 38px);
  padding: 0 var(--btn-px, 14px);
  border-radius: var(--btn-r, 10px);
  border: 1px solid var(--btn-bd, #d0d3db);
  background: var(--btn-bg, #fff);
  color: var(--btn-fg, #374151);
  font-weight: 600; font-size: 14px;
}

/* 4) 옵션 드롭다운 위치/레이어 개선 */
.btn_bo_user .more_opt{
  right: 0; top: calc(100% + 8px);
  display: none;                 /* 토글은 기존 JS 사용 */
  min-width: 160px;
}
.btn_bo_user .more_opt li{
  width: 100%;
}
.btn_bo_user .more_opt li button,
.btn_bo_user .more_opt li a{
  text-align: left;
  padding: 10px 12px;
  font-size: 13.5px;
}


@media (max-width: 640px){
  #bo_btn_top{
  gap: 20px;
}
  }

  /* 표 기본 레이아웃 안정화 */
.tbl_head01 table,
.responsive-table {
  width: 100%;
  table-layout: fixed;       /* 긴 제목에도 칼럼 비율 유지 */
  border-collapse: collapse;
  min-width: 720px;          /* 필요시 조정 */
}

/* 각 칼럼 최소/권장 폭 */
.col_chk    { width: 54px; }
.col_num    { width: 72px; text-align: center; }
.col_name   { width: 140px; }
.col_hit,
.col_good,
.col_nogood { width: 90px;  text-align: right; }
.col_date   { width: 110px; white-space: nowrap; }
.col_subject{ width: auto; }

/* 빈 목록 시에도 보기 좋게 */
.empty_table { padding: 0; }
.empty_table .empty-inner{
  min-height: 160px; display:flex; align-items:center; justify-content:center;
  color: var(--color-muted, #999);
}

@media (max-width: 720px){
  #bo_w .tbl_frm018 table:has(th[scope="row"]) {
    border-spacing: 0;
  }

  #bo_w .tbl_frm018 table:has(th[scope="row"]) tbody tr {
    display: block;
    margin-bottom: 14px;   /* 카드 간격 */
    border-radius: 14px;
    overflow: hidden;
  }

  #bo_w .tbl_frm018 table:has(th[scope="row"]) tbody tr:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 640px){
  #bo_btn_top .btn_bo_user .btn_has_icon{
    min-width:42px;
    height:42px;
    padding:0 12px;
    border-radius:10px;
  }

  #bo_btn_top .btn_bo_user .btn_has_icon .btn_label{
    position:absolute !important;
    width:1px !important;
    height:1px !important;
    padding:0 !important;
    margin:-1px !important;
    overflow:hidden !important;
    clip:rect(0,0,0,0) !important;
    white-space:nowrap !important;
    border:0 !important;
  }

  #bo_btn_top .btn_bo_user .btn_has_icon i{
    margin:0;
    font-size:16px;
  }
}


/* 회계담당자 관리 버튼 */
.accounting-link-wrap {
  display: flex;
  justify-content: center;
  margin: 24px 0 30px;
}

.btn-accounting {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #d7e2f3;
  border-radius: 999px;
  background: #f3f6fb;
  color: #2b4a8f !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .06s ease, box-shadow .15s ease;
}

.btn-accounting i {
  font-size: 14px;
}

.btn-accounting:hover,
.btn-accounting:focus {
  background: #e9f0fe;
  border-color: #c7d9fd;
  color: #1f3f82 !important;
  transform: translateY(-1px);
  text-decoration: none !important;
  outline: none;
}

.btn-accounting:active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .accounting-link-wrap {
    justify-content: stretch;
  }

  .btn-accounting {
    width: 100%;
  }
}
