@charset "utf-8";
/* input */
/* 체크박스 */
input[type="checkbox"] {
  cursor: pointer;
  width:15px;
  height:15px;
}

/* 라디오 */
input[type="radio"] {

  cursor: pointer;
}

[onclick] {
    cursor: pointer !important;
}

/* 본문 시작 */
#container {
    max-width:1500px;
    margin: 0 auto;
    margin-bottom:50px;
}
/* 상단배경부분 */
.page-header {
	background: 
	    url('/images/egovframework/com/sub_bg.png'),
        linear-gradient(to right, #eaf5fb, #e8f1fc);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
    text-align: center;
}
.page-title {
    font-size: 24px;
    font-weight: 600;
    color: #0f2c53;
    font-family: "SBAggro", sans-serif;
}
.page-title > span {
	color:#f7941d;
}

/* 네비게이션 */
.page-nav {
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
}
.nav-inner {
    width: 1500px;
    margin: 0 auto;
}
/* 네비게이션 리스트 */
.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    white-space:nowrap;/* 줄바꿈 방지 */
}
/* 각 항목 */
.nav-list > li {
    width:220px;
    padding: 0 20px;
    border-right: 1px solid #dddddd;
    font-size: 16px;
    color: #515151;
    cursor: pointer;
    height:48px;
    line-height:48px;
}
.nav-list > li:first-child {
    width:60px;
    text-align:center;
    color:#143860;
}
.has-dropdown {
    position: relative;
}
.nav-list > li > span {
    float:right;
}
/* 드롭다운 기본 숨김 */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -1px;
    z-index: 999;
    background: #ffffff;
    border: 1px solid #ddd;
    width: 221px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dropdown-menu > li {
    border-bottom: 1px solid #eee;
    line-height: 30px;
}

.dropdown-menu > li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}

.dropdown-menu > li a:hover {
    background-color: #f0f0f0;
}

/* 활성화 시 표시 */
.has-dropdown.active .dropdown-menu {
    display: block;
}

/* 탭 공통 스타일 */
.tab1 {
    margin-top: 24px;
}
.tab-list {
    display: flex;
    justify-content:center;
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    gap: 16px;
    flex-wrap: wrap;
}
.tab-list li a {
    border:1px solid #ececec;
    border-radius:20px;
    display: inline-block;
    padding: 10px 60px;
    font-weight: 600;
    font-size: 16px;
    color: #3d3d3d;
    transition: all 0.3s ease;
}

.tab-list li a.active {
    border-radius:20px;
    background-color:#f7941d;
    color: #ffffff;
    border-color: #f7941d;
}
/* 큰타이틀 */
.sub {
    max-width: 1500px;
    margin: 0 auto;
    padding: 50px 0 30px 0;
}
.sub-title {
    font-size: 34px;
    font-weight: 600;
    color: #3d3d3d;
    text-align: center;
    font-family: "SBAggro", sans-serif;
}
/* 검색바 */
.board-search {
    display: flex;
    margin-bottom: 30px;
    padding: 25px 10px;
    background:#f4f5f9;
    gap: 6px;
    justify-content:center;
    align-items:center;
}

.search-input {
    padding: 12px 12px;
    font-size: 15px;
    border: 1px solid #cdcdcd;
    outline: none;
    min-width: 300px;
}
.search-select {
    padding: 11px 10px;
    font-size: 15px;
    border: 1px solid #cdcdcd;
    outline: none;
    min-width: 150px;
    color:#4c4c4c;
}

/* 검색 조건 라벨 스타일 */
.search-label {
    display: inline-block;
    width: 4rem; /* rem 변환 (기준 font-size: 16px) */
    vertical-align: middle;
    margin-right: 0.3125rem; /* 5px */
    font-size:16px; /* 사용자 설정 반영 가능 */
    font-weight:500;  
    color:#333333;
}

.search-btn {
    padding: 13px 16px;
    background-color: #3b5c84;
    color: #fff;
    font-size: 15px;
    border: none;
    cursor: pointer;
}

/* 비활성화 버튼 스타일 */
.search-btn-disabled {
    padding: 8px 12px;
    background-color: #7fa3cc;
    color: #fff;
    font-size: 15px;
    border: none;
    pointer-events: none;
}

/* 게시판 상단 영역 */
.board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 10px;
    font-size: 16px;
    color: #333;
    flex-wrap: wrap; /* 줄바꿈 허용 */
}

.board-info {
    flex: 1;
    min-width: 200px;
    font-weight:500;
}
.board-info strong {
    color:#ff7f00;
}
.board-action {
    display:flex;
    justify-content:right;
    align-items: center;
    gap:5px;
}
.board-action a{
    flex: none;
}

/* 테이블 */
.board-wrapper {
    overflow-x: auto;
}

.board-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-top:1px solid #666666;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.board-table th {
    padding: 15px;
    border-bottom: 1px solid #ddddde;
    text-align: center;
    color:#414141;
    font-size:16px;
}
.board-table td {
    padding: 15px;
    border-bottom: 1px solid #ddddde;
    text-align: center;
    color:#414141;
    font-size:16px;
}
.board-table tr:hover td {
    cursor: pointer;
    background-color: #f4f5f9;
    color: #3b5c84;
}

.board-table .btnViewLog:hover td {
    cursor:pointer;
    background-color:#f4f5f9;
    color:#3b5c84;
}

.board-table #resultRow:hover td {
    cursor:pointer;
    background-color:#f4f5f9;
    color:#3b5c84;
}

/* 장비게시판 */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;  /* 카드 사이 간격 */
    width: 100%;
    margin: 0;  /* 여백 제거 */
}

