@charset "utf-8";

/* 초기화 */
html {overflow-y:scroll; font-size: var(--font-size-base);}
body {margin:0;padding:0;font-size:var(--font-size-sm);font-family:'Pretendard', 'Noto Sans KR', sans-serif;background:var(--bg-light);color:var(--text-primary);line-height:1.7}
html, h1, h2, h3, h4, h5, h6, form, fieldset, img {margin:0;padding:0;border:0}
h1 {font-size:var(--font-size-lg);font-weight:700;font-family:'Pretendard', 'Noto Sans KR', sans-serif}
h2 {font-size:var(--font-size-md);font-weight:600;font-family:'Pretendard', 'Noto Sans KR', sans-serif}
h3 {font-size:var(--font-size-sm);font-weight:600;font-family:'Pretendard', 'Noto Sans KR', sans-serif}
h4, h5, h6 {font-size:var(--font-size-sm);font-weight:500;font-family:'Pretendard', 'Noto Sans KR', sans-serif}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block}

ul, dl, dt, dd {margin:0;padding:0;list-style:none}
legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
label, input, button, select, img {vertical-align:middle}
input, button {margin:0;padding:0;font-family:'Noto Sans KR', sans-serif;font-size:1em}
input[type="submit"] {cursor:pointer}
button {cursor:pointer}

textarea, select {font-family:'Noto Sans KR', sans-serif;font-size:var(--font-size-sm)}
select {margin:0}
p {margin:0;padding:0;word-break:break-word; font-size:var(--font-size-sm);}
hr {display:none}
pre {overflow-x:auto;font-size:var(--font-size-sm)}
a {color:var(--text-primary);text-decoration:none;transition:color 0.2s}
a:hover {color:var(--primary)}

*, :after, :before {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}

.db_wrap::-webkit-scrollbar {
    display: block;
    width: 5px;
    height: 5px;
}

.db_wrap::-webkit-scrollbar-track {
    background: var(--bg-light);
    margin-top: 15px;
}

.db_wrap::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
    margin-top: 15px;
}

.db_wrap::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
    margin-top: 15px;
}

/* 통일된 색상 팔레트 - 비즈니스 라이너 스타일 */
:root {
    /* 메인 색상 - #EC6521 기반 */
    --primary: #EC6521;           /* 메인 오렌지 */
    --primary-hover: #d4551a;     /* 메인 오렌지 호버 */
    --primary-light: #FFF4EC;     /* 연한 오렌지 배경 */
    --primary-lighter: #FFFBF7;   /* 더 연한 오렌지 */
    --primary-dark: #c2410c;      /* 어두운 오렌지 */
    
    /* 텍스트 색상 */
    --text-primary: #1f2937;      /* 기본 텍스트 */
    --text-secondary: #4b5563;    /* 보조 텍스트 */
    --text-muted: #6b7280;        /* 흐린 텍스트 */
    --text-light: #9ca3af;        /* 밝은 텍스트 */
    --text-white: #ffffff;        /* 흰색 텍스트 */
    
    /* 배경 색상 */
    --bg-white: #ffffff;          /* 흰색 배경 */
    --bg-light: #f9fafb;          /* 밝은 배경 */
    --bg-lighter: #f3f4f6;        /* 더 밝은 배경 */
    --bg-dark: #1f2937;           /* 어두운 배경 */
    --bg-darker: #111827;         /* 더 어두운 배경 */
    
    /* 테두리 색상 */
    --border-light: #f3f4f6;      /* 밝은 테두리 */
    --border-default: #e5e7eb;    /* 기본 테두리 */
    --border-dark: #d1d5db;       /* 어두운 테두리 */
    
    /* 시스템 색상 */
    --success: #059669;           /* 성공 */
    --info: #2563eb;              /* 정보 */
    --warning: #d97706;           /* 경고 */
    --danger: #dc2626;            /* 위험 */
    
    /* 그림자 - 최소화 */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    /* 폰트 사이즈 */
    --font-size-base: 14px;
    --font-size-xs: 0.857rem;  /* 12px */
    --font-size-sm: 1rem;      /* 14px */
    --font-size-md: 1.143rem;  /* 16px */
    --font-size-lg: 1.286rem;  /* 18px */
    
    /* 모바일 폰트 사이즈 (약간 크게) */
    --mobile-font-size-xs: 0.929rem;  /* 13px */
    --mobile-font-size-sm: 1.071rem;  /* 15px */
    --mobile-font-size-md: 1.214rem;  /* 17px */
    --mobile-font-size-lg: 1.357rem;  /* 19px */
    
    /* 대체용 변수 (기존 코드 호환성) */
    --secondary: #4b5563;
    --accent: #EC6521;
    --text-dark: #1f2937;
    --border: #e5e7eb;
    --white: #ffffff;
    --dark: #1f2937;
    --darker: #111827;
    
    /* 반지름 및 전환 효과 */
    --radius-sm: 0.125rem;
    --radius-md: 0.25rem;
    --radius-lg: 0.5rem;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.2s ease;
}

