/* Style for the sidebar */

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}
#property_bar {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background-color: #f1f1f1;
  border-left: 1px solid #ccc;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}
#property_bar h2 {
  font-size: 20px;
  margin-top: 0;
}
#property_bar p {
  font-size: 14px;
}
#jsmind_container {
  width: calc(100% - 300px);
  height: 100vh;
  float: left;
}