/* 카드 박스 */
.equipment-card {
    background-color: #fff;
    border: 1px solid #dddddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
    max-width:290px;
}

.equipment-card:hover {
    transform: translateY(-4px);
    border:1px solid #3b5c84;
}

/* 이미지 */
.equipment-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

/* 정보 텍스트 */
.equipment-info {
    padding: 16px;
    font-size: 17px;
    color: #333;
    font-weight:600;
}
.equipment-info > div{
    display: -webkit-box;
    -webkit-line-clamp: 2;   /* 최대 2줄 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;  /* 긴 단어 줄바꿈 허용 */
    line-height: 1.4em;
    height: calc(1.4em * 2); /* 2줄 높이 제한 */
}
.equipment-info .label-1 {
    display: inline-block;
    min-width: 70px;
    background-color: #153861;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    padding: 5px 6px;
    margin-right: 10px;
    margin-bottom: 10px;
}
.equipment-info .label {
    display: inline-block;
    min-width: 70px;
    background-color: #f4f5f9;
    color: #153861;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    padding: 5px 6px;
    margin-right: 10px;
    margin-bottom: 10px;
}
.gallery-date {
	font-size:17px; 
	color:#7b8794; 
	text-align:right; 
	padding:0 16px 16px 16px;
}
/* 버튼 */
.btn-detail {
    display: block;
    padding: 12px;
    text-align: center;
    background-color: #f4f4f4;
    color: #1f1f1f;
    font-weight: bold;
    border-top: 1px solid #eee;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn-detail:hover {
    background-color: #e0e0e0;
}

/* 장비상세페이지 */
/* 메인 레이아웃 */
.equipment-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px auto;
}

/* 좌측 이미지 */
.equipment-detail-image {
    width: 100%;
    flex: 1 1 400px;
    max-width: 500px;
    margin:61px 0;
}

.equipment-detail-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* 우측 정보 */
.equipment-detail-info {
    flex: 1 1 500px;
}

/* 제목 */
.equipment-detail-title {
    font-size: 26px;
    color: #1f3d7a;
    margin-bottom: 20px;
    border-bottom: 2px solid #1f3d7a;
    padding-bottom: 10px;
    word-break: break-all;
    overflow-wrap: break-word;
}

/* 핵심 정보 */
.equipment-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 15px;
}

/* 테이블 */
.equipment-detail-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border-top: 1px solid #cccccc;
}

.equipment-detail-table th,
.equipment-detail-table td {
    border-bottom: 1px solid #cccccc;
    padding: 12px 16px;
    text-align: left;
    font-size: 16px;
    line-height:25px;
    color:#313131;
    word-break: break-all;
    overflow-wrap: break-word;
}

.equipment-detail-table th {
    border-right: 1px solid #cccccc;
    background-color: #f8fafd;
    width: 180px;
}
.equipment-detail-table th:not(:first-child) {
  border-left: 1px solid #cccccc;
}
/* 버튼 */
.equipment-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content:end;
}

/* 줄바꿈 허용, 단위로 끊기 */
.text-pre {
    white-space: pre-wrap;        /* 줄바꿈 허용 + \n 처리 */
    word-break: break-word;       /* 너무 긴 단어 끊음 */
    overflow-wrap: break-word;    /* 오래된 브라우저 호환 */
    line-height: 1.7;
    max-width: 100%;
}
/* 오시는 길  */
.location-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 0 40px 0;
}
.map-section {
    width: 100%;
    height: 540px;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.info-card {
    flex: 1 1 300px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-card i {
    font-size: 24px;
    color: #1f3d7a;
    min-width: 30px;
}

.info-card .text-box {
    flex: 1;
}

.info-card .text-box h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
    color: #1f3d7a;
}

.info-card .text-box p {
    margin: 0;
    font-size: 15px;
    color: #555;
}
.map-buttons {
    display: flex;
    flex-wrap:wrap;
    justify-content: right;
    gap:10px;
    margin-top: 10px;

}

/* 알림마당_게시판 정보 */
.notice-detail {
    max-width: 1500px;
    margin: 0 auto;
    color: #333;
}
/* 제목 */
.notice-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    border-top:1px solid #a3a3a3;
    line-height: 30px;
    padding: 15px 0px;
    
    /* 단어가 길어도 줄바꿈 */
    overflow-wrap: break-word;
    word-wrap: break-word; /* IE 호환용 */
}
/* 기타정보 */
.info-box {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    background: #fcfcfc;
    border: 1px solid #a3a3a3;
    padding: 35px 100px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.info-left,
.info-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
    min-width: 200px;
}

.info-box div div {
    font-size: 18px;
}

.info-box strong {
    display: inline-block;
    width: 150px;
    color: #1f3d7a;
}
/* 내용 */
.notice-body {
    font-size: 17px;
    line-height: 1.7;      /* 원하는 줄 간격 */
    white-space: normal;    /* pre-line 제거 → 줄바꿈은 <br/>로만 처리 */
    overflow: visible;
    border-bottom: 1px solid #a3a3a3;
    min-height: 300px;
    padding:0 20px 20px 20px;
    /* 단어가 길어도 줄바꿈 */
    overflow-wrap: break-word;
    word-wrap: break-word; /* IE 호환용 */
}
/* 첨부파일 */
.attachments ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #a3a3a3;
}

.attachments li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 16px;
    color: #3e3e3e;
}

.attachments .file-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.attachments button {
    background: #fff;
    border: 1px solid #a2a2a2;
    color: #383838;
    padding: 6px 12px;
    font-size: 15px;
    cursor: pointer;
}
.attachments button:hover {
    background: #1f3d7a;
    color: #fff;
}

