:root {
  --bg-header: #2c3e50;
}

/** BASE */
kbd {
  margin: 0px 0.1em;
  padding: 0.1em 0.6em;
  border-radius: 3px;
  border: 1px solid rgb(204, 204, 204);
  color: rgb(51, 51, 51);
  line-height: 1.4;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  display: inline-block;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2), inset 0px 0px 0px 2px #ffffff;
  background-color: rgb(247, 247, 247);
  box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;
  border-radius: 3px;
  text-shadow: 0 1px 0 #fff;
}

/** LAYOUT */
html {
  overflow: auto;
}

body {
  overflow: hidden;
}

body>header,
aside,
.menu-label,
.menu-list li a {
  color: #f8f8f2;
}

body>header {
  background-color: var(--bg-header);
  box-shadow: 0.1rem 0.2rem 0.4rem #ccc;
}

.navbar-item img {
  max-height: 2.75rem !important;
}

main {
  margin: 0px;
  padding: 0.75rem 0.75rem 0 0.75rem;
  /** 60px is the height of the header */
  min-height: calc(100vh - 60px);
}

#dsi-com {
  background-color: var(--bg-header);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/** MODULE */
.std>header>p {
  box-shadow: none;
  background-color: DimGray;
  padding: 1%;
  color: #fff;
  font-weight: bold;
  text-shadow: 2px 2px 8px #000;
}

.table_standard {
  border-collapse: collapse;
}

.table_standard th:first-of-type {
  border-radius: 4px 0px 0px 0px;
}

.table_standard th:last-of-type {
  border-radius: 0px 4px 0px 0px;
}

.table_standard thead th {
  background-color: #4a4a4a;
  padding: 1%;
  color: #fff;
  text-shadow: black 0.1em 0.1em 0.2em;
}

.table_standard td {
  padding: 2px;
}

.table_standard td:first-lettr {
  text-transform: uppercase;
}

/** SORTS CSS */
.classSortColumn {
  display: flex;
  justify-content: space-between;
  line-height: 2rem;
  cursor: pointer;
}

.icon-asc {
  width: 0;
  height: 0;
  border-left: 0.4em solid transparent;
  border-right: 0.4em solid transparent;
  border-bottom: 0.4em solid var(--bg-header);
}

.icon-desc {
  width: 0;
  height: 0;
  border-left: 0.4rem solid transparent;
  border-right: 0.4rem solid transparent;
  border-top: 0.4rem solid var(--bg-header);
}

.message-header {

  background-color: var(--bg-header) !important;

}