/* gallery_modal.css */

/* 전체 모달 영역 스타일 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    padding-top: 60px;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

/* 확대된 이미지 컨테이너 */
.modal-content {
    display: block;
    margin: auto;
    max-width: 80%;
    max-height: 80%;
    border-radius: 8px;
}

/* 모달 닫기 버튼 스타일 */
.close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}
