/* Confirmation overlay */
#confirmOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

/* Confirmation box */
#confirmBox {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border: 2px solid #2e2e2e;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

#confirmBox h3 {
  margin-top: 0;
  color: #2e2e2e;
  text-align: center;
}

#confirmDetails {
  margin-top: 10px;
  padding: 10px;
  background: #f7f7f7;
  border-radius: 5px;
  line-height: 1.6;
}

#confirmDetails ul {
  list-style: none;
  padding: 0;
}

#confirmDetails li {
  padding: 4px 0;
}

#confirmButtons {
  margin-top: 20px;
  text-align: right;
}

#confirmButtons button {
  margin-left: 10px;
  padding: 8px 14px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

#editBtn {
  background: #ccc;
}

#editBtn:hover {
  background: #bbb;
}

#submitBtn {
  background: #007bff;
  color: white;
}

#submitBtn:hover {
  background: #0056b3;
}
