body {
  margin: 0;
  font-family: tahoma;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.active_users {
  display: flex;
  background: #1dc31a;
  margin-bottom: 10px;
  padding: 5px;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  justify-content: center;
}

#main > .menu {
  background: #343a40;
  height: 100vh;
  width: 280px;
  bottom: 0;
  float: none;
  right: 0;
  position: fixed;
  top: 0;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  padding: 10px;
}
#main > .menu ul {
  margin: 0;
  padding: 0;
}
#main > .menu li {
  border-radius: 4px;
  border: 1px solid #858585;
  margin-bottom: 10px;
}
#main > .menu li.active, #main > .menu li:hover {
  background: #007bff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
#main > .menu li a {
  color: #fff;
  display: block;
  font-size: 13px;
  padding: 8px 16px;
}
#main > .content:not(.login) {
  margin-right: 280px;
  padding: 10px;
}

.box {
  background: #fff;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.13), 0 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 10px;
}

.description {
  color: #0c5460;
  background-color: #d1ecf1;
  border: 1px solid #bee5eb;
  padding: 15px;
  border-radius: 4px;
  margin: 0 0 10px;
  font-weight: bold;
  font-size: 14px;
}

.toolbar {
  display: flex;
  margin-bottom: 10px;
}
.toolbar form.search {
  display: flex;
  background: #f3f3f3;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  gap: 10px;
}
.toolbar form.search input {
  height: 30px;
  width: 100px;
  text-align: center;
  font-family: tahoma;
}
.toolbar form.search select {
  height: 30px;
  font-family: tahoma;
}
.toolbar form.search button {
  height: 30px;
}
.toolbar form.export {
  display: flex;
  background: #f3f3f3;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  gap: 10px;
  margin-right: 10px;
}
.toolbar form.export input {
  height: 30px;
  width: 94px;
  letter-spacing: 1px;
  text-align: center;
  font-family: tahoma;
}
.toolbar form.export button {
  height: 30px;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}
table th {
  border: 1px solid #dee2e6;
  border-bottom: 2px solid #dee2e6;
  padding: 12px;
}
table th[data-order_by] {
  cursor: pointer;
  position: relative;
}
table th[data-order_by]:hover {
  background: dodgerblue;
  color: #fff;
}
table th[data-order_by]:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 0px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid black;
}
table th.active {
  background: dodgerblue;
  color: #fff;
  position: relative;
}
table th.active:before {
  content: "";
  position: relative;
  margin-left: 10px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
  border-bottom: none;
  top: 11px;
}
table th.active.desc:before {
  top: -10px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
  border-top: none;
}
table td {
  border: 1px solid #dee2e6;
  padding: 12px;
}
table tr:nth-child(2n) {
  background-color: rgba(0, 0, 0, 0.05);
}

#login {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  font-family: tahoma;
}
#login > .inner {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 10px;
  padding: 15px;
  background: #fff;
}
#login > .inner h1 {
  text-align: center;
  margin: 0 0 20px;
}
#login > .inner input {
  height: 40px;
  font-family: tahoma;
}
#login > .inner button {
  width: 100%;
  height: 40px;
  margin-top: 10px;
  font-weight: bold;
  font-family: tahoma;
  background: #1dcd1d;
  color: #fff;
  border: none;
  border-radius: 4px;
}

/*# sourceMappingURL=style_public.css.map */
