* {
  margin: 0;
  padding: 0;
}

button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

#logo {
  color: white;
}

tbody {
  cursor: pointer;
}

#table-option {
  cursor: pointer;
}

.modal-header {
  color: #fff;
  background: dodgerblue;
}

.li {
  display: flex;
  flex-direction: column;
}

.output {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: red;
}

#logo {
  color: #fff;
}
#logo2 {
  color: #fff;
  font-weight: 300;
  font-size: 1.5rem;
}
#logo-container {
  background: #0d6efd;
}

@media (max-width: 517px) {
  #table-select {
    width: 100%;
    padding-bottom: 0.5rem;
  }
  #btns {
    width: 100%;
  }
}

@media (min-width: 650px) {
  #table-select {
    width: 15rem;
  }
}

.form-label {
  font-weight: 600;
}

.output {
  width: 80%;
  margin: 0 auto 2rem auto;
}

/* Splash */
.splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: black;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.splash.display-none {
  position: fixed;
  opacity: 0;
  z-index: -10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.splashLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  border-radius: 20px;
  text-align: center;
}
.splash-h2 {
  font-size: 1.2rem;
  opacity: 0.7;
  padding-top: 1.5rem;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}

#personnel-table thead th {
  /* background: #003768;
  color: #fff !important; */
}

.table-start-group {
  background: #003768;
  color: #fff !important;
}

.btn-secondary {
  color: #fff;
  background-color: #003768;
  border-color: #003768;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #33ff00;
  border-color: #33ff00;
}

.swal-text {
  text-align: center;
}

#personnel-table {
  white-space: nowrap;
}

#department-table {
  white-space: nowrap;
}

#location-table {
  white-space: nowrap;
}

thead th {
  white-space: nowrap;
}

.hide-id {
  display: none;
}

.options {
  width: 100px;
}

.table-hover tbody tr:hover td,
.table-hover tbody tr:hover th {
  background-color: rgba(13, 110, 253, 0.2);
  /* color: white; */
}

td {
  vertical-align: middle;
}
