/* 주소 팝업 관련 스타일 */
.popup_zipcode {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup_zipcode.show {
  display: flex;
}

.popup_wrap {
  background: #fff;
  width: 90%;
  max-width: 500px;
  height: 600px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  border-radius: 8px;
  overflow: hidden;
}

.btn_pop_close {
  position: absolute;
  top: 10px; right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.btn_pop_close .blind {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

#zip_ifrm {
  width: 100%;
  height: 100%;
  border: none;
}

/* ★ 이벤트 종료 오버레이 */
body.modal-locked { overflow: hidden; }
.event-closed-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.78);
  display: none; align-items: center; justify-content: center; z-index: 10000;
}
.event-closed-box {
  background: #111; color:#fff; padding: 28px 32px; border-radius: 14px;
  font-size: 18px; text-align:center; line-height:1.6;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35); max-width: 90%;
}
.event-closed-title { font-size: 22px; margin-bottom: 8px; font-weight: 700; }
.event-closed-desc { opacity: .85; }

.custom-table {
  border-collapse: collapse;
}
.custom-table td {
  border: 1px solid #d1d5db;
}
