@charset "utf-8";

/* ==========================================================================
   Board Skin - Bootstrap 5 Theme
   Base color: #5758D6
   ========================================================================== */

:root {
    --board-accent: #5758D6;
    --board-accent-light: #ededfb;
    --board-accent-dark: #4546ab;
}

/* --------------------------------------------------------------------------
   Accessibility
   -------------------------------------------------------------------------- */
.sound_only {
    position: absolute;
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    visibility: hidden;
}

/* --------------------------------------------------------------------------
   Board List (#bo_list)
   -------------------------------------------------------------------------- */
#bo_list {
    position: relative;
    margin-bottom: 20px;
}

/* Category nav */
#bo_cate a {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 30px;
    border: 1px solid #dee2e6;
    color: #555;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all .2s;
}
#bo_cate a:hover,
#bo_cate a:focus,
#bo_cate a:active {
    background: var(--board-accent);
    color: #fff;
    border-color: var(--board-accent);
}
#bo_cate #bo_cate_on {
    background: var(--board-accent);
    color: #fff;
    border-color: var(--board-accent);
    font-weight: 600;
}

/* Table adjustments */
#bo_list .table {
    font-size: 0.9rem;
}
#bo_list .table thead th {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #6c757d;
    border-bottom-width: 1px;
    white-space: nowrap;
}
#bo_list .table tbody tr {
    border-left: 2px solid transparent;
    transition: border-color .15s;
}
#bo_list .table tbody tr:hover {
    border-left-color: var(--board-accent);
}

/* Notice row */
.bo_notice td {
    background-color: #fef9fb !important;
}
.bo_notice .bo_tit a {
    font-weight: 700;
}

/* Subject line */
.bo_cate_link {
    display: inline-block;
    margin-right: 6px;
    padding: 2px 8px;
    background: var(--board-accent-light);
    color: var(--board-accent);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    vertical-align: middle;
}
.bo_cate_link:hover {
    text-decoration: none;
    background: var(--board-accent);
    color: #fff;
}
.bo_tit {
    display: block;
    color: #212529;
    font-weight: 600;
}
.bo_tit a {
    color: inherit;
    text-decoration: none;
}
.bo_tit a:hover {
    color: var(--board-accent);
}
.bo_current {
    color: #e8180c;
}

/* Icons in title */
.new_icon {
    display: inline-block;
    width: 16px;
    line-height: 16px;
    font-size: 10px;
    color: #23db79;
    background: #b9ffda;
    text-align: center;
    border-radius: 3px;
    margin-left: 3px;
    font-weight: 700;
    vertical-align: middle;
}
.hot_icon {
    display: inline-block;
    width: 16px;
    line-height: 16px;
    font-size: 10px;
    color: #ff0000;
    background: #ffb9b9;
    text-align: center;
    border-radius: 3px;
    vertical-align: middle;
}
.cnt_cmt {
    display: inline-block;
    background: var(--board-accent-light);
    color: var(--board-accent);
    font-size: 11px;
    padding: 0 5px;
    border-radius: 3px;
    vertical-align: middle;
    line-height: 16px;
}
.title_icon {
    margin-right: 2px;
}
#bo_list .bo_tit .fa-heart {
    color: #ff0000;
}
#bo_list .bo_tit .fa-lock {
    display: inline-block;
    width: 16px;
    line-height: 14px;
    font-size: 11px;
    color: #4f818c;
    background: #cbe3e8;
    text-align: center;
    border-radius: 2px;
    border: 1px solid #cbe3e8;
    vertical-align: middle;
}
#bo_list .bo_tit .fa-caret-right {
    color: #bbb;
}
#bo_list .bo_tit .fa-download {
    display: inline-block;
    width: 16px;
    line-height: 16px;
    font-size: 10px;
    color: #daae37;
    background: #ffefb9;
    text-align: center;
    border-radius: 2px;
    margin-left: 3px;
    vertical-align: middle;
}
#bo_list .bo_tit .fa-link {
    display: inline-block;
    width: 16px;
    line-height: 16px;
    font-size: 10px;
    color: #b451fd;
    background: #edd3fd;
    text-align: center;
    border-radius: 2px;
    margin-left: 3px;
    vertical-align: middle;
}

/* Profile image in list */
#bo_list .profile_img img {
    border-radius: 50%;
}

/* --------------------------------------------------------------------------
   Dropdown option menu (shared between list & view)
   -------------------------------------------------------------------------- */