input[type=text], input[type=password], textarea {
  transition:border-color 0.15s ease;
  outline:none;
  border:1px solid var(--border-default);
  border-radius:3px;
  font-size:var(--font-size-sm);
  padding:10px 14px;
  background:var(--bg-white);
}

input[type=text]:focus, input[type=password]:focus, textarea:focus, select:focus {
  box-shadow:none;
  border-color:var(--primary) !important;
}

.placeholdersjs {color:#aaa !important}

/* 레이아웃 크기 지정 */
#hd, #wrapper, #ft {min-width:320px} /* 모바일 최소 너비로 조정 */

#hd_pop,
#hd_wrapper,
#tnb .inner,
#gnb .gnb_wrap,
#container_wr,
#ft_wr {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 모바일에서 패딩 조정 */
@media (max-width: 768px) {
    #hd_pop,
    #hd_wrapper,
    #tnb .inner,
    #gnb .gnb_wrap,
    #container_wr,
    #ft_wr {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    #hd_pop,
    #hd_wrapper,
    #tnb .inner,
    #gnb .gnb_wrap,
    #container_wr,
    #ft_wr {
        padding: 0 5px;
    }
}

/* 팝업레이어 */
#hd_pop {z-index:1000;position:relative;margin:0 auto;height:0}
#hd_pop h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
.hd_pops {position:absolute;border:1px solid var(--border-default);background:var(--bg-white);box-shadow:none;border-radius:2px;overflow:hidden;}
.hd_pops img {max-width:100%}
.hd_pops_con {}
.hd_pops_footer {padding:0;background:var(--bg-dark);color:var(--bg-white);text-align:left;position:relative}
.hd_pops_footer:after {display:block;visibility:hidden;clear:both;content:""}
.hd_pops_footer button {padding:10px 15px;border:0;color:var(--bg-white);font-size:var(--font-size-sm);transition:background 0.2s;}
.hd_pops_footer .hd_pops_reject {background:var(--bg-dark);text-align:left}
.hd_pops_footer .hd_pops_reject:hover {background:var(--bg-darker);}
.hd_pops_footer .hd_pops_close {background:var(--bg-darker);position:absolute;top:0;right:0}
.hd_pops_footer .hd_pops_close:hover {background:var(--primary);}

/* 상단 레이아웃 */
#hd {background:var(--bg-white); border-bottom:1px solid var(--border-light);}
#hd_h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}

#tnb {border-bottom:1px solid var(--border-light);margin:0 auto}
#tnb:after {display:block;visibility:hidden;clear:both;content:""}
#tnb .inner {margin:0 auto}

#hd_wrapper {position:relative;margin:0 auto;height:auto;zoom:1}
#hd_wrapper:after {display:block;visibility:hidden;clear:both;content:""}

/* 중간 레이아웃 */
#wrapper {margin:0 auto}
#container_wr:after {display:block;visibility:hidden;clear:both;content:""}
#container_wr {margin:0 auto; background: var(--bg-white); zoom:1}
#aside {float:right;width:235px;padding:0;height:100%;margin:20px 0 20px 20px}

