/* 공통 스타일 */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden; /* 수평 스크롤 방지 */
}












/* 기본 링크 스타일 */
a {
    color: #333; /* 진한 색으로 설정 */
    text-decoration: none; /* 밑줄 제거 */
}

/* 링크에 마우스를 올렸을 때 */
a:hover {
    color: #000; /* 더 진한 색으로 변경 */
    text-decoration: underline; /* 마우스를 올렸을 때 밑줄 추가 */
}







/* 팝업 오버레이 */
.popup-overlay {
    display: none; /* 기본적으로 숨김 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* 어두운 반투명 배경 */
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* 팝업 콘텐츠 */
.popup-content {
    background: white;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80%; /* 최대 높이 제한 */
    overflow-y: auto; /* 세로 스크롤 */
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 닫기 버튼 */
.popup-content .closePopup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.popup-content .closePopup:hover {
    color: #000;
}
.footer_table {
    margin: 0 auto; /* 가로 중앙 정렬 */
    text-align: center; /* 내부 텍스트 중앙 정렬 */
    width: 100%; /* 원하는 너비 설정 */
}

.footer_table table {
    width: 100%;
    border-collapse: collapse; /* 테이블 셀 간 여백 제거 */
}

.copyright {
    text-align: center; /* 가운데 정렬 */
    font-size: 14px;
    margin-top: 0; /* 위쪽 여백 제거 */
    padding-top: 0px; /* 필요하면 약간의 간격 추가 */
}





