.grid-container {
  display: grid;
  grid-template-columns: 33% 33% 32%; 
  grid-template-rows: 33% 33% 33%;
  height:90vh;
  grid-gap:10px;
  padding:10px;
}
guixx-window {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}
guixx-window:last-child {
  grid-column: 3;
  grid-row: 3;
}

guixx-nomodule-base-form {
  align-items: center;
    text-align: center;
    display: flex;
    height: 70vh;
    flex-direction: column;
    justify-content: center;
}

guixx-nomodule-base-input {
  font-size: 3vh;
}

#login-btn {
  font-size: 3vh;
}

guixx-nomodule-table-tablemain {
  height: 100%;
  overflow: scroll;
}
guixx-nomodule-table-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: black 1px dotted;
  background-color: white;
}
guixx-nomodule-table-cell:last-child {
  width: 30%;
}
.drop-row {
  flex-direction: column;
}
guixx-nomodule-table-cell {
  font-size: 1.5em;
  width: 100%;
  padding: 0.25em;
}
guixx-nomodule-table-cell[column="location"] {
  margin-right: 1em;
  width: 150%;
}