/* 弹窗背景 */
.custom-confirm-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
}

/* 弹窗样式 */
.custom-confirm-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  margin: 0 auto; 
  margin-top: 150px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.custom-confirm-box button {
  margin: 10px 5px 0;
  padding: 10px 20px;
  background-color: #ff7878;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.custom-confirm-box button.cancel {
  background-color: #dc3545;
}

.custom-confirm-box button.cancel:hover {
  background-color: #b52b3b;
}

.custom-confirm-box button:hover {
  background-color: #fe333a;
}
.custom-confirm-box button.custom-confirm-cancel {
  background-color: #faaaaa;
}

.custom-confirm-button {
  text-align: right;
}