#container {
    position: relative;
    float: left;
    min-height: 500px;
    height: auto !important;
    margin: 20px 0;
    font-size: var(--font-size-sm);
    width: 100%;
    zoom: 1;
}

/* 모바일에서 컸테이너 여백 조정 */
@media (max-width: 768px) {
    /* 모바일 폰트 크기 적용 */
    html { font-size: 15px; }
    :root {
        --font-size-base: 15px;
    }
    body, p, textarea, select { font-size: var(--mobile-font-size-sm); }
    h1 { font-size: var(--mobile-font-size-lg); }
    h2 { font-size: var(--mobile-font-size-md); }
    h3, h4, h5, h6 { font-size: var(--mobile-font-size-sm); }
    
    #container {
        margin: 15px 0;
        min-height: 300px;
    }
    
    #aside {
        width: 100%;
        margin: 10px 0 0 0;
        float: none;
    }
}

@media (max-width: 480px) {
    #container {
        margin: 10px 0;
        min-height: 250px;
    }
}
#container:after {display:block;visibility:hidden;clear:both;content:""}
#container_title {
    font-size: var(--font-size-md);
    margin: 0 auto;
    font-weight: bold;
}

#container_title span {
    margin: 0 auto 10px;
    display: block;
    line-height: 30px;
}

/* 모바일에서 페이지 제목 크기 조정 */
@media (max-width: 768px) {
    #container_title {
        font-size: 1.2em;
    }
    
    #container_title span {
        line-height: 26px;
    }
}

@media (max-width: 480px) {
    #container_title {
        font-size: 1.1em;
    }
    
    #container_title span {
        line-height: 24px;
        margin: 0 auto 8px;
    }
}

.lt_wr {width:32%}
.lt_wr:nth-child(3n+1) {clear:both}
.latest_wr {margin-bottom:20px}
.latest_wr:after {display:block;visibility:hidden;clear:both;content:""}
.latest_top_wr {margin:0 -10px 20px}
.latest_top_wr:after {display:block;visibility:hidden;clear:both;content:""}

/* 화면낭독기 사용자용 */
#hd_login_msg {position:absolute;top:0;left:0;font-size:0;line-height:0;overflow:hidden}
.msg_sound_only, .sound_only {display:inline-block !important;position:absolute;top:0;left:0;width:0;height:0;margin:0 !important;padding:0 !important;font-size:0;line-height:0;border:0 !important;overflow:hidden !important}

/* 본문 바로가기 */
#skip_to_container a {z-index:100000;position:absolute;top:0;left:0;width:1px;height:1px;font-size:0;line-height:0;overflow:hidden}
#skip_to_container a:focus, #skip_to_container a:active {width:100%;height:75px;background:var(--primary);color:var(--bg-white);font-size:var(--font-size-lg);font-weight:bold;text-align:center;text-decoration:none;line-height:3.3em}

/* ie6 이미지 너비 지정 */
.img_fix {width:100%;height:auto}

/* 캡챠 자동등록(입력)방지 기본 -pc */
#captcha {display:inline-block;position:relative}
#captcha legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
#captcha #captcha_img {height:40px;border:1px solid var(--border-light);vertical-align:top;padding:0;margin:0}
#captcha #captcha_mp3 {margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../../../img/captcha2.png') no-repeat;text-indent:-999px;border-radius:3px}
#captcha #captcha_reload {margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../../../img/captcha2.png') no-repeat 0 -40px;text-indent:-999px;border-radius:3px}
#captcha #captcha_key {margin:0 0 0 3px;padding:0 5px;width:90px;height:40px;border:1px solid var(--border-light);background:var(--bg-white);font-size:var(--font-size-sm);font-weight:bold;text-align:center;border-radius:3px;vertical-align:top}
#captcha #captcha_info {display:block;margin:5px 0 0;font-size:0.95em;letter-spacing:-0.1em}

