.radio_box {
    width: 100%;
    background-color: #f5f7f8;
    margin: 5px;
    padding: 15px 0;
}

.radio_btnbox {
    width: 50%;
    margin-bottom: 30px;
}

.filter_btn_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.excel_btn {
    border: 1px solid #ccc;
    color: #212529;
    padding: 12px 30px;
}

.excel_btn::after {
    content: "\F30A";
    font-family: "bootstrap-icons" !important;
    margin-left: 10px;
}

.excel_btn:hover {
    color: #fff;
    background-color: #1d6d43;
    border-color: #1d6d43;
    transition: all 0.3s;
}

/* 검색창 */
.day_con,
.sort_box {
    display: flex;
    align-items: center;
}

.date_txt {
    margin-right: 30px;
}

.date_box input {
    border-bottom: 3px solid #212529;
    height: 46px;
    padding: 0 10px;
}

.date_box span {
    margin: 0 10px;
}

.sort_con {
    position: relative;
    display: flex;
    width: 150px;
    height: 46px;
    box-sizing: border-box;
    background-color: #fff;
    overflow: hidden;
    margin-right: 20px;
    border-bottom: 3px solid #212529;
}

.sort_con::after {
    content: "\F282";
    font-family: "bootstrap-icons" !important;
    display: inline-flex;
    line-height: 40px;
    position: absolute;
    right: 10px;
    color: #212529;
    font-size: 14px;
}

.bi-file-earmark-pdf-fill{
    color: red;
}

.select_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search_con {
    height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid #212529;
}

select,
.search_con input {
    height: 100%;
    width: 100%;
}

.search_con input:first-child {
    width: 350px;
    min-width: 100px;
    padding-left: 10px;
}

.search_con input:last-child {
    width: 80px;
    background-color: #212529;
    color: #fff;
    margin-left: 10px;
}

/* 게시판 리스트 */
.notice_con {
    width: 100%;
    border-top: 1px solid #212529;
    text-align: center;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
}

.notice_con th,
.notice_con td {
    border-bottom: 1px solid #ccc;
}

.notice_con td a i {
    color:#c51b06;
}

.notice_con th {
    height: 70px;
}

.notice_con td {
    padding: 18px 0;
    color: #495059;
}


/* 페이지네비게이션+편집 */
.page_btn {
    position: relative;
}

.move {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.move li:not(:last-child) {
    margin-right: 5px;
}

.move li:not(:first-child) {
    margin-left: 5px;
}

.move li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
}

.move li.active {
    background: rgb(240, 17, 17);
    background: linear-gradient(90deg, rgba(240, 17, 17, 1) 0%, rgba(201, 0, 0, 1) 100%);
}

.move li.active a {
    color: #fff;
}

/* 편집버튼 */
.edit_con {
    position: absolute;
    right: 0;
    top: 0;
}

.edit_con button {
    padding: 0 20px;
    height: 42px;
    line-height: 42px;
}

.btn_del {
    border: 1px solid #ccc;
    margin-right: 5px;
}

@media screen and (max-width: 1280px) {
    .date_txt {
        margin-right: 10px;
    }
    .date_box input {
        padding: 0;
    }
    .sort_con {
        width: 120px;
    }
    .search_con input:first-child {
        width: 300px;
    }
}

@media screen and (max-width: 1200px) {
    .notice_con colgroup,
    .notice_con thead {
        display: none;
    }

    .notice_con tr {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #ccc;
        padding: 15px 10px;
    }

    .notice_con td {
        border-bottom: none;
        padding: 0;
        text-align: left;
    }

    .notice_con td:nth-child(1)::before {
        content: "성적서발행처 : ";
    }
    .notice_con td:nth-child(2)::before {
        content: "기기명 : ";
    }
    .notice_con td:nth-child(3)::before {
        content: "규격 : ";
    }
    .notice_con td:nth-child(4)::before {
        content: "제작회사 : ";
    }
    .notice_con td:nth-child(5)::before {
        content: "기기번호 : ";
    }
    .notice_con td:nth-child(6)::before {
        content: "성적서번호 : ";
    }
    .notice_con td:nth-child(7)::before {
        content: "교정일자 : ";
    }
    .notice_con td:nth-child(8)::before {
        content: "교정실 : ";
    }
    .notice_con td:nth-child(9)::before {
        content: "현장 : ";
    }
    .notice_con td:nth-child(10)::before {
        content: "대행 : ";
    }
    .notice_con td:nth-child(11)::before {
        content: "PDF : ";
    }
    .notice_con td:nth-child(12)::before {
        content: "진행률 : ";
    }
}

@media screen and (max-width: 1040px) {
    .sort_con,
    .search_con,
    .date_box input {
        border-bottom: 2px solid #212529;
    }

    .select_box_right,
    .select_box {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .select_box_right div {
        margin-top: 10px;
    }

    .search_con,
    .sort_box,
    .radio_box,
    .day_con {
        width: 100%;
    }

    .sort_box {
        margin-top: 20px;
    }

    .date_box {
        width: 100%;
        display: flex;
        align-items: center;
    }

    .day_con input {
        width: 100%;
    }

    .search_con input:first-child {
        width: 100%;
    }
}

@media screen and (max-width: 980px) {
    .radio_box {
        padding: 12px 0;
    }

    .radio_btnbox,
    .search_con,
    .search_con input:first-child {
        width: 100%;
    }

    .excel_btn {
        display: none;
    }
}

@media screen and (max-width: 860px) {
    .edit_con {
        top: 40px;
    }
}

@media screen and (max-width: 550px) {
    .day_con {
        flex-wrap: wrap;
    }

    .search_con {
        width: calc(100% - 60px);
    }

    .sort_con {
        width: 100px;
        margin-right: 10px;
    }
}

@media screen and (max-width: 400px) {
    .edit_con {
        top: 80px;
    }
}