.btn-area {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px 0 0 0;
}
/* 사업공고 */
.board-list {
    max-width: 1500px;
    margin: 0 auto;
}

.board-item {
    display: flex;
    justify-content: space-between;
    border: 1px solid #d7d7d7;
    padding: 30px;
    margin-bottom: 20px;
    background-color: #ffffff;
    gap: 16px;
    flex-wrap: wrap;
    min-height:160px;
}

.board-item:hover {
     background-color: #fff9f7;
        cursor: pointer;
}

.board-left {
    flex: 1 1 80%;
    min-width: 250px;
}

.board-right {
    font-size: 18px;
    color: #666666;
    white-space: nowrap;
    align-self: flex-start;
    line-height: 1.5;
}

.badge {
    display: inline-block;
    width:90px;
    padding: 5px 0;
    font-size: 18px;
    border-radius: 7px;
    color: #ffffff;
    margin-bottom: 6px;
    float: left;
    text-align: center;
}

.in-progress .badge {
    background-color: #00b1c9;
}

.closed .badge {
    background-color: #b3b3b3;
}

.stop .badge {
    background-color: #eb7067;
}

.ready .badge {
    background-color: #ccca41;
}

.item-title {
    font-weight: 600;
    font-size: 18px;
    color: #222222;
    margin-bottom: 10px;
    float: left;
    padding:0px 15px;
    line-height: 1.5;
}

.board-meta {
    font-size: 17px;
    color: #666666;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    line-height: 1.5;
    clear: both;
}
.meta-inner {
    padding:0 100px;
}
.meta-inner > .title {
    padding: 0 20px 0 0;
}
.meta-inner > .content {
    padding: 0 0 0 20px ;
}
/* 자주하는 질문 */
.faq-item {
    background: #ffffff;
    border: 1px solid #e1e1e1;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-question {
    cursor: pointer;
    padding: 25px;
    font-size: 18px;
    font-weight: 600;
    color: #222222;
    position: relative;
    display: flex;
}

.faq-title {
    flex: 1;
    white-space: normal;
    word-break: break-word;
    margin-right: 20px; /* icon까지의 거리 확보 */
}

.faq-content p {
    white-space: pre-wrap;  /* 줄바꿈 유지, 공백 연속 허용 */
    word-break: break-word;  /* 긴 단어 자동 개행 */
    line-height: 1.6;        /* 줄간격 설정, 필요시 조정 */
    margin: 0 0 10px 0;      /* 단락 간 간격 (선택 사항) */
}

.faq-answer {
    display: flex;          /* 라벨과 내용 가로 배치 */
    align-items: flex-start; /* A. 기준 상단 정렬 */
    padding: 15px 25px;      /* 기존 padding 유지 */
    color: #555555;
    font-size: 18px;
    background: #ffffff;
    max-height: none;       /* 전체 내용 표시 */
    overflow: visible;      /* 스크롤 제거 */
}

.faq-label {
    flex: 0 0 auto;         /* 라벨 영역 고정 */
    font-weight: 600;
    padding-right: 10px;    /* 내용과 간격 */
    color: #b30000;
}

.faq-content {
    flex: 1 1 auto;         /* 내용 영역 가변 */
}

.faq-question span {
    color:#33537c;
    padding-right:5px;
}

.faq-question .icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #555555;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: #555555;
    font-size: 18px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer span {
    color:#b30000;
    padding-right:5px;
}
.faq-item.active {
    background: #fafcff;
    border: 1px solid #7d7e80;
    box-shadow: 0px 2px 6px #b6b6b6;
}
.faq-item.active .faq-answer {
    background: #ffffff;
    padding: 25px 25px;
}

/* 인사말 */
.intro-container {
    display: flex;
    align-items: flex-start; /* 왼쪽·오른쪽 요소 모두 상단 정렬 */
    gap: 40px;
    background: #ffffff;
    justify-content:center;
}
.intro-container img {
	width:100%;
	height:auto;
}
.intro-image {
    flex:1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.intro-image img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a3c60;
    font-family: "SBAggro", sans-serif;
}
.intro-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a3c60;
    text-align: center;
    font-family: "SBAggro", sans-serif;
}

.intro-text p {
    font-size: 18px;
    line-height: 2;
    color: #555555;
}
.intro-contact {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #dddddd;
    font-size: 16px;
    color: #333333;
}

.intro-contact p {
    margin: 5px 0;
}

.intro-contact i {
    color: #1a3c60;
    margin-right: 8px;
}

.intro-director {
    margin-top: 30px;
    text-align: right;
    font-size: 25px;
    font-weight: 600;
    color: #1a3c60;
    font-family: "SBAggro", sans-serif;
}
/* 관리자 */
/* 관리자 타이틀 */
.admin-sub {
    display:flex;
    align-items:center;
    justify-content:center;
    padding-bottom:20px;
}
.admin-sub-title {
    font-size: 30px;
    font-weight: 600;
    color: #3d3d3d;
    text-align: center;
    font-family: "SBAggro", sans-serif;
}
/* 테이블 디자인 */
.admin-table-bg {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 15px;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #cccccc;
}

.admin-table th,
.admin-table td {
    border-bottom: 1px solid #cccccc;
    padding: 12px 16px;
    text-align: left;
    font-size: 16px;
    line-height:25px;
    color:#313131;
}

