/* 배경 (이전과 동일) */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  
  display: none; 
  
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


/* 이미지와 버튼을 감싸는 통 */
.popup-content {
  position: relative;
  line-height: 0;    
}

/* 팝업 이미지 크기 조절 */
.popup-content img {
  max-width: 450px;
  max-height: 400px;
  display: block;
}

/* 투명 버튼 스타일 */
.transparent-btn {
  position: absolute;
  
  
  top: 7px;
  right: 10px;
  
  width: 30px; 
  height: 30px;
  
  background-color: transparent; 
  border: none;
  cursor: none;
}