h1,
h2,
h3,
h4 {
  font-family: sans-serif;
}
table {
  background-color: #fff;
  border-collapse: collapse;
  border-width: 1px;
  border-color: #bababa;
  border-style: solid;
  color: #000;
}
table td,
table th {
  border-width: 1px;
  border-color: #bababa;
  border-style: solid;
  padding: 10px;
}
table thead {
  background-color: #cdcdcd;
}
body {
  margin: 0;
  font-family: sans-serif;
}

.header-container {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid black;
}

.header-container {
  width: 100%;
  background: #222;
}

.header-items {
  display: flex;
}

.header-image {
  height: 100%;
}

.header-image img {
  height: 26px;
  padding: 12px 0 8px 16px;
  margin-right: 1rem;
}

.header-link {
  margin: 1rem;
}

.header-link a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.header-link a:hover {
  color: #39bf87;
}

.main-page-container {
  display: flex;
}

.main-page-body {
  overflow-x: auto;
  padding: 0 3rem;
  border-left: 1px solid #b4b4b4;
}

h1 {
  margin-top: 1rem;
}

hr {
  margin-top: 1.5rem;
}

#toggle {
  margin: 12px;
}

.icon {
  background: #888;
  display: block;
  width: 17px;
  height: 3px;
  border-radius: 1px;
}

.icon.s {
  margin-top: 2px;
}

.main-page-container {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.main-page-container.toggled {
  padding-left: 0px;
}

.sidebar {
  z-index: 1000;
  position: fixed;
  left: 300px;
  width: 0;
  height: 100%;
  margin-left: -300px;
  overflow-y: auto;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.main-page-container.toggled .sidebar {
  width: 300px;
}

#page-content-wrapper {
  width: 100%;
  position: absolute;
  padding: 15px;
}

.main-page-container.toggled #page-content-wrapper {
  position: absolute;
  margin-right: -300px;
}

/* Sidebar Styles */
.nav-title {
  font-weight: bold;
  text-decoration-line: underline;
  padding-left: 0.5rem;
}
.sidebar-nav {
  position: absolute;
  top: 0;
  width: 300px;
  margin: 0;
  padding: 1rem 0 3rem 0;
  list-style: none;
}

.sidebar-nav li {
  text-indent: 20px;
  line-height: 40px;
}

.sidebar-nav li a {
  display: block;
  text-decoration: none;
  color: #222;
  padding-left: 1rem;
}

.sidebar-nav li a:hover {
  text-decoration: none;
  background: rgba(0, 0, 0, 0.1);
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
  text-decoration: none;
}

@media (min-width: 768px) {
  .main-page-container {
    padding-left: 300px;
  }

  .container.toggled {
    padding-left: 0;
  }

  .sidebar {
    width: 300px;
  }

  .main-page-container.toggled .sidebar {
    width: 0;
  }

  #page-content-wrapper {
    padding: 20px;
    position: relative;
  }

  .main-page-container.toggled #page-content-wrapper {
    position: relative;
    margin-right: 0;
  }
}
