.node {
  border: 1px solid #0984e3;
  border-radius: 4px;
  background-color: #fff;
  color: #111927;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  padding: 8px;
  min-height: 50px;
  max-height: 100px;
  overflow: hidden;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-align: center;
}

.title {
  text-transform: capitalize;
  color: #0984e3;
}

.node:hover {
  background: radial-gradient(
    circle at 18.7% 37.8%,
    rgb(252, 252, 252) 0%,
    rgb(239, 241, 243) 90%
  );
}

.content {
  pointer-events: none;
}

.handle {
  visibility: hidden;
}

.placeholder {
  width: 60px;
  background: #fff;
  border: 1px dashed #bbb;
  color: #bbb;
  box-shadow: none;
}

.nodeDropzone {
  box-shadow: 0 0 9px 0 #0984e3;
}

.hoverNodeBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  position: absolute;
  background-color: #fff;
  border-radius: 4px;
  top: 1px;
  left: 1px;
  bottom: 1px;
  right: 1px;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
  overflow: auto;
}

.fixedNode {
  border: 1px solid #f79009;
  border-radius: 8px;
  padding: 4px;
  color: #06aed4;
}

.nodeContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.crossIcon {
  position: absolute;
  top: -16px;
  right: 0;
}

.mainIconBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.crossIcon .edit {
  background-color: white;
  border: 1px solid #0984e3;
  border-bottom: 0px;
  color: #0984e3;
  cursor: pointer;
  width: 20px !important;
  height: 14px !important;
}

.previewNote {
  min-width: 100% !important;
  max-height: 100% !important;
  word-wrap: break-word;
  overflow: auto;
  color:black;
  cursor: pointer;
}
.previewNote h1 img, .previewNote h2 img, .previewNote h3 img, .previewNote h4 img, .previewNote h5 img, .previewNote h6 img, .previewNote p img, .previewNote > img, .previewNote p, .previewNote span, .previewNote code, .previewNote pre img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  white-space: break-spaces !important;
}
.endLoop {
  border: 1px solid #0984e3;
  border-radius: 4px;
  background-color: #f0fde3;
  color: #0984e3;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  padding: 8px;
  min-height: 30px;
}
.startLoop {
  border: 1px solid #0984e3;
  border-radius: 4px;
  background-color: #f0fde3;
  color: #0984e3;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  padding: 8px;
  min-height: 30px;
}