/* 캡챠 자동등록(입력)방지 기본 - mobile */
#captcha.m_captcha audio {display:block;margin:0 0 5px;width:187px}
#captcha.m_captcha #captcha_img {width:160px;height:60px;border:1px solid #e9e9e9;margin-bottom:3px;margin-top:5px;display:block}
#captcha.m_captcha #captcha_reload {position:static;margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../../../img/captcha2.png') no-repeat 0 -40px;text-indent:-999px}
#captcha.m_captcha #captcha_reload span {display:none}
#captcha.m_captcha #captcha_key {margin:0;padding:0 5px;width:115px;height:29px;border:1px solid #b8c9c2;background:#f7f7f7;font-size:1.333em;font-weight:bold;text-align:center;line-height:29px;margin-left:3px}
#captcha.m_captcha #captcha_info {display:block;margin:5px 0 0;font-size:0.95em;letter-spacing:-0.1em}
#captcha.m_captcha #captcha_mp3 {width:31px;height:31px;background:url('../../../img/captcha2.png') no-repeat 0 0 ; vertical-align:top;overflow:hidden;cursor:pointer;text-indent:-9999px;border:none}

/* ckeditor 단축키 */
.cke_sc {margin:0 0 5px;text-align:right}
.btn_cke_sc {display:inline-block;padding:0 10px;height:23px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none;line-height:1.9em;vertical-align:middle;cursor:pointer}
.cke_sc_def {margin:0 0 5px;padding:10px;border:1px solid #ccc;background:#f7f7f7;text-align:center}
.cke_sc_def dl {margin:0 0 5px;text-align:left;zoom:1}
.cke_sc_def dl:after {display:block;visibility:hidden;clear:both;content:""}
.cke_sc_def dt, .cke_sc_def dd {float:left;margin:0;padding:5px 0;border-bottom:1px solid #e9e9e9}
.cke_sc_def dt {width:20%;font-weight:bold}
.cke_sc_def dd {width:30%}

/* ckeditor 태그 기본값 */
#bo_v_con ul {display:block;list-style-type:disc;margin-top:1em;margin-bottom:1em;margin-left:0;margin-right:0;padding-left:40px}
#bo_v_con ol {display:block;list-style-type:decimal;margin-top:1em;margin-bottom:1em;margin-left:0;margin-right:0;padding-left:40px}
#bo_v_con li {display:list-item}

/* 버튼 */
a.btn,.btn {line-height:36px;height:36px;padding:0 20px;text-align:center;font-weight:500;border:0;font-size:var(--font-size-sm);border-radius:2px;
transition:background-color 0.15s ease}

a.btn01 {display:inline-block;padding:8px 18px;border:1px solid var(--border-default);background:var(--bg-white);color:var(--text-primary);text-decoration:none;vertical-align:middle;font-size:var(--font-size-sm);border-radius:2px;transition:all 0.15s}
a.btn01:focus, a.btn01:hover {text-decoration:none;background:var(--bg-light);border-color:var(--primary);color:var(--primary)}
button.btn01 {display:inline-block;margin:0;padding:7px 15px;border:1px solid var(--border-light);background:var(--bg-light);color:var(--text-primary);text-decoration:none;font-size:var(--font-size-sm);border-radius:4px;transition:all 0.2s}
a.btn02 {display:inline-block;padding:8px 18px;border:1px solid var(--primary);background:var(--primary);color:var(--bg-white);text-decoration:none;vertical-align:middle;font-size:var(--font-size-sm);border-radius:2px;transition:all 0.15s}
a.btn02:focus, .btn02:hover {text-decoration:none;background:var(--primary-hover);transform:none;}
button.btn02 {display:inline-block;margin:0;padding:7px 15px;border:1px solid var(--bg-dark);background:var(--bg-dark);color:var(--bg-white);text-decoration:none;font-size:var(--font-size-sm);border-radius:4px;transition:all 0.2s}

.btn_confirm {text-align:right} /* 서식단계 진행 */

.btn_submit {border:0;background:var(--primary);color:var(--bg-white);cursor:pointer;border-radius:2px;font-size:var(--font-size-sm);padding:10px 20px;transition:background-color 0.15s}
.btn_submit:hover {background:var(--primary-hover);transform:none;box-shadow:none;}
.btn_close {border:1px solid var(--border-default);cursor:pointer;border-radius:2px;background:var(--bg-white);font-size:var(--font-size-sm);padding:10px 20px;transition:all 0.15s}
.btn_close:hover {border-color:var(--border-dark);background:var(--bg-light)}
a.btn_close {text-align:center;line-height:50px}

a.btn_cancel {display:inline-block;background:var(--text-secondary);color:var(--bg-white);text-decoration:none;vertical-align:middle;font-size:var(--font-size-sm);padding:10px 20px;border-radius:2px;transition:all 0.15s}
button.btn_cancel {display:inline-block;background:var(--text-secondary);color:var(--bg-white);text-decoration:none;vertical-align:middle;font-size:var(--font-size-sm);padding:10px 20px;border-radius:2px;transition:all 0.15s}
.btn_cancel:hover {background:var(--text-primary);transform:none;}
a.btn_frmline, button.btn_frmline {display:inline-block;width:128px;padding:0 5px;height:40px;border:0;background:var(--dark);border-radius:3px;color:var(--white);text-decoration:none;vertical-align:top} /* 우편번호검색버튼 등 */
a.btn_frmline {}
button.btn_frmline {font-size:1em}

/* 게시판용 버튼 */
a.btn_b01,.btn_b01 {display:inline-block;color:var(--text-muted);text-decoration:none;vertical-align:middle;border:0;background:transparent;font-size:var(--font-size-sm);transition:color 0.15s}
.btn_b01:hover, .btn_b01:hover {color:var(--primary)}
a.btn_b02,.btn_b02 {display:inline-block;background:var(--primary);padding:7px 14px;color:var(--bg-white);text-decoration:none;border:0;vertical-align:middle;font-size:var(--font-size-sm);border-radius:2px;transition:all 0.15s}
a.btn_b02:hover, .btn_b02:hover {background:var(--primary-hover);transform:none;}
a.btn_b03, .btn_b03 {display:inline-block;background:var(--white);border:1px solid var(--border);color:var(--text-dark);text-decoration:none;vertical-align:middle}
a.btn_b03:hover, .btn_b03:hover {background:var(--bg-light)}
a.btn_b04, .btn_b04 {display:inline-block;background:var(--white);border:1px solid var(--border);color:var(--secondary);text-decoration:none;vertical-align:middle}
a.btn_b04:hover, .btn_b04:hover {color:var(--text-dark);background:var(--bg-light)}
a.btn_admin,.btn_admin {display:inline-block;color:var(--danger);text-decoration:none;vertical-align:middle} /* 관리자 전용 버튼 */
.btn_admin:hover, a.btn_admin:hover {color:#c82333}

/* 기본테이블 */
.tbl_wrap table {width:100%;border-collapse:collapse;border-spacing:0 5px;background:var(--bg-white);border-top:1px solid var(--border-light);border-bottom:1px solid var(--border-light)} 
.tbl_wrap caption {padding:10px 0;font-weight:bold;text-align:left}
.tbl_head01 {margin:0 0 10px}
.tbl_head01 caption {padding:0;font-size:0;line-height:0;overflow:hidden}
.tbl_head01 thead th {padding:15px 0;font-weight:500;text-align:center;border-bottom:1px solid var(--border-light);height:40px;font-size:var(--font-size-sm);color:var(--text-primary)}
.tbl_head01 thead th input {vertical-align:top} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head01 tfoot th, .tbl_head01 tfoot td {padding:10px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:var(--bg-light);text-align:center}
.tbl_head01 tbody th {padding:8px 0;border-bottom:1px solid var(--border-light)}
.tbl_head01 td {color:var(--text-primary);padding:10px 5px;border-top:1px solid var(--border-light);border-bottom:1px solid var(--border-light);line-height:1.4em;height:60px;word-break:break-word;font-size:var(--font-size-sm)}
.tbl_head01 tbody tr:hover td {background:var(--bg-light)}
.tbl_head01 a:hover {text-decoration:underline}

/* 페이징 */
.pg_wrap {clear:both;float:left;display:inline-block}
.pg_wrap:after {display:block;visibility:hidden;clear:both;content:""} 
.pg {text-align:center}
.pg_page, .pg_current {display:inline-block;vertical-align:middle;background:var(--bg-white);border:1px solid var(--border-default);transition:all 0.15s}
.pg a:focus, .pg a:hover {text-decoration:none}
.pg_page {color:var(--text-secondary);font-size:var(--font-size-sm);height:32px;line-height:30px;padding:0 10px;min-width:32px;text-decoration:none;border-radius:2px}
.pg_page:hover {background-color:var(--bg-light);border-color:var(--primary);color:var(--primary)}
.pg_start {text-indent:-999px;overflow:hidden;background:url('../img/btn_first.gif') no-repeat 50% 50% var(--bg-white);padding:0;border:1px solid var(--border-default);border-radius:2px;transition:all 0.15s}
.pg_prev {text-indent:-999px;overflow:hidden;background:url('../img/btn_prev.gif') no-repeat 50% 50% var(--bg-white);padding:0;border:1px solid var(--border-default);border-radius:2px;transition:all 0.15s}
.pg_end {text-indent:-999px;overflow:hidden;background:url('../img/btn_end.gif') no-repeat 50% 50% var(--bg-white);padding:0;border:1px solid var(--border-default);border-radius:2px;transition:all 0.15s}
.pg_next {text-indent:-999px;overflow:hidden;background:url('../img/btn_next.gif') no-repeat 50% 50% var(--bg-white);padding:0;border:1px solid var(--border-default);border-radius:2px;transition:all 0.15s}
.pg_start:hover,.pg_prev:hover,.pg_end:hover,.pg_next:hover {background-color:var(--bg-light);border-color:var(--primary)}

.pg_current {display:inline-block;background:var(--primary);border:1px solid var(--primary);color:var(--bg-white);font-weight:600;height:32px;line-height:32px;padding:0 12px;min-width:32px;border-radius:2px;font-size:var(--font-size-sm)}

/* 테이블과 버튼 모바일 반응형 */
@media (max-width: 768px) {
    .tbl_wrap {
        overflow-x: auto;
    }
    
    .tbl_head01 th, .tbl_head01 td {
        padding: 8px 3px;
        font-size: var(--font-size-xs);
    }
    
    .tbl_head01 thead th {
        padding: 12px 0;
        font-size: var(--mobile-font-size-xs);
    }
    
    .btn01, .btn02, .btn_frmline {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .pg_page {
        height: 26px;
        line-height: 24px;
        padding: 0 4px;
        min-width: 26px;
        font-size: 12px;
    }
    
    .pg_current {
        height: 26px;
        line-height: 26px;
        padding: 0 8px;
        min-width: 26px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .tbl_head01 th, .tbl_head01 td {
        padding: 6px 2px;
        font-size: 11px;
        line-height: 1.3;
    }
    
    .tbl_head01 thead th {
        padding: 10px 0;
        font-size: 12px;
    }
    
    .btn01, .btn02, .btn_frmline {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .pg_page {
        height: 24px;
        line-height: 22px;
        padding: 0 3px;
        min-width: 24px;
        font-size: 11px;
    }
    
    .pg_current {
        height: 24px;
        line-height: 24px;
        padding: 0 6px;
        min-width: 24px;
        font-size: 11px;
    }
}

/* Mobile화면으로 */
#device_change {display:block;margin:0.3em;padding:0.5em 0;border:1px solid var(--border-default);border-radius:2px;background:var(--bg-white);color:var(--text-primary);font-size:var(--font-size-md);text-decoration:none;text-align:center;transition:all 0.15s}
#device_change:hover {background:var(--bg-light);border-color:var(--primary);color:var(--primary)}