.admin-table th {
    border-right: 1px solid #cccccc;
    background-color: #f8fafd;
    width: 15%;
}
.admin-table th:not(:first-child) {
    border-left: 1px solid #cccccc;
}
/* 버튼 */
.admin-table-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content:end;
}
/* 페이징 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

.pagination ul {
    display: flex;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pagination a {
    display: inline-block;
    padding: 10px 15px;
    color: #959595;
    background-color: #fff;
    border: 1px solid #ddddde;
    text-decoration: none;
    font-size: 15px;
}

.pagination a:hover {
    background-color: #3b5c84;
    color: #ffffff;
}

.pagination .current a {
    display: inline-block;
    padding: 10px 15px;
    color: #3b5c84;
    background-color: #f4f5f9;
    text-decoration: none;
    font-size: 15px;
    pointer-events: none;
}

.pagination .current a:hover {
    background-color: #3b5c84;
    color: #ffffff;
}

/*
.pagination .first a {
    background: url('../../assets/icons/arrow-double-left.svg') no-repeat center center;
    background-size: 15px;
    text-indent:-10000em;
}
*/

/* 버튼디자인 */
.btn {
    padding: 10px 20px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    border:0;
    font-size:16px;
}
.btn_primary {
    background-color: #1f3d7a;
}
.btn_primary:hover {
    background-color: #163062;
}

.btn_secondary {
    background-color: #999;
}

.btn_secondary:hover {
    background-color: #777;
}

.btn_danger {
    background-color: #dc3545;
}

.btn_danger:hover {
    background-color: #B42734;
}

/* 배경없는 버튼 */
.btn-txt {
    background: inherit;
    color:#3c3c3c;
    padding:0;
}
.btn-txt:hover {
    color:#EB003B;
}
.status-all {
    background-color: #000000;
    color: #f7f7f7;
}

.status-ing {
    background-color: #00b1c9;
}

.status-ready {
    background-color: #ccca41;
}

.status-end {
    background-color: #b3b3b3;
}

.btn.sort {
    background-color: #333;
    color: #fff;
}

.btn.sort.sort-active {
    background-color: #dc3545;
    font-weight: bold;
}

.sort-buttons {
    display: flex;
    flex-wrap:wrap;
    justify-content: right;
    gap:10px;
    margin-top: 10px;
}

/* 로그인 화면 */
.login {
    background:#f8f8f8;
    width:100%;
    height: 100%;
    display: flex;
    justify-content: center; /* 가로 가운데 */
    align-items: center;     /* 세로 가운데 */
    padding:10px;
    box-sizing: border-box;
    font-family: "SBAggro", sans-serif;
}
.login-inner {
    width: 100%;
    max-width:900px;
}
.login-logo {
    display: flex;
    justify-content: left;
    margin-bottom:10px;
}
.login-logo img {
    max-width: 300px;
    width:100%;
    height:auto;
}
/* 로그인 부분 */
.login-form {
    max-width: 900px;
    margin: 0 auto;
    padding:50px 100px;
    box-sizing: border-box;
    background:#ffffff;
    border-radius:20px;
    box-shadow:0 2px 8px #797979;
}

.login-form h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    margin-bottom:10px;
}
.login-form p  {
    text-align: center;
    margin-bottom:30px;
    color:#5f5f5f;
}
.login-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.login-inputs {
    flex: 1;
}

.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-row label {
    width: 100px;
    font-size: 18px;
    color: #222;
}

