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

/* 弹窗样式 */
.custom-alert-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-alert-box button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #ff7878;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.custom-alert-box button:hover {
  background-color: #faaaaa;
}

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