.more_opt {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    z-index: 999;
    list-style: none;
    padding: 4px 0;
    margin: 0;
    min-width: 110px;
}
.more_opt::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 14px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 7px 6px;
    border-color: transparent transparent #dee2e6 transparent;
}
.more_opt::after {
    content: "";
    position: absolute;
    top: -5px;
    right: 14px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 7px 6px;
    border-color: transparent transparent #fff transparent;
}
.more_opt li {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #f1f1f1;
}
.more_opt li:last-child {
    border-bottom: 0;
}
.more_opt li button,
.more_opt li a {
    display: block;
    width: 100%;
    padding: 8px 14px;
    border: 0;
    background: #fff;
    color: #495057;
    text-decoration: none;
    font-size: 0.875rem;
    text-align: left;
}
.more_opt li button:hover,
.more_opt li a:hover {
    background: #f8f9fa;
    color: var(--board-accent);
}
.more_opt li i {
    float: right;
    line-height: 20px;
}

/* --------------------------------------------------------------------------
   Search overlay
   -------------------------------------------------------------------------- */
.bo_sch_wrap {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
}
.bo_sch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 380px;
    max-width: 90vw;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,.15);
    border: 1px solid #dee2e6;
    overflow: hidden;
}
.bo_sch h3 {
    padding: 16px 20px;
    margin: 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
    font-weight: 600;
}
.bo_sch form {
    padding: 20px;
}
.bo_sch .bo_sch_cls {
    position: absolute;
    right: 5px;
    top: 5px;
    border: 0;
    background: transparent;
    color: #adb5bd;
    font-size: 18px;
    padding: 10px;
    cursor: pointer;
}
.bo_sch .bo_sch_cls:hover {
    color: #495057;
}
.bo_sch_bg {
    background: rgba(0,0,0,.3);
    width: 100%;
    height: 100%;
}

/* --------------------------------------------------------------------------
   Board Write (#bo_w)
   -------------------------------------------------------------------------- */
#bo_w {
    margin-bottom: 20px;
}

#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 popup */
#autosave_wrapper {
    position: relative;
}
#autosave_pop {
    display: none;
    z-index: 10;
    position: absolute !important;
    top: 70px;
    right: 0;
    width: 350px;
    max-height: 220px;
    border: 1px solid #dee2e6;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
#autosave_pop::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 7px 6px;
    border-color: transparent transparent #dee2e6 transparent;
}
#autosave_pop::after {
    content: "";
    position: absolute;
    top: -5px;
    right: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 7px 6px;
    border-color: transparent transparent #fff transparent;
}
html.no-overflowscrolling #autosave_pop {
    height: auto;
    max-height: 10000px !important;
}
#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: 12px;
    border-top: 1px solid #e9ecef;
    list-style: none;
    overflow-y: auto;
    height: 130px;
    border-bottom: 1px solid #e9ecef;
}
#autosave_pop li {
    padding: 6px 8px;
    border-bottom: 1px solid #f8f9fa;
    background: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 4px;
}
#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.85em;
    color: #999;
}
.autosave_close {
    cursor: pointer;
    width: 100%;
    height: 30px;
    background: none;
    color: #888;
    font-weight: bold;
    font-size: 0.85em;
}
.autosave_close:hover {
    background: #f8f9fa;
    color: var(--board-accent);
}
.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;
}

/* DHTML editor container */
#bo_w .wr_content.smarteditor2 iframe {
    background: #fff;
}

/* --------------------------------------------------------------------------
   Board View (#bo_v)
   -------------------------------------------------------------------------- */
#bo_v {
    margin-bottom: 20px;
    overflow: hidden;
}

/* Title */
#bo_v_title {
    padding: 4px 0;
}
#bo_v_title .bo_v_cate {
    font-size: 0.8rem;
    vertical-align: middle;
}
#bo_v_title .bo_v_tit {
    display: block;
    word-break: break-all;
    margin-top: 4px;
}

/* Info section */
#bo_v_info h2 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}
#bo_v_info .pf_img img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-fit: cover;
}
#bo_v_info .profile_img {
    display: none;
}
#bo_v_info .sv_member,
#bo_v_info .sv_guest,
#bo_v_info .member,
#bo_v_info .guest {
    font-weight: 600;
}

