.ifp-edit-icon {
  margin-left: 6px;
  cursor: pointer;
  font-size: 16px;
  background: #fff;
  color: #007cba;
  border: 1px solid #007cba;
  padding: 2px 6px;
  border-radius: 4px;
  position: relative;
  z-index: 9999;
}

.ifp-edit-icon:hover {
  background: #007cba;
  color: #fff;
}

#ifpOverlay,
#ifpModal {
  display: none;
  position: fixed;
  z-index: 10000;
}

#ifpOverlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

#ifpModal {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 800px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.ifp-save-btn {
  margin-top: 10px;
  background: #007cba;
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}