
/* ConfirmModal 커스텀 디자인 */
#ConfirmModal .iziModal-content {
  background: #fff !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18) !important;
  overflow: hidden !important;
  min-width: 320px;
  position: relative;
  padding:30px !important;
}
#ConfirmModal .modal-body {
  padding: 36px 28px 24px 28px;
  text-align: center;
  font-size: 17px;
  color: #333;
  font-weight: 500;
  letter-spacing: -0.2px;
}
#ConfirmModal .iziModal-buttons {
  display: flex;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
  padding: 0px 30px;
  background: none;
  border: none;
  box-shadow: none;
}

#ConfirmModal .iziModal-buttons button {
  flex: 1;
  border: none;
  border-radius: 0;
  font-size: 16px;
  height: 48px;
  cursor: pointer;
  font-weight: 500;
  margin: 0;
  transition: background 0.2s, color 0.2s;
}

#ConfirmModal .iziModal-buttons button:first-child {
  background: #aaa;
  color: #fff;
  border-right: 2px solid #fff;
}

#ConfirmModal .iziModal-buttons button:last-child {
  background: #2ad2a5;
  color: #fff;
}

#ConfirmModal .iziModal-buttons button:hover {
  opacity: 0.92;
}
#ConfirmModal .icon-close {
  background: #fff;
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  border: 0;
  color: #bbb;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: background 0.2s, color 0.2s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
#ConfirmModal .icon-close:hover {
  background: #f7f7f7;
  color: #28CA97;
}