/* Share/SNS */
#bo_v_share::after {
    display: block;
    visibility: hidden;
    clear: both;
    content: "";
}
#bo_v_sns {
    padding: 0;
    list-style: none;
    display: inline-flex;
    gap: 5px;
    margin: 0;
}
#bo_v_sns li a {
    display: inline-block;
    height: 32px;
    line-height: 32px;
    padding: 0 12px;
    border-radius: 4px;
    color: #fff;
    font-size: 0.85em;
    text-decoration: none;
}
#bo_v_sns li .sns_f { background: #3b5997; }
#bo_v_sns li .sns_t { background: #09aeee; }
#bo_v_sns li .sns_g { background: #ea4026; }
#bo_v_sns li .sns_k { background: #fbe300; color: #333; }

/* Content body */
#bo_v_atc {
    min-height: 200px;
}
#bo_v_atc_title {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

#bo_v_img {
    width: 100%;
    overflow: hidden;
}
#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.8;
    min-height: 200px;
    word-break: break-all;
    overflow: hidden;
}
#bo_v_con a {
    color: var(--board-accent);
    text-decoration: underline;
}
#bo_v_con img {
    max-width: 100%;
    height: auto;
}

/* Good/Nogood buttons */
#bo_v_act .bo_v_act_gng {
    position: relative;
    display: inline-block;
    margin: 0 4px;
}
#bo_v_act_good,
#bo_v_act_nogood {
    display: none;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 8px 16px;
    background: var(--board-accent);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Comments
   -------------------------------------------------------------------------- */
.cmt_btn {
    width: 100%;
    text-align: left;
    border: 0;
    border-bottom: 1px solid #e9ecef;
    background: #fff;
    font-weight: bold;
    margin: 30px 0 0;
    padding: 0 0 15px;
}
.cmt_btn span.total {
    position: relative;
    display: inline-block;
    margin-right: 5px;
    font-size: 1em;
    color: var(--board-accent);
}
.cmt_btn span.total::after {
    position: absolute;
    bottom: -17px;
    left: 0;
    display: inline-block;
    background: var(--board-accent);
    content: "";
    width: 100%;
    height: 2px;
}
.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;
}

#bo_vc h2 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}
#bo_vc article {
    margin: 16px 0;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
}
#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: 40px;
    height: 40px;
}
#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: #888;
    font-size: 0.85em;
}
#bo_vc h1 {
    position: absolute;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}
#bo_vc .cmt_contents {
    line-height: 1.8;
    padding: 8px 0 16px;
}
#bo_vc p a {
    text-decoration: underline;
}
#bo_vc p a.s_cmt {
    text-decoration: underline;
    color: #ed6479;
}
#bo_vc_empty {
    margin: 0;
    padding: 60px 0 !important;
    color: #888;
    text-align: center;
}
#bo_vc #bo_vc_winfo {
    float: left;
}
#bo_vc .bo_vl_opt {
    position: absolute;
    top: 0;
    right: 0;
}

/* Comment action dropdown */
.bo_vc_act {
    display: none;
    position: absolute;
    right: 0;
    top: 35px;
    width: 60px;
    text-align: right;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    margin: 0;
    list-style: none;
    background: #fff;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    padding: 4px 0;
}
.bo_vc_act::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 6px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 7px 6px;
    border-color: transparent transparent #dee2e6 transparent;
}
.bo_vc_act::after {
    content: "";
    position: absolute;
    top: -5px;
    right: 6px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 7px 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: block;
    padding: 8px 12px;
    color: #495057;
    text-decoration: none;
    font-size: 0.85rem;
}
.bo_vc_act li a:hover {
    color: var(--board-accent);
    background: #f8f9fa;
}

/* Comment write form */
.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 #dee2e6;
    background: #fff;
    color: #212529;
    vertical-align: middle;
    border-radius: 6px;
    padding: 10px;
    width: 100%;
    height: 120px;
}
.bo_vc_w textarea:focus {
    border-color: var(--board-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(87,88,214,.15);
}
.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;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 6px 10px;
    height: 36px;
}
.bo_vc_w_info .frm_input:focus {
    border-color: var(--board-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(87,88,214,.15);
}
.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;
}
.bo_vc_w .btn_submit {
    height: 40px;
    padding: 0 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95em;
    background: var(--board-accent);
    color: #fff;
    border: 0;
}
.bo_vc_w .btn_submit:hover {
    background: var(--board-accent-dark);
}
.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;
}

/* Comment checkbox styling */
.bo_vc_w .chk_box input[type="checkbox"] + label {
    padding-left: 20px;
    position: relative;
    color: #676e70;
}
.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;
}

