/* 공지사항 게시판 스타일 */
.notice-list {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
}


.list_count {
	text-align:right;
	margin-bottom:10px;
    font-size: 15px;
    color: #666;
}

.list_count strong {
    color: #333;
}

/* 필터 스타일 */
.list_filter {
    margin-bottom: 30px;
}

.filter_group {
    display: flex;
    justify-content:flex-end !important;
}

.filter_item{
	flex:none;
}

.filter_item select {
    width: 120px;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

/* 테이블 스타일 */
.notice_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
	font-size:17px;
}

.notice_table th,
.notice_table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.notice_table th {
    background: #f8f9fa;
    font-weight: 500;
    color: #333;
}

.notice_table td {
    color: #666;
}

.notice_table .td_num {
    width: 80px;
}

.notice_table .td_category {
    width: 100px;
}

.notice_table .td_subject {
    text-align: left;
}

.notice_table .td_name {
    width: 120px;
}

.notice_table .td_date {
    width: 200px;
}

.notice_table .td_view {
    width: 80px;
}

/* 카테고리 태그 */
.category_tag {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f0f0;
    color: #666;
    border-radius: 20px;
    font-size: 13px;
}

/* 검색 영역 */
.bo_sch_wrap {
    position: relative;
    display: none;
    margin-bottom: 30px;
}

.bo_sch {
    position: relative;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.bo_sch h3 {
    margin: 0 0 15px;
    font-size: 18px;
    color: #333;
}

.sch_bar {
    display: flex;
    gap: 10px;
}

.sch_input {
    flex: 1;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.sch_btn {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.bo_sch_cls {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
}

.bo_sch_bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

/* 버튼 스타일 */
.btn_write:hover {
    background: #003366;
}

/* 빈 목록 */
.empty_list {
    padding: 50px 0;
    text-align: center;
    color: #666;
    font-size: 15px;
}

/* 페이지네이션 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 30px 0;
}

.pagination a,
.pagination strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination a:hover {
    background: #f8f9fa;
    border-color: #999;
}

.pagination strong {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* 검색 영역 */
.search_box {
    display: flex;
    gap: 10px;
}

#search_input {
    width: 200px;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.filter_buttons{
	text-align:center;
}
.btn_search {
    padding: 0 20px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn_search:hover {
    background: #003366;
}

@media (max-width: 768px) {
    .search_box {
        width: 100%;
    }
    
    #search_input {
        width: 100%;
    }
    
    .btn_search {
        white-space: nowrap;
    }
} 






/* view */

/* 공지사항 상세보기 테이블 스타일 */
.bo_v_wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.bo_v_table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid #333;
    margin-bottom: 30px;
}

.bo_v_table th,
.bo_v_table td {
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 15px;
    line-height: 1.5;
}

.bo_v_table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    text-align: center;
    width: 15%;
}

.bo_v_table td {
    color: #333;
}

.bo_v_table tr:first-child td {
    font-weight: 600;
    font-size: 18px;
}

.bo_v_content {
    min-height: 300px;
    line-height: 1.8;
}

.bo_v_content img {
    max-width: 100%;
    height: auto;
}

.bo_v_content p{
	margin:0; 
}

.bo_v_file {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bo_v_file li {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.bo_v_file li:first-child {
    padding-top: 0;
}

.bo_v_file li:last-child {
    padding-bottom: 0;
}

.bo_v_file li a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bo_v_file li a:hover {
    color: #007bff;
}

.bo_v_file li .file_size {
    color: #666;
    font-size: 13px;
    margin-left: auto;
}

.bo_v_btn {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.bo_v_btn .btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.bo_v_btn .btn_list {
    background: #6c757d;
    color: #fff;
}

.bo_v_btn .btn_list:hover {
    background: #5a6268;
}

.bo_v_btn .btn_edit {
    background: #0056b3;
    color: #fff;
}

.bo_v_btn .btn_edit:hover {
    background: #0056b3;
}

.bo_v_btn .btn_del {
    background: #dc3545;
    color: #fff;
}

.bo_v_btn .btn_del:hover {
    background: #c82333;
} 

.datepicker{
	padding:12px;
}