html,
body {
  background-color: #f9f6ee;
  margin: 5px 0px 5px 2px;
  padding: 5px 0px 5px 2px;
  overflow: hidden;
}

section {
  display: flex;
  flex-flow: column;
  height: calc(100vh - 20px);
}

.tab-content {
  flex: 1;
  overflow-y: scroll;
}

tr {
  cursor: default;
}

.myBtn {
  width: 70px;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*Mobile view*/
@media(max-width: 680px) {
  /*Hides 2nd (department), 3rd (location) and 4th column (email) in personnel table*/
  #personnelTableBody tr td:nth-child(2),
  #personnelTableBody tr td:nth-child(3),
  #personnelTableBody tr td:nth-child(4) {
    display: none !important;
  }

  /*Hides 2nd column (location) in departments table*/
  #departmentTableBody tr td:nth-child(2) {
    display: none !important;
  }
  /*Hides tab names*/
  .nav-tabs .nav-link span {
    display: none !important;
  }
}