@charset "UTF-8";

/* par3 css 설정 ------------------------------------ */

/* 테이블 컨테이너 */
.table-container {
    position: relative;
    margin-left: 13vw;
    margin-right: 13vw;
    margin-top : 6vw;
}
/* 검색 창  */
/* 검색 창 */
#list-top {
    height: 45px;
    margin: 0 7vw 0 7vw;
}
.search-ul {
    display: flex; /* 가로 정렬 */
    align-items: center; /* 세로 정렬 */
    gap: 10px; /* 항목 간격 */
    list-style: none; /* 불필요한 리스트 스타일 제거 */
    padding: 0;
    margin: 0;
}
.search-li {
    display: flex;
    align-items: center;
}

/* 셀렉트 박스와 입력 필드 공통 스타일 */
.search-li select {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    width: 150px; /* 기본 너비 */
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search-li input[type="text"] {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    width: 300px; /* 검색어 입력 필드 너비 */
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* 포커스 효과 */
.search-li select:focus,
.search-li input[type="text"]:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

/* 검색 버튼 스타일 */
.search-li[onclick] {
    height: 18px;
    cursor: pointer;
    padding: 8px 15px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.search-li[onclick]:hover {
    background-color: #0056b3;
}

/* 테이블 제목 스타일 */
.par3-sj {
    display: block;
    font-size: 2vw; /* 글꼴 크기 */
    font-weight: bold;
    text-align: center; /* 텍스트를 가운데 정렬 */
    margin: 5vw 0; /* 위아래 여백 */
}

/* 제목이 테이블 상단 중앙에 위치하도록 */


/* 아코디언 버튼 스타일 */
.accordion-btn {
    position: absolute;
    top: -40px;
    right: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
}

.accordion-btn:hover {
    background-color: #0056b3;
}

/* 아코디언 컨텐츠 스타일 */
.accordion-content {
    display: none;
    position: absolute;
    right: 10px;
    top: 30px;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 5px;
}

.accordion-content a {
    color: #007bff;
    padding: 5px 10px;
    display: block;
    text-decoration: none;
}

.accordion-content a:hover {
    background-color: #f1f1f1;
}

/* 테이블 스타일 */
.par3-table {
    width: 90%;
    border-collapse: collapse;
    margin-bottom : 3vw;
    margin: auto;
    margin-bottom: 5vw;
}
.par3-table-tr{
	height : 3vw;
	
}

.par3-table th, .par3-table td {
	width : 50px;
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

.par3-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.par3-table a {
    color: #007bff;
    text-decoration: none;
}

.par3-table a:hover {
    text-decoration: underline;
}


