/* Dashboard css */
:root {
	/*--dashboard-color: #3F7E3E;*/
  --dashboard-color: rgba(119, 209, 215,1);
}
.maincontainer{
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 50px 1fr 50px;
	grid-template-areas:
		"header"
		"main"
		"footer";
	min-height: 100%;
}
/* Give every child element its grid name */
.header {
  grid-area: header;
  background-color: var(--dashboard-color);
  display:flex;
  flex-direction: row;
  justify-content: space-between;
  position:absolute;
  height:60px;
  width:100%;
}
.small-cmd{
  font-size:.8em;
}
.ui-selectmenu-text{
  font-size:.8em;
}
.ui-menu-item-wrapper{
  font-size:.7em;
}
.sidenav {
  grid-area: sidenav;
  background-color:var(--dashboard-color);
  display:flex;
  flex-direction:column;  
  height:100%;
	width: 240px;  
  position:fixed; 
  overflow-y: auto;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
  z-index: 2; 
  transform: translateX(-245px);
  transition: all .6s ease-in-out;  
}
.main {
  grid-area: main;
  background-color: #fff;
}
#content{
  border:solid 0px lightblue;
  margin:15px 15px 15px 15px;
  font-size:.8em;
}
.footer {
  grid-area: footer;
  background-color:var(--dashboard-color);
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size:0.8em;
}
.sidenav__list {
  padding: 0 0 0 30px;
  margin-top: 20px;
  list-style-type: none;
}
.sidenav__list-item {
  padding: 5px 20px 5px 0px;
  display: flex;
}
.sidenav__list-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.sidenav__href-item{
  text-decoration:none;
}
/* Hamburger menu icon, stays fixed on mobile for any possible scrolling */
.menu-icon {
  position: fixed;
  display: flex;
  top: 5px;
  left: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border:1px solid #454545;
  z-index: 1;
  cursor: pointer;
  padding: 12px;
  background-color: var(--dashboard-color);
}
/* The active class is toggled on hamburger and close icon clicks */
.sidenav.active {
  transform: translateX(0);
}
.sidenav__app-title{
  padding:75px 0px 0px 30px;
  visibility:visible;
}
/* Only visible on mobile screens */
.sidenav__close-icon {
  position: absolute;
  visibility: visible;
  top: 8px;
  right: 12px;
  cursor: pointer;
  font-size: 20px;
  color: #454545;
}
/* Non-mobile styles for side nav responsiveness, 750px breakpoint */
@media only screen and (min-width: 1000px) {
 /* Show the sidenav */
  .maincontainer {
    grid-template-columns: 240px 1fr; /* Show the side nav for non-mobile screens */
    grid-template-areas:
      "sidenav header"
      "sidenav main"
      "sidenav footer";
  }
  .sidenav {
    position: relative; /* Fixed position on mobile */
    transform: translateX(0);
  }
  .sidenav__close-icon {
    visibility: hidden;
  }
}
.dropbtn {
	width:50px;
  display: flex;
	color:#ddd;
  justify-content: center;
  cursor: pointer;
  padding: 12px;  
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  right:0;
  top:50px;
  background-color: var(--dashboard-color);
}
.dropdown-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
}
.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .dropbtn {
  background-color: rgba(255, 255, 255, 0.2);
}
.main-header {
  display: flex;
  justify-content: space-between;
  margin: 20px;
  padding: 20px;
  /*height: 30px;*/ /* Force our height since we don't have actual content yet */
  background-color: #e3e4e6;
  color: slategray;
}
.div-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); /* Where the magic happens */
  grid-auto-rows: 94px;
  grid-gap: 20px;
  margin: 20px;
}
.div-unit{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: rgba(87,199,133,.5);
  cursor:pointer;
}
.main-cards {
  column-count: 1;
  column-gap: 20px;
  margin: 5px;
}
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  background-color: #fff;
  margin-bottom: 20px;
  -webkit-column-break-inside: avoid;
  padding: 12px;
  box-sizing: border-box;
  border:solid 1px grey;
}
.card-title {
  width:100%;
  border:solid 0px red;
}
.card-table{
  width:100%;
  background-color: #82bef6;
}
.card-table td{
  padding: 0 10px 0 0;
}
.card-table th.datarow{
  padding: 2px 5px 2px 5px;
  background-color:#fff;
}
.card-table td.datarow{
  padding: 2px 5px 2px 5px;
  background-color:#fff;
}
.card-input {
  width:100%;
  border:solid 0px blue;
  display: flex;
  flex-direction:row;
  justify-content: space-between;
  align-items: flex-end;
}
table.data {background-color:#eee}
.data tr:nth-child(even) {background: #CCC}
.data tr:nth-child(odd) {background: #FFF}
 /* Force varying heights to simulate dynamic content */
/*  .card:first-child {
  height: 485px;
}
.card:nth-child(2) {
  height: 200px;
}
.card:nth-child(3) {
  height: 265px;
} */
@media only screen and (min-width: 800px) {
  /* Break out main cards into two columns */
  .main-cards {
    /*column-count:2;*/
  }
}
.vakata-context li a {
  font-size: .8em !important;
}
.grid-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.tree-pane{
  flex: 1 1 33.3333%;
  box-sizing: border-box;
  overflow-y: auto;
  min-height: 0; /* Ensures scroll works correctly in flex layout */
}
.document-pane{
  flex: 1 1 66.6666%;
  box-sizing: border-box;
  overflow-y: auto;
  padding-left:10px;
  min-height: 0; /* Ensures scroll works correctly in flex layout */
  border-left:solid 1px lightgrey;
}
@media (max-width: 700px) {
  .grid-container {
    flex-direction: column;
  }
  .tree-pane {
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
  .tree-pane,
  .document-pane {
    flex: 1 1 100%;
  }
  .document-pane {
    border-left:none;
  }
}
.logo{
  font-family: 'Roboto', sans-serif;
  
}