html, body
{
  margin:0;
  padding:0;
}
.header
{
  width:100vw;
  height:min-content;

  border-bottom:solid #00f5bc 1px;
}
.navbar
{

  width:100%;
  height:100px;
}
.footer
{

  border-top:solid #00f5bc 1px;
  /*position: fixed;*/
  bottom: 0;
  width: 100%;
}

.wrapper
{
  height:100%;
  width:100%;
}
.grid-container
{
  display: grid;
  grid-gap: 0 0px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-auto-rows: minmax(100px, auto);
  padding: 0 20px;
  height:100%;
}
#php-filemanager
{
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 4;
}
