/* 오버레이 */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* 팝업 박스 */
.popup-image-box {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

/* 이미지 */
.popup-image-box img {
  display: block;
  width: auto;
  max-width: 90vw;
  height: auto;
  max-height: 90vh;
  border-radius: 8px;
}

/* 상단 버튼 */
.popup-top-buttons {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 6px;
  z-index: 10;
}

.popup-top-buttons button {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border: none;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
}

/* 모바일 대응 */
@media (max-width: 480px) {
  .popup-top-buttons button {
    font-size: 11px;
    padding: 5px 8px;
  }
}
