ul.sidebar-nav {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 5px 0 0 0;
  list-style: none;
  padding-inline-start: 0px;
  padding: 10px 0 0 0;
  
}
.sidebar-nav li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4vw;
  height: 8vh;
  line-height: 4vh;
  background-color: #a16850;
  color: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-bottom: 1.5vh;
  cursor: pointer;
  font-size: 2.5vw;
  text-align: center;
}
.sidebar-nav li:hover {
  text-decoration: none;
  background-color: #e1a78c;
}
.sidebar-nav li.selected {
  background-color: #4c1903;
  color: whitesmoke;
}
.sidebar-nav li.disabled {
  pointer-events: none;
  color: #777;
}

.text-90-ccw {
  writing-mode: tb-lr;
  writing-mode: vertical-lr;
  font-size: 5vh;
  color: white;
  font-weight: 500;
  letter-spacing: 6px;
  height: 90vh;
  transform: rotate(180deg);
  padding: 1vw;
}

.plant-descr {
  background-color: #bd5d31;
  width: 100%;
  height: 100%;
  line-height: 100%;
  text-align: center;
  vertical-align: bottom;
  color: white;
  font-weight: bold;
/*  font-size: 2vh;*/
}

.tb-button1 {
  grid-area: button1;
}
.tb-button2 {
  grid-area: button2;
}
.tb-right {
  grid-area: right;
}
.tb-bottom {
  grid-area: bottom;
}

.tools-container {
  height: 100%;
}

.tools-container table{
  height: 100%;
  width: 100%; 
  border-collapse: collapse;
}

.tools-container button,
.tools-container input[type="submit"] {
  background: white;
  width: 10vh;
  height: 3vh;
  border: 1px solid #aaaaaa;
  font-size: 1.4vh;
}
.search_field {
  display: inline-block;
}
.search_field input {
  border: none;
  padding: 0;
  height: 2.5vh;
  width: 30vh;
  background-image: url(/images/magnify-glass.jpg);
  background-size: 2.5vh 2.5vh;
  background-position: right center;
  background-repeat: no-repeat;
  font-size: 2vh;
  border: 1px inset #ccc;
}