.login-msg {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
}
.error-msg {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

.form-row input[type="text"],
.form-row input[type="password"] {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.checkbox-row {
    margin-top: 10px;
}

.checkbox-row label {
    font-size: 16px;
    color: #555;
    margin-left: 100px;
}

.login-button {
    flex-shrink: 0;
}

.login-button button {
    background-color: #2b9db4;
    color: #fff;
    border: none;
    padding: 38px 35px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    height: 100%;
}

.login-button button:hover {
    background-color: #1b7a8c;
}
/* 로그인 카피 */
.login-copy {
    padding-top:30px;
}
.login-copy p {
    text-align:center;
    color:#5f5f5f;
    font-size:16px;
    line-height:1.7;
}
.login-copy span {
    color:#5f5f5f;
}
/* caption 태그에 적용: 화면에는 보이지 않지만 스크린 리더는 읽을 수 있도록 처리 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* 날짜 선택 버튼  */
.datepicker-button {
    width: 32px;
    height: 32px;
    /*background: url('../../assets/icons/calendar.svg') no-repeat center center;*/
    background:inherit;
    font-size:20px;
    background-size: contain;
    border: none;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    /* 웹 접근성: 포커스 시 outline */
    outline: none;
}

.datepicker-button:focus-visible {
    outline: 2px solid #7fa3cc;
    outline-offset: 4px;
    border-radius: 6px;
    transition: outline-offset 0.2s ease-in-out;
}

/* 스크린 리더용 텍스트 */
.datepicker-button .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* 게시판 등록화면 */
.form-group {
    display: flex;
    flex-direction: column;
    gap:10px;
    width:100%;
    border-top: 1px solid #1f3d7a;
    padding: 20px 20px 30px 20px;
    border-bottom: 1px solid #1f3d7a;
}
.form-group .form-tit {
    width: 100%;
}
/* 타이틀 */
.form-tit {
    display: flex;
    position: relative;
    font-size: 18px;
    color:#1f3d7a;
    font-weight: 600;
    margin-top:10px;
}
.form-group .form-conts {
    display: flex;
    flex-direction: column;
    gap:10px;
    width:100%;
}
.form-control {
    position: relative;
    width:100%;
    height:50px;
    border:1px solid #c6c6c6;
    padding:0 16px;
    border-radius: 10px;
}
/* textarea */
.textarea-wrap {
    display: flex;
    align-items: normal;
    justify-content: flex-start;
    flex-direction: column;
}
textarea.form-control {
    height: 160px;
    padding:16px;
    line-height: 1.5;
}
.textarea-count {
    font-size: 16px;
    width:100%;
    margin-top:10px;
    text-align: right;
}
.form-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap; /* 반응형 처리 */
}
.form-row span {
    white-space: nowrap;
}
/* 첨부파일 */
.file-upload {
    display:flex;
    align-items:center;
    justify-content: center;
    flex-direction: column;
    border:1px dashed #C6C6C6;
    background:#f0f0f0;
    border-radius:12px;
    padding:40px;
    gap:10px;
}
.file-upload .txt {
    color:#3c3c3c;
    font-size: 17px;
}
.file-upload-result {
    display: flex;
    flex-wrap: wrap;
    margin-top:24px;
}
.file-upload-result .upload-top {
    flex:1;
    order: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.file-upload-result .upload-top .file-total {
    flex:1;
    font-weight: 700;
}
.file-upload-result .upload-top .file-total .current {
    color:#1f3d7a;
}
.file-upload-result .upload-list {
    display: flex;
    align-items: normal;
    justify-content: flex-start;
    flex-direction: column;
    gap:10px;
    margin-top:20px;
    width:100%;
}
.file-upload-result .upload-list > li {
    padding:20px;
    border-radius: 10px;
    border:1px solid #c6c6c6;
}
.file-upload-result .upload-list .in {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap:10px;
}
.file-upload-result .upload-list .in .file-name {
    flex:1;
    overflow: hidden;
    text-overflow: ellipsis;
    color:#3c3c3c;
}
.file-upload-result .upload-delete-btn {
    order: -1;
    line-height: 1;
}
.file-upload-result .upload-list > li.is-error {
    border:1px solid #eb003b;
    background: #fdf2f3;
}
.file-upload-result .upload-list .file-hint {
    padding-top:16px;
    margin-top:16px;
    border-top:1px solid #d8d8d8;
    color:#EB003B;
    line-height: 1.5;
}
.form-select {
    width:100%;
    height:50px;
    border:1px solid #c6c6c6;
    padding:0 16px;
    border-radius: 10px;
}

/* 기본 select2 컨테이너 높이 조정 */
.select2-container .select2-selection--single {
    height: 50px;
    border:1px solid #c6c6c6;
    border-radius:10px;
    padding: 0 10px;
}

/* 텍스트 위치 중앙 정렬 */
.select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 50px;
}

/* 화살표 중앙 정렬 */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    display: flex;
    align-items: center;
}
/* x 중앙 정렬 */
.select2-container--default .select2-selection--single .select2-selection__clear {
    height: 100%;
    display: flex;
    align-items: center;
}

/* 조직도 전체 */
.organ_bg {
    text-align: center;
}

/* 센터장 */
.depth01 {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 70px;
    margin: 0 auto 2.5em;
    background: #33537c;
    border-radius: 50px;
}

.depth01 > p {
    color:#ffffff;
    font-size:1.4rem;
    font-weight:500;
    line-height:70px;
}

/* 로고 아래 세로선 */
.depth01::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 2.5rem;
    background: #dadada;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

/* 1차 조직 */
.depth02 {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9%;
    position: relative;
}

/* 개별 li */
.depth02 > li {
    position: relative;
    flex: 1 1 17rem;
    margin-top:2.5rem;
    max-width: 17rem;
}

/* 각 li 상단 세로선 */
.depth02 > li::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 2.5rem;
    background: #dadada;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
}

