.popup-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0007;
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.popup {
  background: var(--node-color);
  padding: 5vh;
  border-radius: 10px;
  border: 3px dashed white;
}

.popup.ai > textarea {
  resize: none;
  width: 70vw;
  height: 50vh;
}

.popup.ai button {
  padding: 15px 3vw;
  background: transparent;
  color: currentColor;
  border: 1px solid currentColor;
  font-size: 24px;
  border-radius: 15px;
  transition: transform 0.4s;
}

.popup.ai button:hover{
    transform: scale(1.1);
}

.popup.ai .button-holder{
    display: flex;
  justify-content: space-around;
  padding: 10px;
}