body {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
}
.navbar {
  font-size: 1.25rem;
}

#table-container {
  width: 95%;
  margin: 0 auto;
  padding: 1rem;
  background: white;
}

#instances-table {
  font-size: 0.875rem;
}

#instances-table {
  font-size: 0.875rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

#instances-table td {
  vertical-align: middle;
}

#instances-table th {
  vertical-align: middle;
}

/* #instances-table .sorting_asc:after {
  content: " \2191";
}

#instances-table .sorting_desc:after {
  content: " \2193";
} */

/* Style buttons */
.btn {
  background-color: DodgerBlue; /* Blue background */
  border: none; /* Remove borders */
  color: white; /* White text */
  padding: 12px 16px; /* Some padding */
  font-size: 16px; /* Set a font size */
  cursor: pointer; /* Mouse pointer on hover */
}

/* Darker background on mouse-over */
.btn:hover {
  background-color: RoyalBlue;
}

.alert {
  padding: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  margin-bottom: 20px;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

alert p {
  font-size: 16px;
  text-align: center;
}

#snackbar {
  visibility: hidden;
  min-width: 350px;
  max-width: 350px;
  margin-left: -175px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 16px;
  z-index: 9999;
}

#snackbar.success {
  background-color: #4caf50;
}

#snackbar.error {
  background-color: #f44336;
}

#snackbar.show {
  visibility: visible;
  animation: fadein 0.5s, fadeout 0.5s 4.5s;
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

.modal-header {
  background-color: #28626c;
  color: white;
  margin: -20px;
  margin-bottom: 20px;
}

.form-group {
  margin-right: 20px;
}

.modal-content {
  padding: 20px;
}

body,
html,
.container-fluid {
  height: 100%;
}

body {
  background: linear-gradient(to right, #ff9900, #663399);
  height: 100%;
  width: 100%;
}

.logout {
  font-size: 22px;
  font-family: Arial;
  display: flex;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  padding: auto;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: white;
}