/* 상단 타이틀 박스 */
.organ_title1 {
    background: #f4f5f9;
    padding: 1rem;
    color: #33537c;
    font-weight: 500;
    font-size:1.4rem;
    border:1px solid #33537c;
}
/* 타이틀 밑에 내용 */
.organ_content {
    display: flex;
    text-align: left;
    padding: 1rem;
    line-height: 2rem;
    font-size: 1.1rem;
    color:#333333;
    border: 1px solid #dadada;
    margin-top: 10px;
    min-height: 150px;
}
/* 조직도 테이블 */
.organ_table {
    width:100%;
    margin-top: 3rem;
}
.organ_table > ul {
    list-style:none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.organ_table > ul > li.inner {
    flex: 0 0 49%;
    margin:10px 0.5%;
    box-sizing: border-box;
}
.og_title {
    margin-bottom: 10px;
}
.og_title > img {
    display: inline-block;
    vertical-align: bottom;
}
.og_title > p {
    display: inline-block;
    vertical-align: bottom;
    font-size: 20px;
    font-weight: 600;
    color: #33537c;
}
.og_content {
    position: relative;
    text-align: center;
    border-spacing: 0;
    table-layout: fixed;
    width:100%;
    border-top:2px solid #33537c;
    border-bottom:1px solid #aaaaaa;
    border-collapse:separate;
    box-sizing: border-box;
}
.og_content th {
    background: #f6f7f9;
    border-right:1px solid #e0e0e0;
    border-bottom:1px solid #e0e0e0;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #383838;
    padding:15px 20px;
    box-sizing: border-box;
}
.og_content td {
    padding:10px 20px;
    border-right:1px solid #e0e0e0;
    border-bottom:1px solid #e0e0e0;
    box-sizing: border-box;
    font-size: 1.1rem;
    color: #383838;
    text-align: center;
    line-height: 30px;
}
.og_content tr:last-child td {
	border-bottom:0;
}
.og_content td:last-child,
.og_content th:last-child {
    border-right:0;
}
/* 중앙 가로선 */
/* .depth02.depth_line::after {
    content: "";
    position: absolute;
    top: 0rem;
    left: 50%;
    width: 33.5rem;
    height: 2px;
    background: #dadada;
    transform: translateX(-50%);
} */

.central-line {
    position: absolute;
    height: 2px;
    background: #dadada;
    top: 0; /* li 위쪽 중앙선 위치 */
    z-index: -1;
}

.central-line-row {
    position: absolute;
    height: 2px;
    background: #dadada;
    z-index: -1;
}

.vertical-line {
    position: absolute;
    width: 2px;
    background: #dadada;
    left: 50%;
    transform: translateX(-50%);
}

.textarea-display{
    white-space: pre-wrap;
    word-break: break-word;
}

/* 모바일 전용 전체 선택 */
.mobile-only-select{
	display: none;
}

/* 반응형 */
@media (max-width: 1499px) {
    .nav-inner {
        min-width: unset;    /* 모바일에서 고정 폭 해제 */
        width: auto;  /* 내용만큼 너비 */
    }
    
    #container {
        padding: 0 10px;
    }
    /* 장비목록 */
    .equipment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
        justify-content: center;
    }
    .equipment-card {
        max-width:100%;
    }
    .equipment-card img {
        width: 100%;
        object-fit: contain;
    }

    .search-label {
        width: 4rem;
    }
    .search-input {
        min-width:120px;
    }
    .datepicker-button {
        width: 28px;
        height: 28px;
    }
    /* 조직도 */
    .depth02 {
        gap:5%;
    }
    .depth02 > li {
        flex:1 1 16rem;
    }
}
@media (max-width: 1263px) {
    /* 조직도 */
    .depth01 {
        margin:0 auto;
        height:50px;
    }
    .depth01 > p {
        line-height:50px;
        font-size:1.2rem;
    }
    .depth01::before {
        display: none;
    }
    .depth02.depth_line::after {
        display: none; /* 1열일 때 가로선 제거 */
    }
    .depth02 > li {
        flex:1 1 23rem;
        max-width: 23rem;
        margin-top:1.8rem;
    }
    .depth02 > li::before {
        display:none;
    }
    .organ_title1 {
        font-size: 1.2rem;
        padding:0.8rem;
    }
    .organ_content {
        font-size:1rem;
    }
    .central-line-row {
        display:none;
    }
}
@media (max-width: 1024px) {
    /* 검색바 */
    .board-search {
        flex-direction: column;
        align-items: stretch;
    }

    .search-btn {
        margin-top: 6px;
    }
    .datepicker-button {
        width: 26px;
        height: 26px;
    }
    /* 로그인 화면 */
    .login-logo img {
        max-width: 200px;
    }

    .login-copy p {
        font-size: 1rem;
    }
    /* 사업공고 */
    .board-item {
        padding: 25px;
    }

    .board-list > .item-title {
        font-size: 1.1rem;
    }

    .badge {
        font-size: 1rem;
        width: 85px;
    }

    .board-meta {
        font-size: 1rem;
        gap: 6px 14px;
    }
    .meta-inner {
        padding:0 10px;
    }
    /* 인사말 */
    .intro-container {
        flex-direction: column;
        text-align: center;
    }
    .intro-text h2
    ,.intro-text h3 {
        font-size: 28px;
    }
    .intro-text p {
        font-size: 16px;
    }
}

