@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');

body {
  padding: 0;
  margin: 0;
}

.mainContainer {
  position: relative;
  /* padding-top: 2%; */
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
}

#drawingCanvas {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  padding: 1%;
  border: 3px solid black;
  font-family: 'Montserrat', sans-serif;
}

.rect {
  position: absolute;
  border: 3px solid black;
  background-color: lightgray;
  z-index: 1;
}

#sidebar {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  background-color: lightblue;
  padding: 1%;
  font-family: 'Montserrat', sans-serif;
}

.functionButtons {
  justify-content: center;
  display: flex;
  flex-direction: column;
  height: 20%;
  padding-bottom: 1%;
}

.funcBtn {
  cursor: pointer;
  padding: 3%;
  margin-bottom: 2%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

.rectangleData {
  height: 80%;
  background-color: white;
  color: black;
  padding: 2%;
}

.rectangleData ul {
  cursor: pointer;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
}

.rectangleData h4 {
  text-align: center;
}

#rectList {
  list-style-type: none;
  padding: 0;
}
.selected {
  border: 3px solid blue;
}

li {
  padding: 1%;
}
