

.image-popup {
  /* display: none;
  position: absolute; 
  width: 625px;
  top: 115px;
  left: 100px; */
  border: 1px solid #ccc;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  overflow: hidden;
  /* z-index: 999; */
  position: fixed; /* 고정 위치 */
  top: 50%; /* 상단에서 50%의 위치 */
  left: 50%; /* 왼쪽에서 50%의 위치 */
  transform: translate(-50%, -50%); /* 정확한 중앙 위치로 이동 */
  width: 625px; /* 필요한 만큼의 너비 */
  z-index: 1000; /* 다른 요소들 위에 나타나도록 z-index 설정 */
}
.image-popup2 {
  /* display: none;
  position: absolute; 
  width: 625px;
  top: 115px;
  left: 100px; */
  border: 1px solid #ccc;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  overflow: hidden;
  /* z-index: 999; */
  position: fixed; /* 고정 위치 */
  top: 50%; /* 상단에서 50%의 위치 */
  left: 50%; /* 왼쪽에서 50%의 위치 */
  transform: translate(-50%, -50%); /* 정확한 중앙 위치로 이동 */
  width: 825px; /* 필요한 만큼의 너비 */
  z-index: 1000; /* 다른 요소들 위에 나타나도록 z-index 설정 */
}

.image-popup img {
  width: 100%;
  height: auto;
}

.popup-buttons {
  display: flex;
  justify-content: space-between;
}

.popup-buttons button {
  flex: 1;
  border: none;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#closeButton {
  background-color: #000;
  color: white;
}

#closeButton:hover {
  background-color: #000;
}

#dontShow {
  background-color: #000;
  color: white;
}

#dontShow:hover {
  background-color: #000;
}

#dontShowToday {
  background-color: #000;
  color: white;
}

#dontShowToday:hover {
  background-color: #000;
}


.image-popup2 img {
  width: 100%;
  height: auto;
}

.popup-buttons2 {
  display: flex;
  justify-content: space-between;
}

.popup-buttons2 button {
  flex: 1;
  border: none;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#closeButton2 {
  background-color: #000;
  color: white;
}

#closeButton2:hover {
  background-color: #000;
}

#dontShow2 {
  background-color: #000;
  color: white;
}

#dontShow:hover2 {
  background-color: #000;
}

#dontShowToday2 {
  background-color: #000;
  color: white;
}

#dontShowToday2:hover {
  background-color: #000;
}