@media (max-width: 954px) {
    /* 장비정보 */
    .equipment-detail-image {
        max-width: 100%;
        margin:0;
    }

    .search-label {
        display: block;
        width: 100%;
        margin-bottom: 4px;
    }

    .datepicker-button {
        width: 24px;
        height: 24px;
    }

    /* 사업공고 */
    .board-item {
        padding: 20px;
        gap: 12px;
    }

    .item-title {
        font-size: 1rem;
    }

    .badge {
        font-size: 0.9rem;
        width: 80px;
    }

    .board-meta {
        font-size: 0.9rem;
        gap: 6px 12px;
    }
    .board-right {
        font-size: 0.9rem;
    }
    .info-box {
        gap: 20px;
        padding:35px;
    }
    .info-box div div {
        font-size:17px;
    }
    .info-box strong {
        width:100px;
    }
    .notice-body {
        padding:0 20px 20px 20px;
    }
    /* 인사말 */
    .intro-image {
        aspect-ratio: 16/9;  /* 원하는 비율 */
        width: 100%;
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    /* 상단배경부분 */
    .page-header {
        background-position:left;
    }
    .page-title {
        font-size: 17px;
    }
    .sub {
        padding:40px 0 20px 0;
    }
    .nav-list > li {
        width: 8.8rem;
        white-space: nowrap;
        border-right: none;
        padding: 0 10px;
        border-right:1px solid #dddddd;
        font-size:15px;
    }
    /* 드롭메뉴 */
    .dropdown-menu {
        width:8.9rem;
    }
    
    /* 탭디자인 */
    .tab-list {
       display:none;
    }

    .tab-list li a {
        border: 1px solid #ddd;
        font-size: 0.9rem;
        padding: 10px;
        display: block;
        text-align: center;
    }

    .tab-list li a.active {
        background-color: #f7941d;
        color: #fff;
        border-color: #f7941d;
    }
    /* 검색바 */
    .search-select {
        font-size: 0.9rem;
        padding:8px;
    }
    .search-input {
        font-size: 0.9rem;
        padding:8px;
    }
    .search-btn {
        font-size: 0.9rem;
        margin-top: 6px;
    }
    /* 관리자 */
    .admin-sub-title {
        font-size:25px;
    }
    .admin-table-bg {
        gap:7px;
        font-size:14px;
    }
    .admin-table {
        table-layout: auto !important;
        width: 100% !important;
    }
    colgroup col {
        width: auto !important;
    }
    .admin-table th {
        text-align:center;
        border-right:0;
    }
    .admin-table th, 
    .admin-table td {
        font-size:14px;
        line-height:20px;
        width:100%;
        display:block;
    }
    
    .admin-table-buttons {
        display: flex;
        flex-direction: column;     /* 세로 나열 */
        align-items: stretch;       /* 버튼 폭 부모 폭에 맞춤 */
        gap: 8px;                   /* 버튼 간격 확보 */
        width: 100%;                /* 부모 폭에 맞춤 */
    }

    .admin-table-buttons button {
        width: 100%;                /* 버튼 전체 폭 */
        min-height: 40px;           /* 최소 높이 확보 */
        font-size: 15px;            /* 모바일 글자 크기 */
        padding: 0.5em 1em;
        box-sizing: border-box;
    }
    
    .form-control {
        height:40px;
    }
    .form-select {
        height:40px;
    }
    /* 게시판 상단 영역 */
    .board-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .board-action {
        width: 100%;
        text-align: left;
        flex-direction:column;
        align-items:stretch;
    }

    .btn-register {
        width: 100%;
        padding: 10px 0;
        font-size: 16px;
    }

    /* 게시판 모바일 */
   .board-wrapper {
        overflow-x: visible; /* 스크롤 제거 */
        width: 100%;
        box-sizing: border-box;
    }

    .board-table,
    .board-table thead,
    .board-table tbody,
    .board-table th,
    .board-table td,
    .board-table tr {
        display: block;
        width: 100%;
    }
    
    .board-table {
        width: 100%;
        min-width: 0;      /* 부모보다 작게 허용 */
        max-width: 100%;   /* 부모 폭 넘지 않음 */
        table-layout: auto;
        border: none;
        box-shadow: none;
    }

    .board-table thead {
        display: none; /* 헤더 숨김 */
    }

    .board-table tr {
        margin-bottom: 15px;
        border: 1px solid #dddddd;
        border-radius: 10px;
        padding: 10px 20px;
        background: #ffffff;
    }
    
    .board-table td {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        padding: 8px 0;
        border-bottom: 0;
        white-space: nowrap;            /* 한 줄 유지 */
        overflow: hidden;               /* 넘치는 텍스트 숨김 */
        text-overflow: ellipsis;        /* 줄임표 처리 */
        max-width: 100%;                /* 부모 폭 맞춤 */
        box-sizing: border-box;
    }
    
    .board-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #33537c;
        flex:0 0 40%;
    }

    /* 폼 버튼 전체 클릭 영역 */
    .board-table td a{
        width: 100%;
        /*
        긴 제목 줄임표 처리
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; 
         */ 
        border: none;
        background: transparent;
        text-align: left;
        padding: 10px 0;
        font-size: 16px;
        cursor: pointer;
        font-weight: bold;
    }
    .board-table tr:hover {
        border:1px solid #3b5c84; 
    }
    /* tr hover는 모바일에서 터치용으로 색상만 변경 */
    .board-table tr:hover td {
        color: #414141;
        font-weight: 500;
        background-color:#ffffff;
    }
    .board-table #resultRow:hover td {
        color:#3b5c84;
        font-weight:500;
    }
    /* 데이터 존재하지 않는 경우 별도 처리*/
    .board-table td.noData::before {
        content: none !important; /* before 제거 */
    }

    .board-table td.noData {
        display: block !important;
        text-align: center;
        align-items: unset;
        justify-content: unset;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        padding: 20px 10px;
        background-color: #f9f9f9;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;
    }
    
    /* 장비목록 */
    .equipment-card {
        max-width: 100%;
    }
    /* 장비정보 */
    .equipment-detail {
        flex-direction: column;
        margin:20px 0 0 0;
    }
    .equipment-detail-info {
        max-width: 100%;
    }
    .equipment-quick-info {
        flex-direction: column;
    }
    .equipment-buttons {
        flex-direction: column;
    }
    /* 오시는길 */
    .map-section {
        height: 400px;
    }
    .info-cards {
        flex-direction: column;
    }
    .info-card {
        flex:1 1;
    }
    .map-buttons  {
        flex-direction: column;
    }
    .pagination a {
        padding: 6px 7px;
        font-size: 0.9rem;
    }
    .pagination .current a {
        padding: 6px 7px;
        font-size: 0.9rem;
    }

    /* 알림마당_게시판정보 */
    .sub-title {
        font-size: 1.5rem;
    }
    .notice-detail {
        padding:0;
    }
    .notice-title {
        font-size: 1rem;
        line-height: 20px;
    }
    .info-box {
        grid-template-columns: 1fr;
        padding: 30px 40px;
        gap: 20px;
        margin-bottom: 10px;
    }
    .info-left, .info-right {
        gap: 20px;
    }
    .info-box div div {
        font-size: 0.9rem;
    }
    .notice-body {
        font-size: 0.9rem;
        line-height: 1.5rem;
        color:#333333;
    }
    .btn-area {
        flex-direction: column;
        align-items: stretch;
    }
    .attachments ul {
        margin-bottom:0;
    }
    .attachments li {
        gap: 10px;
        font-size: 0.9rem;
    }
    .attachments button {
        align-self: center;
        font-size:0.9rem;
        border:0;
    }
    .attachments button .txt {
        display:none;
    }

    /* textarea 값 출력 */
    .textarea-display {
        white-space: pre-wrap;
        word-wrap: break-word;
    }

    .search-label {
        display: block;
        width: 100%;
        font-size: 0.9375rem; /* 15px */
        margin-bottom: 0.375rem; /* 6px */
    }

    .datepicker-button {
        width: 44px;
        height: 44px;
        background-size: 22px 22px; /* 아이콘 작게 */
    }

    /* 로그인 화면 */
    .login-logo {
        justify-content: center;
    }
    .login-logo img {
        max-width: 250px;
    }
    /* 로그인부분 */
    .login-form {
        padding:60px;
    }
    .login-form h2 {
        font-size: 2rem;
    }
    .login-flex {
        flex-direction: column;
    }
    .login-inputs {
        width:100%;
    }
    .login-button {
        width: 100%;
    }
    .login-button button {
        width: 100%;
        padding: 16px;
        min-height: auto;
        font-size: 0.9rem;
    }
    .checkbox-row label {
        margin-left: 0;
    }
    .form-row {
        flex-direction: column;
        align-items: stretch;
    }
    .form-row label {
        width: 100%;
        margin-bottom: 5px;
        font-size: 0.9rem;
    }
    .form-row input[type="text"],
    .form-row input[type="password"] {
        font-size: 0.9rem;
    }
    /* 로그인카피 */
    .login-copy p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .login-copy {
        padding:20px 20px 0 20px;
    }

    /* 사업공고 */
    .board-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .board-left {
        width: 100%;
    }

    .item-title {
        float: none;
        padding: 0;
        margin-top: 10px;
    }

    .badge {
        float: none;
        display: inline-block;
    }

    .board-meta {
        flex-direction: column;
        gap: 4px;
    }
    .meta-inner {
        padding:0;
    }
    .board-right {
        align-self: flex-end;
        margin-top: 10px;
        font-size: 0.9rem;
    }
    
    .btn {
        font-size:14px;
    }
    .btn.sort {
        padding: 10px 20px;
        margin: 3px 0;
        display: block;
        width: 100%;
    }

    .sort-buttons {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    
    .error {
        color: #dc3545 !important;
        font-weight: bold !important;
    }
    
    .error-custom {
        color: #dc3545 !important;
        font-weight: bold !important;
    }
    /* 자주하는 질문 */
    .faq-question {
        padding: 15px;
        font-size: 16px
    }
    
    .faq-question .icon {
        right: 15px;
    } 
    
    .faq-answer {
        font-size: 15px;
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        padding: 10px 15px 15px;
        line-height: 25px;
    }
    /* 인사말 */
    .intro-container {
        padding: 20px;
    }
    .intro-text h2 {
        font-size: 24px;
    }
    .intro-text p {
        font-size: 15px;
    }
    .equipment-detail-title {
        font-size:22px;
    }
    .equipment-detail-table,
    .equipment-detail-table tbody,
    .equipment-detail-table tr,
    .equipment-detail-table th,
    .equipment-detail-table td {
        display: block;
        width: 100%;
    }
    .equipment-detail-table th:not(:first-child) {
        border-left:0;
    }
    .equipment-detail-table tr {
        overflow: hidden;
    }
    
    .equipment-detail-table th {
        background: #f8fafd;
        width: 100%;
        padding: 10px 14px;
        font-size:14px;
        border-right:0;
        text-align:center;
    }
    
    .equipment-detail-table td {
        padding: 10px 14px;
        background: #fff;
        font-size:14px;
    }
    
    /* colspan 된 셀은 여백 조정 */
    .equipment-detail-table td[colspan] {
        background: #ffffff;
    }
    
    /* 내용이 긴 td (class="cnt") 가독성 향상 */
    .equipment-detail-table .cnt {
        line-height: 1.6;
        word-break: keep-all;
    }
    .organ_table > ul {
        flex-direction: column;
    }

    .organ_table > ul > li.inner {
        flex: 1 1 100%;
        margin: 0 0 20px;
    }

    .og_content {
        width: 100% !important;
        border: 1px solid #ddd;
        border-radius: 10px;
        overflow: hidden;
        border-top: 3px solid #33537c;
        padding:10px;
    }

    .og_content colgroup,
    .og_content thead,
    .og_content th {
        display: none; /* 테이블 헤더 숨김 */
    }

    .og_content tr {
        display: block;
        border-bottom: 1px solid #eee;
        padding: 10px 15px;
        width: 100% !important;
        box-sizing:border-box;
    }
    .og_content tr:first-child {
        display: none;
    }
    .og_content tr:last-child {
        border-bottom: none;
    }

    .og_content td {
        display: flex;
        justify-content: flex-start;
        text-align: left;
        border: none;
        padding: 5px 0;
        font-size: 1rem;
    }

    .og_content td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #33537c;
        flex: 0 0 40%;
    }

    .og_content td:last-child {
        border: none;
    }
    
    /* 모바일 전용 전체 선택 영역 */
    .mobile-only-select {
        display: flex;
        align-items: center;
        padding: 8px 10px;
        border: 1px solid #ddd;
        border-radius: 6px;
        margin-bottom: 10px;
    }

    /* 체크박스 스타일 */
    .mobile-only-select input[type="checkbox"] {
        width: 15px;
        height: 15px;
        margin-right: 8px;
        cursor: pointer;
    }

    /* 레이블 텍스트 */
    .mobile-only-select label {
        font-size: 15px;
        color: #333;
        cursor: pointer;
        user-select: none;
        font-weight: bold;
    }
    .attachments .file-info {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis; /* ... 처리 */
        gap:5px;
        display:inline-block;
    }
}
@media (max-width: 391px) {
	.dropdown-menu {
	    width: 7.1rem;
	}
}
#leftMenu {
    width: 300px;
}

@media (max-width: 1024px) {
    #adminLeft {
        width: auto;
    }
    #leftMenu {
        width: auto;
    }
}
