.confirmModal {
  max-height: 80%;
  max-width: 90%;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  background-color: #fff;
  border-radius: 10px;
  padding: 50px;
  z-index: 100001;
  transform: translate(-50%, -50%);
  overflow-y: auto;
}

.confirmModalInner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.confirmModalBtnWrap {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-top: 50px;
  gap: 30px;
}

.confirmModalBtnWrap button {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px 20px;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modalBg {
  z-index: 0;
  width: 0;
  height: 0;
  display: none;
}

.modalBg.bgStyle {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 767px) {
  .confirmModal {
    width: 90%;
    padding: 40px 20px;
  }

  .confirmModalInner {
    justify-content: flex-start;
    font-size: 14px;
  }

  .confirmModalBtnWrap {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    padding-bottom: 40px;
    gap: 20px;
  }

  .confirmModalBtnWrap button {
    padding: 10px 20px;
    width: 150px;
  }
}
