/* ?????? */
.confirm-modal {
  position: fixed;       /* ????? */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); /* ???? */
  display: none;
  z-index: 9999;         /* ???????? */
}

/* ?????? */
.confirm-modal-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 25px 20px;
  max-width: 500px;
  width: 90%;
  border-radius: 12px;      /* ???? */
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  font-family: sans-serif;
}

/* ?????? */
.confirm-modal-inner .confirm-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

/* ???? */
.confirm-items p {
  margin: 8px 0;
}

/* ??? */
.confirm-modal-buttons {
  text-align: center;
  margin-top: 20px;
}

.confirm-modal-buttons button {
  padding: 8px 18px;
  margin: 0 10px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.confirm-modal-buttons #confirm-back {
  background: #ddd;
}

.confirm-modal-buttons #confirm-back:hover {
  background: #ccc;
}

.confirm-modal-buttons #confirm-submit {
  background: #0073aa;
  color: #fff;
}

.confirm-modal-buttons #confirm-submit:hover {
  background: #005177;
}
