html,body{
  height: 100%;
  margin: 0;
}

#root-window{
  height: 100%;
}
#render-tatget{
  height: 100%;
}
#ui-toolbar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: auto;
  padding: 8px;
  background: #00000033;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ui-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  color: #ffffff;
  width: 80px;
  height: 80px;
  margin: 10px 0;
  border-radius: 3px;
  box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.3);
}

.ui-button.selected {
  background-color: #55558855;
}

.ui-button:not(.selected):hover {
  background-color: #33333355;
}

.ui-container{
  background: #333355;
  padding: 16px;
}

.toolbar-icon{
  width: 50px;
  height: 50px;
  pointer-events: none;
}
#title-bar{
  background: rgba(0,0,0,0.2);
  position: fixed;
  top: 0;
  right: 0;
  left: 96px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title-bar-items{
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#info-overlay{
  position: fixed;
  top: 50px;
  right: 0;
  margin: 16px;
  padding: 12px;
  width: 300px;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  box-shadow: 0 0 3px 1px rgba(0,0,0,0.2);
}
#info-overlay-header{
  font-weight: bold;
}