/* Comment SNS */
#bo_vc_send_sns {
    display: inline-block;
    float: left;
}
#bo_vc_sns {
    display: inline-flex;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 5px;
}
#bo_vc_sns li {
    margin: 0;
}
#bo_vc_sns .sns_li_f {
    border-radius: 4px;
    background: #3a589b;
    height: 36px;
    line-height: 36px;
    padding: 0 0 0 10px;
}
#bo_vc_sns .sns_li_t {
    border-radius: 4px;
    background: #00aced;
    height: 36px;
    line-height: 36px;
    padding: 0 0 0 10px;
}
#bo_vc_sns .sns_li_off {
    background: #bbb;
}
#bo_vc_sns a {
    display: inline-block;
    padding: 0 12px 0 5px;
    color: #fff;
    text-decoration: none;
}
#bo_vc_sns input {
    margin: 0 5px 0 0;
}

/* --------------------------------------------------------------------------
   Checkbox styling (legacy support)
   -------------------------------------------------------------------------- */
.selec_chk {
    /* Legacy hidden checkbox - now we use Bootstrap form-check-input */
}
.chk_box {
    position: relative;
}

/* --------------------------------------------------------------------------
   Form inputs (legacy support)
   -------------------------------------------------------------------------- */
.frm_input {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 8px 12px;
    height: 40px;
    box-sizing: border-box;
}
.frm_input:focus {
    border-color: var(--board-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(87,88,214,.15);
}
.full_input {
    width: 100%;
}
.half_input {
    width: 49%;
}

/* --------------------------------------------------------------------------
   Button styles (legacy support for non-Bootstrap areas like comments)
   -------------------------------------------------------------------------- */
.btn_frmline {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: #fff;
    color: #495057;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
}
.btn_frmline:hover {
    border-color: var(--board-accent);
    color: var(--board-accent);
}
.btn_cancel {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: #fff;
    color: #495057;
    text-decoration: none;
}
.btn_cancel:hover {
    border-color: #adb5bd;
    color: #212529;
}
.btn_submit {
    display: inline-block;
    padding: 8px 20px;
    border: 0;
    border-radius: 6px;
    background: var(--board-accent);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}
.btn_submit:hover {
    background: var(--board-accent-dark);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 767.98px) {
    #bo_list .table {
        font-size: 0.8rem;
    }
    #bo_list .table .td_name,
    #bo_list .table .td_num,
    #bo_list .table .td_datetime {
        display: none;
    }
    #bo_list .table thead th:nth-child(n+4) {
        display: none;
    }

    .bo_sch {
        width: 95vw;
    }

    #bo_v_title .bo_v_tit {
        font-size: 1.3rem;
    }

    #bo_v_info .d-flex {
        flex-wrap: wrap;
    }

    #autosave_pop {
        width: 280px;
        right: -10px;
    }
}

@media (max-width: 575.98px) {
    .btn_bo_user .sound_only + .sound_only {
        display: none;
    }

    #bo_v_top .btn-group {
        flex-wrap: wrap;
    }
}

/* --------------------------------------------------------------------------
   Pagination override (match theme accent)
   -------------------------------------------------------------------------- */
.page-link {
    color: var(--board-accent);
}
.page-link:hover {
    color: var(--board-accent-dark);
}
.page-item.active .page-link {
    background-color: var(--board-accent);
    border-color: var(--board-accent);
}

/* Gnuboard native pagination styling */
.pg_wrap {
    text-align: center;
}
.pg_wrap .pg {
    display: inline-flex;
    gap: 2px;
    align-items: center;
}
.pg_wrap .pg a,
.pg_wrap .pg .pg_current {
    display: inline-block;
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    padding: 0 8px;
    border-radius: 6px;
    font-size: 0.875rem;
    text-align: center;
    text-decoration: none;
    color: #495057;
    border: 1px solid #dee2e6;
    background: #fff;
}
.pg_wrap .pg a:hover {
    background: #f8f9fa;
    border-color: var(--board-accent);
    color: var(--board-accent);
}
.pg_wrap .pg .pg_current {
    background: var(--board-accent);
    border-color: var(--board-accent);
    color: #fff;
    font-weight: 600;
}
.pg_wrap .pg .pg_start,
.pg_wrap .pg .pg_end,
.pg_wrap .pg .pg_prev,
.pg_wrap .pg .pg_next {
    color: #6c757d;
}
