/* 모달 배경 */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* 모달 본체 */
.modal-overlay .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    width: 940px;
    max-width: calc(100vw - 40px);
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    max-height: 90%;
    overflow: auto;
    box-sizing: border-box;
}

/* 닫기 버튼 */
.modal-close-btn {
    display: block;
    margin-top: 10px;
    width: 100%;
    padding: 10px;
    text-align: center;
    background: #4e4e4e;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}


.search-btn {
	display: inline-block;
    padding: 4px 10px;
    text-align: center;
    background-color: #254381;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}


.paging-container{
	font-size: 14px;
	text-align: center;
}

.paging-container > a:visited {
    text-decoration: none;
    color: black;
}

.paging-container > a:link {
    text-decoration: none;
    color: dimgray;
    padding: 0px 7px;
}
.paging-container > strong {
    color: #3f5afb;
}
.paging-container > a, strong {
    padding: 0px 7px;
}
.paging-container > span {
    font-size: 13px;
}
