@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic+Coding&family=Noto+Sans+Mono:wght@100..900&family=Redressed&display=swap');

html, body {
  margin: 0;
  height: 100%;
  width: 100%;
  font-family: "Nanum Gothic Coding", monospace;
  overflow-y: hidden;
}

canvas { 
  position: absolute;
  width: 60%;
  height: 50%;
  z-index: 0;
}

.canvasWrapper {
  display: inline-block;
  width: 60%;
  height: 100%;
}

div#canvas {
  width: 100%;
  height: 50%;
  background-color: transparent;
}

div#detailLists {
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  height: 50%;
}

div#detailLists div.listItem {
  border: solid 1px black;
  height: 100%;
  overflow: scroll;
}

div.listItem h1 {
  font-size: 100%;
  padding: 5px;
}

div#settings {
  border-left: 1px solid black;
  display: inline-block;
  width: 35%;
  height: 100%;
  vertical-align: top;
  text-align: center;
}

div h1 {
  font-size: 20px;
  margin: 0;
  padding: 15px;
}

#nodes {
  width: 80%;
}

.node {
  border-radius: 50%;
  border-style: solid;
  width: 50px;
  height: 50px;
  cursor: grab;
  text-align: center;
  user-select: none;
  z-index: 1;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visited {
  background-color: grey;
}

.selected {
  background-color: yellow;
}

.nodeIdInput {
  width: 30px;
}

.hor-line {
  height: 0px;
  width: 80px;
  border-style: solid;
}

.edgeInputContainer {
  margin-bottom: 10px;
}

.edgeInputContainer * {
  display: inline-flex;
}

.deleteButton {
  margin-left: 30px;
}

textarea {
  width: 100%;
  height: 95%;
}