body {
  /* height: 100vh;
  padding: 0 1rem;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: .5s */
}

.card {
  border: none;
}

.app-body {
  background-color: rgb(242, 247, 255);
}

.app-navbar {
  background-color: rgb(242, 247, 255);
}

.nav-link.dropdown-toggle::after {
  content: none;
}

.auth-container {
  height: 100%;
}

#server-log {
  font-size: smaller;
  padding: 10px;
  max-height: 250px;
  overflow: auto;
}

table.dataTable td.dt-control {
  text-align: center;
  cursor: pointer;
}

table.dataTable td.dt-control:before {
  height: 1em;
  width: 1em;
  margin-top: -9px;
  display: inline-block;
  color: white;
  border: 0.15em solid white;
  border-radius: 1em;
  box-shadow: 0 0 0.2em #444;
  box-sizing: content-box;
  text-align: center;
  text-indent: 0 !important;
  line-height: 1em;
  content: '+';
  background-color: #31b131;
}

table.dataTable tr.dt-hasChild td.dt-control:before {
  content: '-';
  background-color: #d33333;
}

.sticky-table thead th {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0;
  z-index: 2;
}

.sticky-table thead th:first-child {
  left: 0;
  z-index: 3;
}

.sticky-table tbody {
  overflow: scroll;
  max-height: 200px;
}

/* MAKE LEFT COLUMN FIXEZ */
.sticky-table tr>td:first-child {
  position: -webkit-sticky;
  position: sticky;
  background: hsl(0, 0%, 100%);
  left: 0;
}

.round-row-table {
  border-collapse: separate;
  border-spacing: 0 10px;
  margin-top: -10px;
  /* correct offset on first border spacing if desired */
}

.round-row-table td {
  border: solid 1px rgb(216, 216, 216);
  border-style: solid none;
  padding: 10px;
}

.round-row-table td:first-child {
  border-left-style: solid;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.round-row-table td:last-child {
  border-right-style: solid;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}

/* Employee profile image */
.img-cover {
  object-fit: cover;
  object-position: center;
}

.avatar {
  border-radius: 50%;
  display: inline-flex;
  position: relative;
  text-align: center;
  vertical-align: middle;
}

.avatar .avatar-content {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: .875rem;
  height: 32px;
  justify-content: center;
  width: 32px;
}

/* Main Layout styles */

@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");
